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&page=9543
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 269896,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=9544",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=9542"
    },
    "data": [
        {
            "id": "helmet:161719",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8310/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10856/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 42733,
                    "license": "cc_by",
                    "created_time": "2018-03-06T07:12:16.924040Z",
                    "last_modified_time": "2018-03-06T07:12:16.924062Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{DF5F39E9-0E68-4585-B84B-01E3798341C4}/63784",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-03-06T09:11:15.341344Z",
            "date_published": "2018-03-01T08:49:00Z",
            "start_time": "2018-03-14T15:00:00Z",
            "end_time": "2018-03-14T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Aikuisten askartelupajassa värkätään tällä kertaa korvakoruja kierrätysmateriaaleista.<br>\nKirjasto tarjoaa materiaalit.</p><p>Tule mukaan luovuuden aalloille!<br>\nTeetä tarjolla!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Aikuisten askartelupaja"
            },
            "short_description": {
                "fi": "Aikuisten askartelupajassa värkätään tällä kertaa korvakoruja kierrätysmateriaaleista."
            },
            "location_extra_info": null,
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:161719/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:158589",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8350/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 42737,
                    "license": "cc_by",
                    "created_time": "2018-03-06T09:11:14.229838Z",
                    "last_modified_time": "2018-03-06T09:11:14.229860Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{40CE1A15-A681-4D4E-A672-4BB8F3D8FC64}/63790",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-03-06T09:11:14.239703Z",
            "date_published": "2018-01-05T13:44:00Z",
            "start_time": "2018-03-09T16:00:00Z",
            "end_time": "2018-03-09T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Kino Maunula järjestetään joka kuukauden toisena perjantaina Maunula-talon Metsäpurosalissa.</p><p></p><p>Maaliskuun Kino Maunulassa esitetään Giórgos Lánthimosin ohjaama The Lobster (UK, 2015).<br><br><em>David (Colin Farrell) on juuri jäänyt vaimonsa jättämäksi. Hänen on löydettävä uusi tosirakkaus 45 päivässä tai muutoin hänet muutetaan valitsemakseen eläimeksi ja vapautetaan metsään. David asuu etsikkoajan salaperäisessä hotellissa muiden sinkkujen kanssa. Useiden epäonnisten romanssiyritysten jälkeen David päättää paeta ja päätyy rakkauden kieltäneen kapinajoukon riveihin. Siellä hän tapaa arvoituksellisen naisen (Rachel Weisz), joka yllättäen herättää hänessä vahvoja tunteita.</em></p><p></p><p></p><p>Kaikkiin Kino Maunulan näytöksiin on vapaa pääsy, tervetuloa!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kino Maunula"
            },
            "short_description": {
                "fi": "Elokuvia Maunula-talossa kerran kuussa!"
            },
            "location_extra_info": {
                "fi": "Metsäpurosali"
            },
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:158589/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:161615",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8286/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10800/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 42604,
                    "license": "cc_by",
                    "created_time": "2018-02-26T11:11:14.035618Z",
                    "last_modified_time": "2018-02-26T11:11:14.035641Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{434D9DD5-BE10-4752-B490-3A50BD0F4D5E}/63484",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42604/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-03-06T09:11:12.935857Z",
            "date_published": "2018-02-26T08:56:00Z",
            "start_time": "2018-03-06T09:00:00Z",
            "end_time": "2018-03-06T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Nordean asiantuntijat ovat paikalla opastamassa digitaalisten palveluiden käyttöä. Tervetuloa oppimaan sähköistä tunnistautumista!</p><p>Jos mahdollista, ota mukaan omat pankkitunnuksesi ja oma mobiililaitteesi, jolloin neuvojat voivat auttaa sinua parhaiten. Pankkitunnukset ovat avain moniin digitaalisiin palveluihin, kuten Omakanta, Vero, Kela ja Poliisi. Sähköinen asiointi sujuvoittaa ja helpottaa arkea.</p><ul> <li> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Kirjasto_10\">Kirjasto 10</a> </li>\n</ul><p></p>"
            },
            "info_url": null,
            "name": {
                "fi": "Digineuvontaa"
            },
            "short_description": {
                "fi": "Nordean asiantuntijat ovat paikalla opastamassa digitaalisten palveluiden käyttöä. Tervetuloa oppimaan sähköistä tunnistautumista!"
            },
            "location_extra_info": null,
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:161615/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7ve6kfm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p401/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 36370,
                    "license": "cc_by",
                    "created_time": "2017-05-26T09:14:48.803354Z",
                    "last_modified_time": "2023-09-13T06:31:35.293513Z",
                    "name": "Koskelan palvelukeskus",
                    "url": "http://api.hel.fi/linkedevents/media/images/Koskela_lFcIIzx.jpg",
                    "cropping": "56,0,394,337",
                    "photographer_name": "Koskelan palvelukeskuksen henkilökunta",
                    "alt_text": "Koskelan palvelukeskus",
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/36370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                }
            ],
            "created_time": "2018-03-06T09:10:45.035807Z",
            "last_modified_time": "2018-03-06T09:10:45.041686Z",
            "date_published": null,
            "start_time": "2018-03-16T12:00:00Z",
            "end_time": "2018-03-16T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on <a href=\"https://www.hel.fi/sote/fi/palvelut/palvelukuvaus?id=3252\" target=\"_blank\">palvelukeskuskortti</a>.</p><p>Tule nauttimaan rennosta yhdessäolosta. Halutessasi voit esittää esim. runon, vitsin, tarinan, laulun tai muuta. Voit myös tulla kuuntelemaan ja katsomaan muiden esityksiä.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Perjantaipulinat-estradi vapaa!"
            },
            "short_description": {
                "fi": "Tule nauttimaan rennosta yhdessäolosta. Halutessasi voit esittää esim. runon, vitsin, tarinan,laulun tai muuta."
            },
            "location_extra_info": {
                "fi": "N-talo 1krs."
            },
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7ve6kfm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7vejapm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4652/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8692/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 36370,
                    "license": "cc_by",
                    "created_time": "2017-05-26T09:14:48.803354Z",
                    "last_modified_time": "2023-09-13T06:31:35.293513Z",
                    "name": "Koskelan palvelukeskus",
                    "url": "http://api.hel.fi/linkedevents/media/images/Koskela_lFcIIzx.jpg",
                    "cropping": "56,0,394,337",
                    "photographer_name": "Koskelan palvelukeskuksen henkilökunta",
                    "alt_text": "Koskelan palvelukeskus",
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/36370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                }
            ],
            "created_time": "2018-03-06T09:07:50.523176Z",
            "last_modified_time": "2018-03-06T09:07:50.526232Z",
            "date_published": null,
            "start_time": "2018-03-15T13:00:00Z",
            "end_time": "2018-03-15T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on <a href=\"https://www.hel.fi/sote/fi/palvelut/palvelukuvaus?id=3252\" target=\"_blank\">palvelukeskuskortti</a>.</p><p>Tule tutustumaan terveyskylään ja muihin digitaalisiin terveyssivustoihin. Vapaaehtoinen opastaa digimaailmaan!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Digitaalista terveystietoa"
            },
            "short_description": {
                "fi": "Tule tutustumaan terveyskylään ja muihin digitaalisiin terveyssivustoihin."
            },
            "location_extra_info": {
                "fi": "N-talo 1krs."
            },
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7vejapm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7vdkab4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20345/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 38263,
                    "license": "cc_by",
                    "created_time": "2017-08-04T07:40:18.563447Z",
                    "last_modified_time": "2017-08-04T07:40:18.563469Z",
                    "name": "495px-Bingo_card.jpg",
                    "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Bingo_card.jpg/495px-Bingo_card.jpg",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/38263/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                }
            ],
            "created_time": "2018-03-06T09:03:36.463120Z",
            "last_modified_time": "2018-03-06T09:03:36.466232Z",
            "date_published": null,
            "start_time": "2018-03-14T13:00:00Z",
            "end_time": "2018-03-14T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on <a href=\"https://www.hel.fi/sote/fi/palvelut/palvelukuvaus?id=3252\" target=\"_blank\">palvelukeskuskortti</a>.</p><p>Bingo</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Bingo"
            },
            "short_description": {
                "fi": "Bingo"
            },
            "location_extra_info": {
                "fi": "N-talo 1krs."
            },
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7vdkab4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7vdasp4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26265/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4652/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 38014,
                    "license": "cc_by",
                    "created_time": "2017-08-01T07:28:16.084726Z",
                    "last_modified_time": "2018-03-06T08:59:21.122298Z",
                    "name": "Italian_sausage_on_the_grill.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Italian_sausage_on_the_grill.jpg",
                    "cropping": "166,0,834,667",
                    "photographer_name": "",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/38014/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                }
            ],
            "created_time": "2018-03-06T09:02:19.263829Z",
            "last_modified_time": "2018-03-06T09:02:19.266850Z",
            "date_published": null,
            "start_time": "2018-03-09T10:00:00Z",
            "end_time": "2018-03-09T11:30: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,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on <a href=\"https://www.hel.fi/sote/fi/palvelut/palvelukuvaus?id=3252\" target=\"_blank\">palvelukeskuskortti</a>.</p><p>Tuo mukanasi omat makkarat, palvelukeskuksen grilli kuumana! Henkilökunta grillaa makkarat.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Koskelan palvelukeskuksen grilli kuumana!"
            },
            "short_description": {
                "fi": "Tuo mukanasi omat makkarat, palvelukeskuksen grilli kuumana!"
            },
            "location_extra_info": {
                "fi": "N-talo 1krs."
            },
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7vdasp4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7vbrsmy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18118/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22875/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 42666,
                    "license": "cc_by",
                    "created_time": "2018-03-01T08:16:31.876700Z",
                    "last_modified_time": "2018-03-01T08:16:31.876724Z",
                    "name": "Naistenpäivä",
                    "url": "http://api.hel.fi/linkedevents/media/images/naistenp%C3%A4iv%C3%A4n_ruusu.jpg",
                    "cropping": "82,0,343,261",
                    "photographer_name": "Netin ilmaiskuvia",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                }
            ],
            "created_time": "2018-03-06T08:55:54.214452Z",
            "last_modified_time": "2018-03-06T08:55:54.217646Z",
            "date_published": null,
            "start_time": "2018-03-08T10:00:00Z",
            "end_time": "2018-03-08T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on <a href=\"https://www.hel.fi/sote/fi/palvelut/palvelukuvaus?id=3252\" target=\"_blank\">palvelukeskuskortti</a>.</p><p>Naistenpäivän kunniaksi live musiikkia Käpylän musiikkiopistolta ja manikyyriä! Tervetuloa hemmotteluun!</p>"
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Naistenpäivän ohjelmaa!"
            },
            "short_description": {
                "fi": "Naistenpäivän kunniaksi elävää musiikkia ohjelmassa ja manikyyriä!"
            },
            "location_extra_info": {
                "fi": "N-talo 1krs"
            },
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7vbrsmy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqqixymjy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:43157/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "http://www.ticketmaster.fi",
                        "en": "http://www.ticketmaster.fi"
                    },
                    "price": {
                        "fi": "11-22,50€",
                        "en": "11-22,50€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41855,
                    "license": "event_only",
                    "created_time": "2018-01-17T13:41:05.689689Z",
                    "last_modified_time": "2018-01-17T13:41:05.689711Z",
                    "name": "Silent Music: UMO & Johanna Iivanainen",
                    "url": "http://api.hel.fi/linkedevents/media/images/johanna_iivanainen-by-tanja.jpg",
                    "cropping": "0,8,1920,1928",
                    "photographer_name": "UMO (c)Tanja Ahola",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-01-17T13:46:33.422555Z",
            "last_modified_time": "2018-03-06T08:49:15.675654Z",
            "date_published": null,
            "start_time": "2018-03-30T15: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,
            "description": {
                "fi": "<p>30.3. Mikael Agricolan kirkko. UMO on konsertoinut pääsiäisen alla lähes 20 vuoden ajan erityisellä Silent Music -teemalla. Konserteista on muodostunut myös kuulijoille yksi hiljaisen viikon uusista traditioista. </p><p>Tänä vuonna konserttien solistina nähdään laulaja-lauluntekijä Johanna Iivanainen, joka on löytänyt tiensä suomalaisten sydämiin mm. SuomiLOVE-ohjelman kautta sekä yhteistyönsä myötä mm. Antti Sarpilan, Eero Koivistoisen ja Jukka Perkon kanssa.</p>",
                "en": "<p>30.3. Mikael Agricola church. For nearly twenty years, UMO has played a special Silent Music concert at Easter. These concerts in Holy Week have already become a well-liked tradition among the jazz-digging citizens. </p><p>This year UMO performs with singer-songwriter Johanna Iivanainen, known to Finnish audiences for her performances in the TV program SuomiLOVE and her collaborative projects with Antti Sarpila, Eero Koivistoinen and Jukka Perko, to name a few.</p>"
            },
            "info_url": {
                "fi": "http://umo.fi/fi/konsertti/silent-music-umo-johanna-iivanainen/",
                "en": "http://umo.fi/en/konsertti/silent-music-umo-johanna-iivanainen-2/"
            },
            "name": {
                "fi": "Silent Music: UMO & Johanna Iivanainen",
                "en": "Silent Music: UMO & Johanna Iivanainen"
            },
            "short_description": {
                "fi": "30.3. Mikael Agricolan kirkko. UMO on konsertoinut pääsiäisen alla lähes 20 vuoden ajan erityisellä Silent Music -teemalla.",
                "en": "30.3. Mikael Agricola church. For nearly twenty years, UMO has played a special Silent Music concert at Easter. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "UMO",
                "en": "UMO"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqqixymjy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqqixuphm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:44681/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "http://www.ticketmaster.fi",
                        "en": "http://www.ticketmaster.fi"
                    },
                    "price": {
                        "fi": "11-22,50€",
                        "en": "11-22,50€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41855,
                    "license": "event_only",
                    "created_time": "2018-01-17T13:41:05.689689Z",
                    "last_modified_time": "2018-01-17T13:41:05.689711Z",
                    "name": "Silent Music: UMO & Johanna Iivanainen",
                    "url": "http://api.hel.fi/linkedevents/media/images/johanna_iivanainen-by-tanja.jpg",
                    "cropping": "0,8,1920,1928",
                    "photographer_name": "UMO (c)Tanja Ahola",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-01-17T13:46:01.403685Z",
            "last_modified_time": "2018-03-06T08:47:42.369540Z",
            "date_published": null,
            "start_time": "2018-03-28T16: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": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>28.3. Pyhän Laurin kirkko. UMO on konsertoinut pääsiäisen alla lähes 20 vuoden ajan erityisellä Silent Music -teemalla. Konserteista on muodostunut myös kuulijoille yksi hiljaisen viikon uusista traditioista. </p><p>Tänä vuonna konserttien solistina nähdään laulaja-lauluntekijä Johanna Iivanainen, joka on löytänyt tiensä suomalaisten sydämiin mm. SuomiLOVE-ohjelman kautta sekä yhteistyönsä myötä mm. Antti Sarpilan, Eero Koivistoisen ja Jukka Perkon kanssa.</p>",
                "en": "<p>28.3. Pyhän Laurin kirkko. For nearly twenty years, UMO has played a special Silent Music concert at Easter. These concerts in Holy Week have already become a well-liked tradition among the jazz-digging citizens. </p><p>This year UMO performs with singer-songwriter Johanna Iivanainen, known to Finnish audiences for her performances in the TV program SuomiLOVE and her collaborative projects with Antti Sarpila, Eero Koivistoinen and Jukka Perko, to name a few.</p>"
            },
            "info_url": {
                "fi": "http://umo.fi/fi/konsertti/silent-music-umo-johanna-iivanainen/",
                "en": "http://umo.fi/en/konsertti/silent-music-umo-johanna-iivanainen-2/"
            },
            "name": {
                "fi": "Silent Music: UMO & Johanna Iivanainen",
                "en": "Silent Music: UMO & Johanna Iivanainen"
            },
            "short_description": {
                "fi": "28.3. Pyhän Laurin kirkko. UMO on konsertoinut pääsiäisen alla lähes 20 vuoden ajan erityisellä Silent Music -teemalla.",
                "en": "28.3. Pyhän Laurin kirkko. For nearly twenty years, UMO has played a special Silent Music concert at Easter. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "UMO",
                "en": "UMO"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqqixuphm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7u7skf4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4652/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 36370,
                    "license": "cc_by",
                    "created_time": "2017-05-26T09:14:48.803354Z",
                    "last_modified_time": "2023-09-13T06:31:35.293513Z",
                    "name": "Koskelan palvelukeskus",
                    "url": "http://api.hel.fi/linkedevents/media/images/Koskela_lFcIIzx.jpg",
                    "cropping": "56,0,394,337",
                    "photographer_name": "Koskelan palvelukeskuksen henkilökunta",
                    "alt_text": "Koskelan palvelukeskus",
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/36370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                }
            ],
            "created_time": "2018-03-06T08:47:16.015236Z",
            "last_modified_time": "2018-03-06T08:47:16.018700Z",
            "date_published": null,
            "start_time": "2018-03-06T11: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,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on <a href=\"https://www.hel.fi/sote/fi/palvelut/palvelukuvaus?id=3252\" target=\"_blank\">palvelukeskuskortti</a>.</p><p>Oletko kiinnostunut palvelukeskustoiminnasta. Mietitkö mistä aloittaa? Tervetuloa tutustumaan toimintaan ja henkilökuntaan!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Tule tutustumaan palvelukeskuksen toimintaan"
            },
            "short_description": {
                "fi": "Oletko kiinnostunut palvelukeskustoiminnasta. Mietitkö mistä aloittaa? "
            },
            "location_extra_info": null,
            "provider": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7u7skf4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqqixo4xq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:56385/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "http://www.ticketmaster.fi",
                        "en": "http://www.ticketmaster.fi"
                    },
                    "price": {
                        "fi": "11-22,50€",
                        "en": "11-22,50€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41855,
                    "license": "event_only",
                    "created_time": "2018-01-17T13:41:05.689689Z",
                    "last_modified_time": "2018-01-17T13:41:05.689711Z",
                    "name": "Silent Music: UMO & Johanna Iivanainen",
                    "url": "http://api.hel.fi/linkedevents/media/images/johanna_iivanainen-by-tanja.jpg",
                    "cropping": "0,8,1920,1928",
                    "photographer_name": "UMO (c)Tanja Ahola",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-01-17T13:45:15.708139Z",
            "last_modified_time": "2018-03-06T08:44:33.381110Z",
            "date_published": null,
            "start_time": "2018-03-27T16: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": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>27.3. Espoon tuomiokirkko. UMO on konsertoinut pääsiäisen alla lähes 20 vuoden ajan erityisellä Silent Music -teemalla. Konserteista on muodostunut myös kuulijoille yksi hiljaisen viikon uusista traditioista. </p><p>Tänä vuonna konserttien solistina nähdään laulaja-lauluntekijä Johanna Iivanainen, joka on löytänyt tiensä suomalaisten sydämiin mm. SuomiLOVE-ohjelman kautta sekä yhteistyönsä myötä mm. Antti Sarpilan, Eero Koivistoisen ja Jukka Perkon kanssa.</p>",
                "en": "<p>27.3. Espoo Cathedral. For nearly twenty years, UMO has played a special Silent Music concert at Easter. These concerts in Holy Week have already become a well-liked tradition among the jazz-digging citizens. </p><p>This year UMO performs with singer-songwriter Johanna Iivanainen, known to Finnish audiences for her performances in the TV program SuomiLOVE and her collaborative projects with Antti Sarpila, Eero Koivistoinen and Jukka Perko, to name a few.</p>"
            },
            "info_url": {
                "fi": "http://umo.fi/fi/konsertti/silent-music-umo-johanna-iivanainen/",
                "en": "http://umo.fi/en/konsertti/silent-music-umo-johanna-iivanainen-2/"
            },
            "name": {
                "fi": "Silent Music: UMO & Johanna Iivanainen",
                "en": "Silent Music: UMO & Johanna Iivanainen"
            },
            "short_description": {
                "fi": "27.3. Espoon tuomiokirkko. UMO on konsertoinut pääsiäisen alla lähes 20 vuoden ajan erityisellä Silent Music -teemalla.",
                "en": "27.3. Espoo Cathedral. For nearly twenty years, UMO has played a special Silent Music concert at Easter. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "UMO",
                "en": "UMO"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqqixo4xq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqz4q25qi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:50582/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "sv": "",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "https://www.glivelab.fi/events/siinai-horte-5a7ac65cf2319d0014b29f53/",
                        "sv": "https://www.glivelab.fi/events/siinai-horte-5a7ac65cf2319d0014b29f53/",
                        "en": "https://www.glivelab.fi/events/siinai-horte-5a7ac65cf2319d0014b29f53/"
                    },
                    "price": {
                        "fi": "19€",
                        "sv": "19€",
                        "en": "19€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 42444,
                    "license": "event_only",
                    "created_time": "2018-02-16T10:53:17.512459Z",
                    "last_modified_time": "2018-02-16T10:53:17.512478Z",
                    "name": "Siinai + Horte",
                    "url": "http://api.hel.fi/linkedevents/media/images/27752444_559196727763746_58.jpg",
                    "cropping": "210,0,750,540",
                    "photographer_name": "G Livelab",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-02-16T10:57:50.466922Z",
            "last_modified_time": "2018-03-06T07:59:52.978253Z",
            "date_published": null,
            "start_time": "2018-03-09T18: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,
            "description": {
                "fi": "<p>Siinai-yhtye julkaisi syksyllä hypnoottisen Sykli-albumin, jolla avaruudellinen krautrock-ilmaisu on hiottu huippuunsa. Albumilla yhtye tutkiskelee päättymätöntä elämän sykliä, loputonta matkaa valosta pimeyteen ja takaisin. </p><p>Illan avaa psykerock-yhtye Horte, joka julkaisi myös viime keväänä debyyttialbuminsa. </p>",
                "sv": "<p>Svart Records utgav i höstas Siinais hypnotiska album Sykli, där den kosmiska krautrocken har finslipats till sin spets. Kvällen inleds med psykrockbandet Horte, som förra våren utgav sitt utmärkta debutalbum, likaså hos Svart.</p>",
                "en": "<p>In 2017, after a brief hiatus, Siinai released their new concept album \"Sykli\" where the group explores the cyclical nature of life, the endless loops of light into darkness and back again, as explored through shimmering synths, rich ambience and deeply emotive melodies. </p><p>The psych rock group Horte opens up the night. </p>"
            },
            "info_url": {
                "fi": "https://www.glivelab.fi/events/siinai-horte-5a7ac65cf2319d0014b29f53/",
                "sv": "https://www.glivelab.fi/events/siinai-horte-5a7ac65cf2319d0014b29f53/",
                "en": "https://www.glivelab.fi/events/siinai-horte-5a7ac65cf2319d0014b29f53/"
            },
            "name": {
                "fi": "Siinai + Horte",
                "sv": "Siinai + Horte",
                "en": "Siinai + Horte"
            },
            "short_description": {
                "fi": "Siinai-yhtye julkaisi syksyllä hypnoottisen Sykli-albumin, jolla avaruudellinen krautrock-ilmaisu on hiottu huippuunsa.",
                "sv": "Svart Records utgav i höstas Siinais hypnotiska album Sykli, där den kosmiska krautrocken har finslipats till sin spets. ",
                "en": "In 2017, after a brief hiatus, Siinai released their new concept album \"Sykli\" where the group explores the cyclical nature of life,"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "G Livelab",
                "sv": "G Livelab",
                "en": "G Livelab"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqz4q25qi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq3q4bemq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20566/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Liput ennakkoon 19€, ovelta 21€",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/Melrose-Tavastia-klubi-Helsinki-lippuja/52713",
                        "sv": "https://www.tiketti.fi/Melrose-Tavastia-klubi-Helsinki-lippuja/52713",
                        "en": "https://www.tiketti.fi/Melrose-Tavastia-klubi-Helsinki-lippuja/52713"
                    },
                    "price": {
                        "fi": "19€",
                        "sv": "19€",
                        "en": "19€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 42537,
                    "license": "event_only",
                    "created_time": "2018-02-21T12:56:46.841238Z",
                    "last_modified_time": "2018-02-21T12:56:46.841259Z",
                    "name": "Melrose",
                    "url": "https://cdn.dexviihde.fi/wp-content/uploads/2013/11/melrose-press.jpg",
                    "cropping": "",
                    "photographer_name": "Bobby Nieminen",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42537/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-02-21T12:56:52.580693Z",
            "last_modified_time": "2018-03-06T07:55:35.867796Z",
            "date_published": null,
            "start_time": "2018-03-09T18:00:00Z",
            "end_time": "2018-03-09T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Melrose on vuonna 1981 perustettu rock-yhtye, joka on musiikissaan yhdistänyt perusrockia rockabillyyn ja rock'n'rolliin. Tämän timanttisen rock-orkesterin edellisestä studiolevystä on kulunut yli kymmenen vuotta, jonka aikana bändi on keikkaillut ahkerasti ja säännöllisesti ympäri maailmaa, pääsääntöisesti kotimaassa. Tämä rock-trio tunnetaankin loistavasta livemeiningistä, joka tehoaa yhä vain faneihin pajasta ja paikasta riippumatta. Yhtye on myös esiintynyt Aki Kaurismäen elokuvissa Laitakaupungin valot sekä Hamlet liikemaailmassa.</p>",
                "sv": "<p><br/>En mer genuin rocktrio än Melrose får du söka efter. Bandet är alltid i form och alltid lika coolt. Bandet ihågkoms naturligtvis också från Aki Kaurismäkis filmer Hamlet i affärsvärlden (1987) och Ljus i skymningen (2006).</p>",
                "en": "<p>Melrose is a classic rock trio that is always on form and as cool as ever. The band is also famous for its cameo appearances in the Aki Kaurismäki films “Hamlet Goes Business” (1987) and “Lights in the Dusk” (2006). You can catch them live at the legendary Tavastia rock club on Friday 9 March.</p>"
            },
            "info_url": {
                "fi": "http://www.facebook.com/melroseofficial",
                "sv": "http://www.facebook.com/melroseofficial",
                "en": "http://www.facebook.com/melroseofficial"
            },
            "name": {
                "fi": "Melrose",
                "sv": "Melrose",
                "en": "Melrose"
            },
            "short_description": {
                "fi": "Melrose on vuonna 1981 perustettu rock-yhtye, joka on musiikissaan yhdistänyt perusrockia rockabillyyn ja rock'n'rolliin. ",
                "sv": "En mer genuin rocktrio än Melrose får du söka efter. Bandet är alltid i form och alltid lika coolt. ",
                "en": "Melrose is a classic rock trio that is always on form and as cool as ever."
            },
            "location_extra_info": null,
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq3q4bemq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7utnxwa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20815/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "http://www.tiketti.fi",
                        "en": "http://www.tiketti.fi"
                    },
                    "price": {
                        "fi": "15/17€",
                        "en": "15/17€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 42735,
                    "license": "event_only",
                    "created_time": "2018-03-06T07:50:12.623829Z",
                    "last_modified_time": "2018-03-06T07:50:12.623866Z",
                    "name": "Eva + Manu, Leo",
                    "url": "http://api.hel.fi/linkedevents/media/images/eva_manu-117.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Kulttuuritehdas Korjaamo",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42735/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-03-06T07:54:12.784746Z",
            "last_modified_time": "2018-03-06T07:54:12.787867Z",
            "date_published": null,
            "start_time": "2018-03-24T18: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,
            "description": {
                "fi": "<p>Maaliskuussa Korjaamon Vaunusalissa esiintyvä Eva + Manu tapasivat toisensa Bostonissa Berklee College Of Musicissa vuonna 2009. Silloinen pariskunta lähti kiertämään Eurooppaa ja kirjoitti yhdessä musiikkia matkan aikana. </p><p>Suomeen palattuaan duo julkaisi ensimmäisen albuminsa Eva & Manu vuonna 2012. Esikoisalbumi toi yhtyeelle Emma-ehdokkuuden. Toisen studioalbuminsa Cinnamon Hearts duo julkaisi vuonna 2014.</p>",
                "en": "<p>After meeting each other at Boston's Berklee College of Music in 2009, Eva and Manu travelled across Europe writing songs that would end on their debut album Eva & Manu, released in 2012. </p><p>They have released a second album titled Cinnamon Hearts in 2014 and are expected to release new material during the spring.</p>"
            },
            "info_url": {
                "fi": "http://www.korjaamo.fi/fi/event/eva-manu-leo-243",
                "en": "http://www.korjaamo.fi/fi/event/eva-manu-leo-243"
            },
            "name": {
                "fi": "Eva + Manu, Leo",
                "en": "Eva + Manu, Leo"
            },
            "short_description": {
                "fi": "Maaliskuussa Korjaamon Vaunusalissa esiintyvä Eva + Manu tapasivat toisensa Bostonissa Berklee College Of Musicissa vuonna 2009.",
                "en": "After meeting each other at Boston's Berklee College of Music in 2009, Eva and Manu travelled across Europe writing songs that would end on their debut album"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Kulttuuritehdas Korjaamo",
                "en": "Culture Factory Korjaamo"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7utnxwa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq3qrzzku",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20815/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "sv": "",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/Mara-Balls-Autiomaa-levyjulkkarit-Kulttuuritehdas-Korjaamo-lippuja/52372",
                        "sv": "https://www.tiketti.fi/Mara-Balls-Autiomaa-levyjulkkarit-Kulttuuritehdas-Korjaamo-lippuja/52372",
                        "en": "https://www.tiketti.fi/Mara-Balls-Autiomaa-levyjulkkarit-Kulttuuritehdas-Korjaamo-lippuja/52372"
                    },
                    "price": {
                        "fi": "10/12€",
                        "sv": "10/12€",
                        "en": "10/12€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 42535,
                    "license": "event_only",
                    "created_time": "2018-02-21T12:07:42.489502Z",
                    "last_modified_time": "2018-02-21T12:07:42.489523Z",
                    "name": "Mara Balls, Autiomaa",
                    "url": "http://api.hel.fi/linkedevents/media/images/MaraBalls_promo_20176.jpg",
                    "cropping": "322,0,1598,1277",
                    "photographer_name": "Kulttuuritehdas Korjaamo",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42535/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-02-21T12:12:10.965133Z",
            "last_modified_time": "2018-03-06T07:52:36.764991Z",
            "date_published": null,
            "start_time": "2018-03-09T19: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,
            "description": {
                "fi": "<p>Jukka ja Jytämimmeistä tuttu Mara Balls jatkaa seikkailujaan oman soolobändinsä kanssa. Viimeisin albumi ’Elävä kivi’ on sulattanut niin yleisön kuin kriitikoidenkin sydämet.</p><p>Autiomaa juhlistaa ”Kantrin viimeiset herrasmiehet” –pitkäsoiton julkaisua.</p>",
                "sv": "<p>Mara Balls belönades nyligen på galan Finnish Blues Awards som årets nykomling, och inte utan orsak. En bättre artist får man söka efter på dessa breddgrader. Här bjuds på imponerande genialt fuzz-gitarrspel, men säkert också på stämningar från den färska, nya ep:n Maailma palaa. Autiomaa firar utgivningen av skivan Kantrin viimeiset herrasmiehet. </p>",
                "en": "<p>Tampere-based stoner rock band Mara Balls plays alongside Autiomaa, who celebrates the release of their newest LP.</p>"
            },
            "info_url": {
                "fi": "http://www.korjaamo.fi/fi/event/mara-balls-autiomaa-levyjulkkarit-93",
                "sv": "http://www.korjaamo.fi/fi/event/mara-balls-autiomaa-levyjulkkarit-93",
                "en": "http://www.korjaamo.fi/fi/event/mara-balls-autiomaa-levyjulkkarit-93"
            },
            "name": {
                "fi": "Mara Balls, Autiomaa",
                "sv": "Mara Balls, Autiomaa",
                "en": "Mara Balls, Autiomaa"
            },
            "short_description": {
                "fi": "Jukka ja Jytämimmeistä tuttu Mara Balls jatkaa seikkailujaan oman soolobändinsä kanssa. Viimeisin albumi ’Elävä kivi’",
                "sv": "Mara Balls belönades nyligen på galan Finnish Blues Awards som årets nykomling, och inte utan orsak.",
                "en": "Tampere-based stoner rock band Mara Balls plays alongside Autiomaa,"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Kulttuuritehdas Korjaamo",
                "sv": "Korjaamo",
                "en": "Culture Factory Korjaamo"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq3qrzzku/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqsfrnd6q",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:50582/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3064/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "sv": "",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "https://www.glivelab.fi/events/laurel-halo-us-jesse-5a5d1215c0cd4d0014201a7e/",
                        "sv": "https://www.glivelab.fi/events/laurel-halo-us-jesse-5a5d1215c0cd4d0014201a7e/",
                        "en": "https://www.glivelab.fi/events/laurel-halo-us-jesse-5a5d1215c0cd4d0014201a7e/"
                    },
                    "price": {
                        "fi": "20€",
                        "sv": "20€",
                        "en": "20€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41983,
                    "license": "event_only",
                    "created_time": "2018-01-23T11:24:38.192137Z",
                    "last_modified_time": "2018-01-23T11:24:38.192166Z",
                    "name": "Laurel Halo, Jesse",
                    "url": "http://api.hel.fi/linkedevents/media/images/26840854_546117239071695_81.jpg",
                    "cropping": "327,0,1573,1246",
                    "photographer_name": "G Livelab",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41983/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-01-23T11:27:13.396291Z",
            "last_modified_time": "2018-03-06T07:50:09.061562Z",
            "date_published": null,
            "start_time": "2018-03-08T17: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,
            "description": {
                "fi": "<p>Berliinissä vaikuttavan Lauren Halon tuotanto koostuu pääosin kokeellisesta elektronisesta musiikista, jossa on kuultavissa kaikuja Berliinin ja Detroitin tekno-skenestä, avantgardistisesta popista sekä ambientista, R&amp;B:stä ja jazzista. </p><p>Viime kesänä ilmestynyt loistoalbumi Dust venytti Halon soundin ääriviivoja entisestään ja oli mukana monella vuoden parhaat -listalla.</p>",
                "sv": "<p>En intim spelning med experimentell elektronisk musik som kan rekommenderas! Laurel Halo som bor i Berlin förenar i sin musik minimalistisk tekno, jazz, ambient, dubbning, r&b och pop från Berlin och Detroit. Elektroduo Jesse från Helsingfors är uppvärmningsband.</p>",
                "en": "<p>The American-born, Berlin-based electronic musician Laurel Halo visits Helsinki. Last summer, she released her critically lauded third album \"Dust\". The LP saw Halo discover new levels in her forward-thinking music. </p><p>Finnish electronica group Jesse will open the night with fresh music from their upcoming album.</p>"
            },
            "info_url": {
                "fi": "https://www.glivelab.fi/events/laurel-halo-us-jesse-5a5d1215c0cd4d0014201a7e/",
                "sv": "https://www.glivelab.fi/events/laurel-halo-us-jesse-5a5d1215c0cd4d0014201a7e/",
                "en": "https://www.glivelab.fi/events/laurel-halo-us-jesse-5a5d1215c0cd4d0014201a7e/"
            },
            "name": {
                "fi": "Laurel Halo, Jesse",
                "sv": "Laurel Halo, Jesse",
                "en": "Laurel Halo, Jesse"
            },
            "short_description": {
                "fi": "Berliinissä vaikuttavan Lauren Halon tuotanto koostuu pääosin kokeellisesta elektronisesta musiikista, jossa on kuultavissa kaikuja Berliinin ja Detroitin",
                "sv": "En intim spelning med experimentell elektronisk musik som kan rekommenderas!",
                "en": "The American-born, Berlin-based electronic musician Laurel Halo visits Helsinki. Last summer, she released her critically lauded third album \"Dust\". "
            },
            "location_extra_info": null,
            "provider": {
                "fi": "G Livelab",
                "sv": "G Livelab",
                "en": "G Livelab"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqsfrnd6q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqyuhgvqa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20566/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20421/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1992219904433646/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Liput ennakkoon 15€/ovelta 17€",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": {
                        "fi": "http://www.tavastiaklubi.fi/fi_FI/tavastia/event/2018-03-07-paeae-kii-sur-rur-henna-emilia-and-houreet",
                        "sv": "http://www.tavastiaklubi.fi/fi_FI/tavastia/event/2018-03-07-paeae-kii-sur-rur-henna-emilia-and-houreet",
                        "en": "http://www.tavastiaklubi.fi/fi_FI/tavastia/event/2018-03-07-paeae-kii-sur-rur-henna-emilia-and-houreet"
                    },
                    "price": {
                        "fi": "15€/17€",
                        "sv": "15€/17€",
                        "en": "15€/17€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 42364,
                    "license": "event_only",
                    "created_time": "2018-02-12T12:26:33.827299Z",
                    "last_modified_time": "2018-02-12T12:26:33.827320Z",
                    "name": "nälkä.fi",
                    "url": "http://api.hel.fi/linkedevents/media/images/26758047_2150718701612161_626697867691824853_o.jpg",
                    "cropping": "444,0,1604,1159",
                    "photographer_name": "",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42364/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-02-12T13:03:20.960318Z",
            "last_modified_time": "2018-03-06T07:48:53.472316Z",
            "date_published": null,
            "start_time": "2018-03-07T18:00:00Z",
            "end_time": "2018-03-07T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Musiikkilehti Nälkä.fi juhlii kolmatta numeroaan Tavastialla.</p><p>Keskiviikkona 7. maaliskuuta esiintyvät kevään toistaiseksi ainoan Helsingin-keikkansa tekevä Pää Kii, ensimmäistä kertaa vuoteen soittava Sur-rur sekä viime kesänä \"Beibi, mä oon pilalla\" -debyytti-ep:n julkaissut Henna Emilia &amp; Houreet</p>",
                "sv": "<p>Musiktidningen Nälkä.fi firar sitt tredje nummer på Tavastia och samlar samtidigt in medel för att fortsätta sin verksamhet. Pää Kii, punkens guldgossar från Vasagatan uppträder som kvällens huvudstjärnor på Tavastia.</p>",
                "en": "<p>Music magazine Nälkä.fi will celebrate its third issue with a fundraising concert at Tavastia to help keep the young magazine going. Headlining the evening will be local punk band Pää Kii.</p>"
            },
            "info_url": {
                "fi": "http://www.tavastiaklubi.fi",
                "sv": "http://www.tavastiaklubi.fi",
                "en": "http://www.tavastiaklubi.fi"
            },
            "name": {
                "fi": "Nälkä.fi esittää: Pää Kii, Sur-rur, Henna Emilia & Houreet",
                "sv": "Pää Kii, Sur-rur, Henna Emilia & Houreet",
                "en": "Pää Kii, Sur-rur, Henna Emilia & Houreet"
            },
            "short_description": {
                "fi": "Musiikkilehti Nälkä.fi juhlii kolmatta numeroaan Tavastialla.",
                "sv": "Musiktidningen Nälkä.fi firar sitt tredje nummer på Tavastia och samlar samtidigt in medel för att fortsätta sin verksamhet. ",
                "en": "Music magazine Nälkä.fi will celebrate its third issue with a fundraising concert at Tavastia to help keep the young magazine going. "
            },
            "location_extra_info": null,
            "provider": {
                "fi": "nälkä.fi",
                "sv": "nälkä.fi",
                "en": "nälkä.fi"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqyuhgvqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq3hay4om",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:53083/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/755076808026933/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Seisomakatsomo K-18",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/Pussy-Riot-esittaa-Riot-Days-Kulttuuritalo-Helsinki-lippuja/52279",
                        "sv": "https://www.tiketti.fi/Pussy-Riot-esittaa-Riot-Days-Kulttuuritalo-Helsinki-lippuja/52279",
                        "en": "https://www.tiketti.fi/Pussy-Riot-esittaa-Riot-Days-Kulttuuritalo-Helsinki-lippuja/52279"
                    },
                    "price": {
                        "fi": "32,50€",
                        "sv": "32,50€",
                        "en": "32,50€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 42509,
                    "license": "event_only",
                    "created_time": "2018-02-20T13:58:33.757583Z",
                    "last_modified_time": "2018-02-20T13:58:33.757605Z",
                    "name": "Pussy Riot",
                    "url": "http://api.hel.fi/linkedevents/media/images/EV52279_7_768x470.jpg",
                    "cropping": "149,0,619,470",
                    "photographer_name": "",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42509/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-02-20T13:59:29.651200Z",
            "last_modified_time": "2018-03-06T07:46:34.267728Z",
            "date_published": null,
            "start_time": "2018-03-06T17:30:00Z",
            "end_time": "2018-03-06T20:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "description": {
                "fi": "<p>Maailmalla kohahduttanut venäläinen Pussy Riot saapuu ensimmäistä kertaa esiintymään Suomeen Riot Days - nimellä kulkevan projektinsa kanssa. </p><p>Helsingin Kulttuuritalolla nähtävä Riot Days -performanssiesitys on syntynyt Maria Alyokhinan, musiikkituottaja Alexander Cheparukin ja ohjaaja Yury Muravitskyn yhteistyöstä. Lavalla nähdään neljä esiintyjää, Alyokhinan lisäksi Kyril Masheka, Nastya Awott ja Maxx Awott. Kulttuuritalolla illan avaa Menkkaklubi dj't.</p>",
                "sv": "<p>Den ryska aktivistgruppen Pussy Riot som väckte uppståndelse runt om i världen uppträder på Kulturhuset med sitt projekt Riot Days. </p><p>Performanceupprädandet har uppkommit som ett samarbete mellan Maria Alyokhina, musikproducent Alexander Cheparukin och regissören Yury Muravitsky. På scenen finns fyra uppträdare, utöver Alyokhina också Kyril Masheka, Nastya Awott och Maxx Awott. Menkkaklubi DJs öppnar kvällen på Kulturhuset.</p>",
                "en": "<p>World-renowned Russian activist group Pussy Riot will perform its “Riot Days” project at Kulttuuritalo. </p><p>The performance has been created by Maria Alyokhina together with music producer Alexander Cheparuk and director Yury Muravitsky. It features four performers on stage: Alyokhina herself plus Kyril Masheka, Nastya Awott and Maxx Awott. The gig will get underway with music by the Menkkaklubi DJs.</p>"
            },
            "info_url": {
                "fi": "www.facebook.com/nofearoy",
                "sv": "www.facebook.com/nofearoy",
                "en": "www.facebook.com/nofearoy"
            },
            "name": {
                "fi": "Pussy Riot presents: Riot Days",
                "sv": "Pussy Riot presents: Riot Days",
                "en": "Pussy Riot presents: Riot Days"
            },
            "short_description": {
                "fi": "Maailmalla kohahduttanut venäläinen Pussy Riot saapuu ensimmäistä kertaa esiintymään Suomeen Riot Days - nimellä kulkevan projektinsa kanssa. ",
                "sv": "Den ryska aktivistgruppen Pussy Riot som väckte uppståndelse runt om i världen uppträder på Kulturhuset med sitt projekt Riot Days. ",
                "en": "World-renowned Russian activist group Pussy Riot will perform its “Riot Days” project at Kulttuuritalo"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "No Fear Agency & Promotion Oy",
                "sv": "No Fear Agency & Promotion Oy",
                "en": "No Fear Agency & Promotion Oy"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq3hay4om/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afq7urmuty",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20815/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p29762/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "peruslippu",
                        "en": "standard ticket"
                    },
                    "info_url": {
                        "fi": "http://www.tiketti.fi",
                        "en": "http://www.tiketti.fi"
                    },
                    "price": {
                        "fi": "10/12€",
                        "en": "10/12€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-03-06T07:45:19.518538Z",
            "last_modified_time": "2018-03-06T07:45:19.521892Z",
            "date_published": null,
            "start_time": "2018-03-23T18: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,
            "description": {
                "fi": "<p>Fliehende Stürme on saksalainen pitkän linjan post-punkakti, jonka juuret ovat legendaarisessa Chaos Z -hardcore bändissä. </p><p>Silent Scream on 2009 perustettu helsinkiläinen post-punk trio. Silent Screamin apokalyptinen musiikki on kokeilevaa ja alkukantaista.</p><p>[di: unru:] on saksalais-suomalainen bändi, joka perustettiin Helsingissä 2010. Heidän tummanpuhuvassa post-punk soundissaan on elementtejä myös syntikkapopista ja saksalaisesta uudesta aallosta.</p>",
                "en": "<p>Fliehende Stürme is a legendary German post punk band formed in Stuttgart in the mid-80s. </p><p>They are joined at Korjaamo by Finnish post punk trio Silent Scream and Finnish-German [di:unru:].</p>"
            },
            "info_url": {
                "fi": "http://www.korjaamo.fi/fi/event/fliehende-sturme-ger-silent-scream-di-unru",
                "en": "http://www.korjaamo.fi/fi/event/fliehende-sturme-ger-silent-scream-di-unru"
            },
            "name": {
                "fi": "Fliehende Stürme, Silent Scream, [di: unru:]",
                "en": "Fliehende Stürme, Silent Scream, [di: unru:]"
            },
            "short_description": {
                "fi": "Fliehende Stürme on saksalainen pitkän linjan post-punkakti, jonka juuret ovat legendaarisessa Chaos Z -hardcore bändissä. ",
                "en": "Fliehende Stürme is a legendary German post punk band formed in Stuttgart in the mid-80s. "
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Kulttuuritehdas Korjaamo",
                "en": "Culture Factory Korjaamo"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afq7urmuty/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}