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

{
    "meta": {
        "count": 5092,
        "next": "http://api.hel.fi/linkedevents/v1/event/?audience_min_age_gt=10&format=api&page=5",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?audience_min_age_gt=10&format=api&page=3"
    },
    "data": [
        {
            "id": "helsinki:aghxdtvw7m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af5ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/tapanilannuta/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804003030",
            "sub_events": [],
            "images": [
                {
                    "id": 139202,
                    "license": "event_only",
                    "created_time": "2024-05-13T11:49:06.554118Z",
                    "last_modified_time": "2024-05-13T11:55:22.884643Z",
                    "name": "roskien_keruu.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/roskien_keruu.jpg",
                    "cropping": "380,0,1902,1521",
                    "photographer_name": "",
                    "alt_text": "roskien keruukisa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804003030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139202/?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/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                }
            ],
            "created_time": "2024-05-13T11:55:23.784807Z",
            "last_modified_time": "2024-05-14T12:23:05.540006Z",
            "date_published": null,
            "start_time": "2024-06-07T16:00:00Z",
            "end_time": "2024-06-07T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 25,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-05-13T18:30:00+03:00",
            "enrolment_end_time": "2024-06-07T19:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "kerätään roskia lähiympäristöstä",
                "sv": "vi samlar in skräp från närmiljön",
                "en": "collecting garbage from nearby areas"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/tapanilan-nuorisotalo/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/mosabacka-ungdomsgard/",
                "en": "https://nuorten.hel.fi/en/youth-centers/tapanila-youth-centre/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "roskien keruukisa Tapanilan nuorisotalolla",
                "sv": "skräpplockningstävling på Mosabacka ungdomsgård",
                "en": "garbage collection competition at Tapanila Youth Centre"
            },
            "description": {
                "fi": "<p>Pidetään ympäristöstämme huolta. Yhdessä nuorten sekä ohjaajien kanssa lähdemme keräämään roskia lähimetsästämme. Osallistujille herkkupalkinto luvassa.</p>",
                "sv": "<p>Vi tar hand om vår miljö. Tillsammans med unga och handledare går vi ut och samlar skräp i vår närskog. Deltagarna får ett välsmakande pris.</p>",
                "en": "<p>Let’s take care of our environment. We will start collecting garbage from our nearby forest together with young people and instructors. Participants will receive a delicious prize.</p>"
            },
            "provider": {
                "fi": "Tapanilan nuorisotalo",
                "sv": "Mosabacka ungdomsgård",
                "en": "Tapanila Youth Centre"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxdtvw7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghwgfbxlm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:73548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/bolearena/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kaija-koo/kaija-koo-superbileet-3646694/",
                        "en": "https://www.lippu.fi/artist/kaija-koo/kaija-koo-superbileet-3646694/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "49,90€ alkaen",
                        "en": "starting from 49,90€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 139149,
                    "license": "event_only",
                    "created_time": "2024-05-10T15:15:54.529753Z",
                    "last_modified_time": "2024-05-10T15:17:00.012699Z",
                    "name": "KaijaKoo.JPG",
                    "url": "http://api.hel.fi/linkedevents/media/images/KaijaKoo_x5oN1X0.JPG",
                    "cropping": "116,0,579,463",
                    "photographer_name": "",
                    "alt_text": "Kaija Koo",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-10T15:17:00.396707Z",
            "last_modified_time": "2024-05-14T12:17:39.690406Z",
            "date_published": null,
            "start_time": "2024-12-14T16:00:00Z",
            "end_time": "2024-12-14T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": "ISO 14001",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2800,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaija Koo järjestää joulukuussa superbileet Bölessä.\n",
                "en": "In December, Kaija Koo organizes a super party in Böle."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://bolearena.fi/kaija-koo-superbileet-14-12-2024/",
                "en": "https://bolearena.fi/kaija-koo-superbileet-14-12-2024/"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "Kaija Koo: Superbileet",
                "en": "Kaija Koo"
            },
            "description": {
                "fi": "<p>Kaija Koo järjestää joulukuussa superbileet Bölessä.</p><p>Ensimmäisenä kotimaisena naisartistina Helsingin Olympiastadionilla soolona esiintynyt Kaija Koo valloittaa Böle Arena &amp; Clubin joulukuussa vuoden viimeisellä keikallaan.&nbsp;</p><p>Tänä keväänä jo ennakkoon loppuunmyyty klubirundi on ollut suuri menestys ja kesällä Kaija nähdään isoimmilla festareilla ympäri Suomen. Böle Arenan Superbileet-nimeä kantava konsertti kruunaa artistin mielettömän keikkavuoden.</p><p>&nbsp;</p><p>Böle Arena &amp; Club</p><p>14.12.2024</p><p>18.00-23.00</p><p>Liput alk. 49,90€ Lippupisteestä, K-18</p>",
                "en": "<p>In December, Kaija Koo organizes a super party in Böle.\n</p><p>\nKaija Koo, who was the first Finnish female artist to perform solo at the Helsinki Olympic Stadium, will conquer Böle Arena &amp; Club in December with her last gig of the year.\n</p><p>\nThis spring, the already sold-out club tour has been a great success, and in the summer Kaija can be seen at the biggest festivals all around Finland. Böle Arena's concert crowns the artist's fabulous year.</p><p>&nbsp;</p><p>Böle Arena &amp; Club</p><p>14.12.2024</p><p>18.00-23.00</p><p>Tickets starting from 49,90€ from Lippupiste, age limit 18 yrs</p>"
            },
            "provider": {
                "fi": "BÖLE Arena & Club",
                "en": "BÖLE Arena & Club"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghwgfbxlm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxd2577a",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8110/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af5ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/tapanilannuta/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804003030",
            "sub_events": [],
            "images": [
                {
                    "id": 139286,
                    "license": "event_only",
                    "created_time": "2024-05-14T10:46:47.403966Z",
                    "last_modified_time": "2024-05-14T12:12:15.237183Z",
                    "name": "jäätelö.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/j%C3%A4%C3%A4tel%C3%B6.jpg",
                    "cropping": "379,0,1900,1521",
                    "photographer_name": "",
                    "alt_text": "jäätelöannoksen tuunaus Tapanilan nuorisotalolla",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804003030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139286/?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/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                }
            ],
            "created_time": "2024-05-13T12:27:06.625894Z",
            "last_modified_time": "2024-05-14T12:16:46.838081Z",
            "date_published": null,
            "start_time": "2024-06-06T16:00:00Z",
            "end_time": "2024-06-06T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 15,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-05-13T18:30:00+03:00",
            "enrolment_end_time": "2024-06-06T19:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "jääteloannoksien tuunausta nuorten kanssa",
                "sv": "dekorering av glassportioner med de unga",
                "en": "ice cream decorating with young people"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/tapanilan-nuorisotalo/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/mosabacka-ungdomsgard/",
                "en": "https://nuorten.hel.fi/en/youth-centers/tapanila-youth-centre/"
            },
            "location_extra_info": {
                "fi": "tapanilan.nuorisotalo@gmail.com  instagram tapanilannuta  puh. 0403348102",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "jäätelöannoksen tuunaus Tapanilan nuorisotalolla",
                "sv": "dekoration av glassportioner på Mosabacka ungdomsgård",
                "en": "ice cream decorating at Tapanila Youth Centre"
            },
            "description": {
                "fi": "<p>Päästä luovuutesi valloilleen ja tuunaa jäätelöannoksesi. Halutessasi ota valokuva muistoksi. Tuotoksista otetaan kuvia nuorisotalomme somejulkaisuihin. Lopuksi oman taideteoksen saa syödä.&nbsp;</p>",
                "sv": "<p>Släpp loss kreativiteten och dekorera en egen glassportion. Om du vill kan du ta ett foto som minne. Vi tar foton av alstren för inlägg på ungdomsgårdens kanaler på sociala medier. Till slut får du äta ditt eget konstverk.&nbsp;</p>",
                "en": "<p>Unleash your creativity and decorate your ice cream. Take a photo as a souvenir. We’ll take photos of the final products for our youth centre’s social media publications. Finally, you get to eat your work of art.&nbsp;</p>"
            },
            "provider": {
                "fi": "Tapanilan nuorisotalo",
                "sv": "Mosabacka ungdomsgård",
                "en": "Tapanila Youth Centre"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd2577a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxc2byfm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8110/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af5ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11281/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p261/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/tapanilannuta/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804003030",
            "sub_events": [],
            "images": [
                {
                    "id": 139185,
                    "license": "event_only",
                    "created_time": "2024-05-13T09:28:20.665314Z",
                    "last_modified_time": "2024-05-13T09:50:18.508858Z",
                    "name": "maailma visa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/maailma_visa_Yb7pbEw.jpg",
                    "cropping": "330,0,1648,1318",
                    "photographer_name": "",
                    "alt_text": "Maailman ympäristöpäivä Tapanilan nuorisotalolla",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804003030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139185/?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/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                }
            ],
            "created_time": "2024-05-13T10:03:26.649667Z",
            "last_modified_time": "2024-05-14T12:09:00.029579Z",
            "date_published": null,
            "start_time": "2024-06-05T16:00:00Z",
            "end_time": "2024-06-05T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-05-13T18:30:00+03:00",
            "enrolment_end_time": "2024-06-05T19:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Maailman ympäristöpäivän tietovisa Tapanilan nuorisotalolla",
                "sv": "Frågesport om världsmiljödagen på Mosabacka ungdomsgård",
                "en": "World Environment Day quiz at Tapanila Youth Centre"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/tapanilan-nuorisotalo/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/mosabacka-ungdomsgard/",
                "en": "https://nuorten.hel.fi/en/youth-centers/tapanila-youth-centre/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Maailman ympäristöpäivän tietovisa Tapanilan nuorisotalolla",
                "sv": "Frågesport om världsmiljödagen på Mosabacka ungdomsgård",
                "en": "World Environment Day quiz at Tapanila Youth Centre"
            },
            "description": {
                "fi": "<p>Vietämme Maailman ympäristöpäivää Kahoot-visan merkeissä. Voittajalle luvassa herkkupalkinto. Illan aikana keskustelua myös ympäristöteemoista.</p>",
                "sv": "<p>Vi firar Världsmiljödagen med ett Kahoot-frågesport. Vinnaren får ett delikat pris. Under kvällen diskuteras även miljöteman</p>",
                "en": "<p>We celebrate World Environment Day with a Kahoot quiz. The winner will receive a delicious prize. During the evening, there will also be a discussion on environmental themes.</p>"
            },
            "provider": {
                "fi": "Tapanilan nuorisotalo",
                "sv": "Mosabacka ungdomsgård",
                "en": "Tapanila Youth Centre"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxc2byfm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghwevdwzu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8110/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10789/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/tapanilannuta/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804003030",
            "sub_events": [],
            "images": [
                {
                    "id": 139119,
                    "license": "event_only",
                    "created_time": "2024-05-10T11:43:38.563510Z",
                    "last_modified_time": "2024-05-14T11:47:42.829259Z",
                    "name": "korupaja.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/korupaja.jpg",
                    "cropping": "194,0,975,781",
                    "photographer_name": "",
                    "alt_text": "koruaskartelua Tapanilan nutalla",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804003030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139119/?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/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                }
            ],
            "created_time": "2024-05-10T11:47:33.717982Z",
            "last_modified_time": "2024-05-14T11:53:18.973804Z",
            "date_published": null,
            "start_time": "2024-06-04T16:00:00Z",
            "end_time": "2024-06-04T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 12,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-05-13T18:30:00+03:00",
            "enrolment_end_time": "2024-06-04T19:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "ohjattua koruaskartelua erilaisista helmistä",
                "sv": "handlett smyckespyssel med olika pärlor",
                "en": "guided jewellery crafts from different gems"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/tapanilan-nuorisotalo/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/mosabacka-ungdomsgard/",
                "en": "https://nuorten.hel.fi/en/youth-centers/tapanila-youth-centre/"
            },
            "location_extra_info": {
                "fi": "tapanilan.nuorisotalo@gmail.com  instagram tapanilannuta  puh. 0403348102",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "koruaskartelua Tapanilan nuorisotalolla",
                "sv": "smyckespyssel på Mosabacka ungdomsgård",
                "en": "jewellery crafts at Tapanila Youth Centre"
            },
            "description": {
                "fi": "<p>Haluaisitko oma tekemän rannekorun, kaulakorun tai vaikkapa nilkkakorun? Tule tekemään uniikki koru nutalle. Luvassa on paljon monenlaisia helmiä kuten aakkosia, eläimiä, hedelmiä, noppia ja erikoisia helmiä. &nbsp;</p>",
                "sv": "<p>Vill du ha ett armband, halsband eller ett vristsmycke som du har lagat själv? Kom och laga ett unikt smycke till ungdomsgården. Ett brett utbud av pärlor utlovas, inklusive bokstäver, djur, frukter, tärningar och specialpärlor. &nbsp;</p>",
                "en": "<p>Would you like to make your own bracelet, necklace or even an anklet? Come and make unique jewellery at the youth centre. There are many different kinds of pearls, such as the alphabet, animals, fruits, dices and peculiar pearls. &nbsp;</p>"
            },
            "provider": {
                "fi": "Tapanilan nuorisotalo",
                "sv": "Mosabacka ungdomsgård",
                "en": "Tapanila Youth Centre"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghwevdwzu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxnyw6ii",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:64364/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": {
                "@id": "http://api.hel.fi/linkedevents/v1/registration/318/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "sv": "https://linkedregistration.hel.fi/sv/registration/318/signup-group/create"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804003020",
            "sub_events": [],
            "images": [
                {
                    "id": 138980,
                    "license": "event_only",
                    "created_time": "2024-05-08T08:21:52.055945Z",
                    "last_modified_time": "2024-05-08T08:25:27.706537Z",
                    "name": "Lapsi tekee voltin trampoliinilla",
                    "url": "http://api.hel.fi/linkedevents/media/images/benmoses-m-pMpEqh8v7qE-unsplash_OgZv8vC.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "BenMoses M on Unsplash",
                    "alt_text": "Lapsi tekee voltin trampoliinilla.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804003020",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-05-14T11:35:30.641074Z",
            "last_modified_time": "2024-05-14T11:38:14.408059Z",
            "date_published": null,
            "start_time": "2024-06-05T13:00:00Z",
            "end_time": "2024-06-05T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 15,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-05-15T12:00:00+03:00",
            "enrolment_end_time": "2024-05-24T23:59:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "sv": "Kom med på en gratis utflykt till Duudsonit activity park!"
            },
            "provider_contact_info": null,
            "info_url": {
                "sv": ""
            },
            "location_extra_info": {
                "sv": "Vi träffas direkt på Duudsonit activity park (Iso Omena)"
            },
            "name": {
                "sv": "Odes sommarutflykt"
            },
            "description": {
                "sv": "<p>Odes ungdomsrum ordnar en gratis utflykt till Duudsonit activity park för ungdomar i åldern 13-17.</p><p>Kom med och utmana dig själv i olika aktiviteter och lekar!</p><p>&nbsp;</p><p>Anmäl dig här: <a href=\"https://linkedregistration.hel.fi/fi/registration/318/signup-group/create\">https://linkedregistration.hel.fi/fi/registration/318/signup-group/create</a></p><p>&nbsp;</p><p>Ifall du har frågor kan du kontakta:</p><p>ungdomsledare Lotta Puisto, 040612489</p><p>ungdomsledare Madelen Ahlfors 0401870648</p>"
            },
            "provider": {
                "sv": "Helsingfors svenska ungdomsarbetsenhet"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxnyw6ii/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghwgb3uha",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:73548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15521/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/bolearena/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.tiketti.fi/yngwie-malmsteen-bole-arena-club-helsinki-lippuja/96934",
                        "en": "https://www.tiketti.fi/yngwie-malmsteen-bole-arena-club-helsinki-lippuja/96934"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "69€",
                        "en": "69€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 139146,
                    "license": "event_only",
                    "created_time": "2024-05-10T15:01:14.166336Z",
                    "last_modified_time": "2024-05-10T15:03:03.564705Z",
                    "name": "Yngwie.JPG",
                    "url": "http://api.hel.fi/linkedevents/media/images/Yngwie.JPG",
                    "cropping": "140,0,707,566",
                    "photographer_name": "",
                    "alt_text": "Yngwie Malmsteen",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139146/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-10T15:03:04.006731Z",
            "last_modified_time": "2024-05-14T11:34:51.986129Z",
            "date_published": null,
            "start_time": "2024-07-04T15:00:00Z",
            "end_time": "2024-07-04T20:00:00Z",
            "custom_data": null,
            "environmental_certificate": "ISO 14001",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2800,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ruotsalainen kitarataituri Yngwie Malmsteen saapuu Suomeen heinäkuussa yhdessä häntä lämmittelevän Phil Campbell and The Bastard Sons -yhtyeen kanssa.",
                "en": "Swedish guitarist Yngwie Malmsteen will perform in Finland next July.  \n\nSupport: Phil Campbell and The Bastard Sons"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://bolearena.fi/yngwie-malmsteen-4-7-2024/",
                "en": "https://bolearena.fi/yngwie-malmsteen-4-7-2024/"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "Yngwie Malmsteen ",
                "en": "Yngwie Malmsteen"
            },
            "description": {
                "fi": "<p>Ruotsalainen kitarataituri Yngwie Malmsteen saapuu Suomeen heinäkuussa yhdessä häntä lämmittelevän Phil Campbell and The Bastard Sons -yhtyeen kanssa.</p><p>Yngwie Malmsteen on nähty Suomessa viimeksi 2006. Phil Campbell and The Bastard Sons puolestaan esiintyi menestyksekkäästi Helsingissä ja Tampereella syksyllä 2020.</p><p>Yngwie Malmsteenin ura on kestänyt jo runsaat 40 vuotta. Hänellä on takanaan yli 20 albumia, joista viimeisin, “Parabellum”, on vuodelta 2021. Malmsteen aloitti uransa 1980-luvun alussa ja hänet tunnetaan erityisesti omintakeisesta neoklassisesta tyylistään.</p><p>Phil Campbell &amp; The Bastard Sons on walesilainen yhtye, jonka Motörheadin pitkäaikainen kitaristi Phil Campbell perusti vuonna 2016. Yhtye on julkaissut kaksi EP:tä sekä neljä studioalbumia, joista uusimman, “Kings of the Asylum”, vuonna 2023. Kokoonpanossa ovat mukana Phil Campbellin lisäksi hänen poikansa Todd, Dane ja Tyla sekä laulaja Joel Peters. Yhtye soittaa omien kappaleidensa lisäksi Motörheadin ohjelmistoa.</p><p>&nbsp;</p><p>Böle Arena &amp; Club</p><p>4.7.2024</p><p>18.00-23.00</p><p>Liput 69€ Tiketistä, K-18</p>",
                "en": "<p>Swedish guitarist Yngwie Malmsteen will perform in Finland next July. &nbsp;</p><p>Support: Phil Campbell and The Bastard Sons</p><p>&nbsp;</p><p>Yngwie Malmsteen's career has already lasted more than 40 years. He has more than 20 albums behind him, the latest of which, \"Parabellum\", is from 2021. Malmsteen started his career in the early 1980s and is especially known for his distinctive neoclassical style.</p><p>Phil Campbell &amp; The Bastard Sons is a Welsh band formed in 2016 by longtime Motörhead guitarist Phil Campbell. In addition to their own songs, the band plays Motörhead's repertoire.</p><p>&nbsp;</p><p>Böle Arena &amp; Club</p><p>4.7.2024</p><p>18.00-23.00</p><p>Tickets 69€ from Tiketti, age limit 18 yrs</p>"
            },
            "provider": {
                "fi": "BÖLE Arena & Club",
                "en": "BÖLE Arena & Club"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghwgb3uha/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghwepqoru",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8110/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2428/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/tapanilannuta/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804003030",
            "sub_events": [],
            "images": [
                {
                    "id": 139111,
                    "license": "event_only",
                    "created_time": "2024-05-10T11:06:10.548832Z",
                    "last_modified_time": "2024-05-10T11:11:54.590628Z",
                    "name": "singstar.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/singstar.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "Singstar/levyraati Tapanilan nutalla",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804003030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139111/?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/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                }
            ],
            "created_time": "2024-05-10T11:23:05.242403Z",
            "last_modified_time": "2024-05-14T10:59:51.441846Z",
            "date_published": null,
            "start_time": "2024-06-03T16:00:00Z",
            "end_time": "2024-06-03T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 3,
            "enrolment_start_time": "2024-05-13T18:30:00+03:00",
            "enrolment_end_time": "2024-06-03T19:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule kokeilemaan laulutaitojasi karaokessa ja osallistumaan levyraatiin.",
                "sv": "Kom och testa dina sångkunskaper i karaoke och delta i ett skivråd.",
                "en": "Come and try your singing skills at karaoke and take part in a music review panel."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/tapanilan-nuorisotalo/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/mosabacka-ungdomsgard/",
                "en": "https://nuorten.hel.fi/en/youth-centers/tapanila-youth-centre/"
            },
            "location_extra_info": {
                "fi": "tapanilan.nuorisotalo@gmail.com  instagram tapanilannuta  puh. 0403348102",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "singstar/levyraati Tapanilan nuorisotalolla",
                "sv": "singstar/skivråd på Mosabacka ungdomsgård",
                "en": "singstar/music review panel at Tapanila Youth Centre"
            },
            "description": {
                "fi": "<p>Tykkäätkö laulamisesta? Kyllästyttääkö suihkussa laulaminen? Tule nutalle näyttämään taitosi muille ja laulamaan duettoja muiden kanssa. Illan aikana saat myös ehdottaa lempibiisejä muiden kuunneltavaksi levyraadissa.</p>",
                "sv": "<p>Tycker du om att sjunga? Är du trött på att sjunga i duschen? Kom till ungdomsgården för att visa upp dina färdigheter och sjunga duetter med andra. Under kvällen kan du också föreslå dina favoritlåtar för andra att lyssna på i skivrådet.</p>",
                "en": "<p>Do you like singing? Tired of singing in the shower? Welcome to the youth centre to show your skills to others and sing duets with them. During the evening, you can also suggest your favourite songs for others to listen to in the music review panel.</p>"
            },
            "provider": {
                "fi": "Tapanilan nuorisotalo",
                "sv": "Mosabacka ungdomsgård",
                "en": "Tapanila Youth Centre"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghwepqoru/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxfwhvoa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:48904/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10649/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1828/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1630759197750838",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/peterjuhan/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 139239,
                    "license": "cc_by",
                    "created_time": "2024-05-13T16:40:46.866537Z",
                    "last_modified_time": "2024-05-13T16:46:11.841592Z",
                    "name": "pigfactory32.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/pigfactory32.jpg",
                    "cropping": "402,0,1998,1596",
                    "photographer_name": "Peter Juhan / Petteri Koskinen",
                    "alt_text": "Kuvassa esiintyy tapahtuman tiedot sekä mustavalokoinen valokuva lihaksikkaasta puolialastomasta mieshenkilöstä.",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139239/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-13T16:46:12.350092Z",
            "last_modified_time": "2024-05-14T10:54:49.096886Z",
            "date_published": null,
            "start_time": "2024-06-17T15:00:00Z",
            "end_time": "2024-06-30T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Peter Juhanin kolmas valokuvanäyttely Pig Factory on esillä Kalleriassa kesäkuussa.",
                "en": "The photo exhibition Pig Factory by Peter Juhan is on display at Gallery Kalleria in June."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.hottouchco.com/pig-factory",
                "en": "https://www.hottouchco.com/pig-factory"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "Peter Juhan: Pig Factory",
                "en": "Peter Juhan: Pig Factory"
            },
            "description": {
                "fi": "<p>Peter Juhanin kolmas valokuvanäyttely Pig Factory on esillä Kalleriassa kesäkuussa.</p><p>Peter Juhanin kolmas soolonäyttely Pig Factory tarjoaa puhdasta maskuliinista kauneutta sekä voiman, kontrollin ja eläimellisen miehen fysiikan palvontaa.</p><p>&nbsp;</p><p>Kalleria</p><p>17.-30.6.2024</p><p>Vapaa pääsy, K-18</p>",
                "en": "<p>The photo exhibition Pig Factory by Peter Juhan is on display at Gallery Kalleria in June.</p><p>The third solo exhibition by Peter Juhan is offering pure masculine beauty and worship towards animalistic male physics, power and control.</p><p>&nbsp;</p><p>Kalleria</p><p>17.-30.6.2024</p><p>Free entry, age limit 18 yrs</p>"
            },
            "provider": {
                "fi": "Peter Juhan",
                "en": "Peter Juhan"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxfwhvoa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghvqyt5yy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:10742/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12078/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14049/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p143/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": {
                "@id": "http://api.hel.fi/linkedevents/v1/registration/309/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/bengtsarin.leirisaari/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://linkedregistration.hel.fi/fi/registration/309/signup-group/create",
                        "sv": "https://linkedregistration.hel.fi/sv/registration/309/signup-group/create",
                        "en": "https://linkedregistration.hel.fi/en/registration/309/signup-group/create"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "20€",
                        "sv": "20€",
                        "en": "20€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040030",
            "sub_events": [],
            "images": [
                {
                    "id": 139131,
                    "license": "event_only",
                    "created_time": "2024-05-10T12:32:21.876583Z",
                    "last_modified_time": "2024-05-14T10:53:46.083807Z",
                    "name": "Uintia Bengtsåressa",
                    "url": "http://api.hel.fi/linkedevents/media/images/Uintia_Benkussa.jpg",
                    "cropping": "171,0,852,681",
                    "photographer_name": "",
                    "alt_text": "Kuvassa nuoria uimassa merellä.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139131/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-05-08T13:26:40.852062Z",
            "last_modified_time": "2024-05-14T10:53:46.471709Z",
            "date_published": null,
            "start_time": "2024-06-10T06:00:00Z",
            "end_time": "2024-06-14T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 12,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 16,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-05-08T16:00:00+03:00",
            "enrolment_end_time": "2024-06-04T16:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Melontaa, pulmapelejä, seikkailua sekä hyvää ruokaa ja nuotiotulia Bengtsårin leirisaarella Hangossa.",
                "sv": "Paddling, knip och knutspel, äventyr, god mat och lägereld på Bengtsår lägerö i Hangö.",
                "en": "Canoeing, puzzle games, adventure and good food and campfire on Bengtsår camping island in Hanko."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/bengtsarin-leirisaari/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/bengtsars-lagergard/",
                "en": "https://nuorten.hel.fi/en/youth-centers/bengtsar-camping-island/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Seikkailuleiri",
                "sv": "Äventyrsläger",
                "en": "Adventure Camp"
            },
            "description": {
                "fi": "<p>Melontaa, pulmapelejä, seikkailua sekä hyvää ruokaa ja nuotiotulia Bengtsårin leirisaarella Hangossa 10.–14.6.</p><p>Neljän yön mittainen seikkailuleiri 12–17- vuotiaille nuorille vain 20e/hlö sisältäen telttamajoitukset, matkakulut, kuljetuksen Bengtsårin leirisaareen, ruokailut ja ohjelman.</p><p>Leirille on ennakkoilmoittautuminen. Ilmoittauduthan ajoissa, kurssille otetaan rajallinen määrä osallistujia.</p><p><strong>Lisätietoja:</strong><br>Timo Haaksluoto&nbsp;<br>040 5126 623<br>seikkailutalo@hel.fi</p>",
                "sv": "<p>Paddling, knip och knutspel, äventyr, god mat och lägereld på Bengtsår lägerö i Hangö 10–14.6.</p><p>Ett fyra nätters äventyrsläger för 12–17-åringar för endast 20e/person inklusive tältboende, resekostnader, transport till Bengtsår lägerö, måltider och program.</p><p>Förhandsanmälan krävs för verksamheten. Anmäl dig i god tid, eftersom antalet platser är begränsat.</p><p>&nbsp;</p><p><strong>Mer information:</strong><br>Timo Haaksluoto<br>040 5126 623<br>seikkailutalo@hel.fi</p>",
                "en": "<p>Canoeing, puzzle games, adventure, good food and campfire on the Bengtsår camping island in Hanko 10-14 June.</p><p>A four-night adventure camp for young people aged 12-17 years with only EUR 20/person, including tent accommodation, travel expenses, transportation to Bengtsår camping island, meals and programme.</p><p>There is advance registration for the course. Please register in time, as a limited number of participants will be accepted into the course.</p><p><strong>More information:</strong><br>Timo Haaksluoto<br>040 5126 623<br>seikkailutalo@hel.fi</p>"
            },
            "provider": {
                "fi": "Ympäristötoiminnan nuorisotyöyksikkö",
                "sv": "Miljöungdomsgård för ungdomar",
                "en": "Environmental Action Youth Work Unit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqyt5yy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghvqqgmjq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:73553/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14139/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": {
                "@id": "http://api.hel.fi/linkedevents/v1/registration/313/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/saarigalleria/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "https://linkedregistration.hel.fi/fi/registration/313/signup-group/create",
                        "sv": "https://linkedregistration.hel.fi/sv/registration/313/signup-group/create",
                        "en": "https://linkedregistration.hel.fi/en/registration/313/signup-group/create"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040030",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqghoi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqgi34/?format=api"
                }
            ],
            "images": [
                {
                    "id": 139122,
                    "license": "cc_by",
                    "created_time": "2024-05-10T11:49:07.590647Z",
                    "last_modified_time": "2024-05-10T11:49:34.557219Z",
                    "name": "Puukiipeilyä",
                    "url": "http://api.hel.fi/linkedevents/media/images/Puukiipeily.jpg",
                    "cropping": "306,0,1537,1232",
                    "photographer_name": "",
                    "alt_text": "Kuvassa nuori kiipeämässä puuta.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139122/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-05-08T12:49:52.724975Z",
            "last_modified_time": "2024-05-14T10:51:06.763741Z",
            "date_published": null,
            "start_time": "2024-06-19T12:00:00Z",
            "end_time": "2024-07-03T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 12,
            "audience_max_age": 25,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": 15,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-05-08T16:00:00+03:00",
            "enrolment_end_time": "2024-07-02T16:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Seikkailua, kiipeilyä ja pulmapelejä Saarigalleriassa!",
                "sv": "Äventyr, klättring och knip och knutspel i Saarigalleriet!",
                "en": "Adventure, climbing and puzzle games in Saarigalleria!"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/nuorten-saarigalleria/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/de-ungas-ogalleri/",
                "en": "https://nuorten.hel.fi/en/youth-centers/youth-island-gallery/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Puukiipeilyä ja pulmapelejä",
                "sv": "Klättring i träd och knip och knutspel",
                "en": "Wood climbing and puzzle games"
            },
            "description": {
                "fi": "<p>Saarigallerian puukiipeily- ja pulmapelipajassa pääset kokeilemaan puukiipeilyä kahvilan viereiseen korkeaan mäntyyn, sekä ratkaisemaan erilaisia pulmapelejämme. Työpaja on avoin kaikille, etukäteiskokemusta tai harrastuneisuutta ei tarvita. Ota mukaasi hieman kulumista kestävät vaatteet, vesipullo ja hyvä fiilis.</p><p>Lähtö Vartiosaaren laiturilta klo 14.40.</p><p>Toimintaan on ennakkoilmoittautuminen. Ilmoittauduthan ajoissa, kurssille otetaan rajallinen määrä osallistujia.</p><p><strong>Lisätietoja työpajasta:</strong>&nbsp;<br>Sampsa Vähä-Karvia 040 3347 209 (19.6.)&nbsp;<br>Timo Haaksluoto 040 5126 623 (3.7.)</p>",
                "sv": "<p>I Saarigallerias trädklättrings- och knip och knutspelworkshop får du pröva på att klättra i den höga tallen invid kaféet och lösa våra olika knip och knutspel. Workshoppen är öppen för alla, inga förhandskunskaper eller tidigare intresse krävs. Ta med slitstarka kläder, en vattenflaska och gott humör.</p><p>Avfärd från Vårdö brygga kl. 14.40.</p><p>Förhandsanmälan krävs för verksamheten. Anmäl dig i god tid, eftersom antalet platser är begränsat.</p><p><strong>Mer information om workshoppen:&nbsp;</strong><br>Sampsa Vähä-Karvia 040 3347 209 (19.6.)&nbsp;<br>Timo Haaksluoto 040 5126 623 (3.7.)</p>",
                "en": "<p>In Saarigalleria’s wood climbing and puzzle game workshop, you can try tree climbing on the tall pine next to the café, as well as solve our various puzzle games. The workshop is open to everyone, and previous experience is required. Bring some wear-resistant clothing, a water bottle and a good mood with you.</p><p>Departure from the Vartiosaari pier at 2.40 pm.</p><p>There is advance registration for the course. Please register in time, as a limited number of participants will be accepted into the course.</p><p><strong>For more information about the workshop:</strong> Sampsa Vähä-Karvia, +358 40 3347 209 (19 June) Timo Haaksluoto +358 40 5126 623 (3 July)</p>"
            },
            "provider": {
                "fi": "Ympäristötoiminnan nuorisotyöyksikkö",
                "sv": "Miljöungdomsgård för ungdomar",
                "en": "Environmental Action Youth Work Unit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqgmjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghvqqgi34",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:73553/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14139/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqgmjq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/saarigalleria/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "https://linkedregistration.hel.fi/fi/registration/313/signup-group/create",
                        "sv": "https://linkedregistration.hel.fi/sv/registration/313/signup-group/create",
                        "en": "https://linkedregistration.hel.fi/en/registration/313/signup-group/create"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040030",
            "sub_events": [],
            "images": [
                {
                    "id": 139122,
                    "license": "cc_by",
                    "created_time": "2024-05-10T11:49:07.590647Z",
                    "last_modified_time": "2024-05-10T11:49:34.557219Z",
                    "name": "Puukiipeilyä",
                    "url": "http://api.hel.fi/linkedevents/media/images/Puukiipeily.jpg",
                    "cropping": "306,0,1537,1232",
                    "photographer_name": "",
                    "alt_text": "Kuvassa nuori kiipeämässä puuta.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139122/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-05-08T12:49:51.847818Z",
            "last_modified_time": "2024-05-14T10:51:05.766355Z",
            "date_published": null,
            "start_time": "2024-07-03T12:00:00Z",
            "end_time": "2024-07-03T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 12,
            "audience_max_age": 25,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 15,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-05-08T16:00:00+03:00",
            "enrolment_end_time": "2024-07-02T16:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Seikkailua, kiipeilyä ja pulmapelejä Saarigalleriassa!",
                "sv": "Äventyr, klättring och knip och knutspel i Saarigalleriet!",
                "en": "Adventure, climbing and puzzle games in Saarigalleria!"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/nuorten-saarigalleria/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/de-ungas-ogalleri/",
                "en": "https://nuorten.hel.fi/en/youth-centers/youth-island-gallery/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Puukiipeilyä ja pulmapelejä",
                "sv": "Klättring i träd och knip och knutspel",
                "en": "Wood climbing and puzzle games"
            },
            "description": {
                "fi": "<p>Saarigallerian puukiipeily- ja pulmapelipajassa pääset kokeilemaan puukiipeilyä kahvilan viereiseen korkeaan mäntyyn, sekä ratkaisemaan erilaisia pulmapelejämme. Työpaja on avoin kaikille, etukäteiskokemusta tai harrastuneisuutta ei tarvita. Ota mukaasi hieman kulumista kestävät vaatteet, vesipullo ja hyvä fiilis.</p><p>Lähtö Vartiosaaren laiturilta klo 14.40.</p><p>Toimintaan on ennakkoilmoittautuminen. Ilmoittauduthan ajoissa, kurssille otetaan rajallinen määrä osallistujia.</p><p><strong>Lisätietoja työpajasta:</strong>&nbsp;<br>Sampsa Vähä-Karvia 040 3347 209 (19.6.)&nbsp;<br>Timo Haaksluoto 040 5126 623 (3.7.)</p>",
                "sv": "<p>I Saarigallerias trädklättrings- och knip och knutspelworkshop får du pröva på att klättra i den höga tallen invid kaféet och lösa våra olika knip och knutspel. Workshoppen är öppen för alla, inga förhandskunskaper eller tidigare intresse krävs. Ta med slitstarka kläder, en vattenflaska och gott humör.</p><p>Avfärd från Vårdö brygga kl. 14.40.</p><p>Förhandsanmälan krävs för verksamheten. Anmäl dig i god tid, eftersom antalet platser är begränsat.</p><p><strong>Mer information om workshoppen:&nbsp;</strong><br>Sampsa Vähä-Karvia 040 3347 209 (19.6.)&nbsp;<br>Timo Haaksluoto 040 5126 623 (3.7.)</p>",
                "en": "<p>In Saarigalleria’s wood climbing and puzzle game workshop, you can try tree climbing on the tall pine next to the café, as well as solve our various puzzle games. The workshop is open to everyone, and previous experience is required. Bring some wear-resistant clothing, a water bottle and a good mood with you.</p><p>Departure from the Vartiosaari pier at 2.40 pm.</p><p>There is advance registration for the course. Please register in time, as a limited number of participants will be accepted into the course.</p><p><strong>For more information about the workshop:</strong> Sampsa Vähä-Karvia, +358 40 3347 209 (19 June) Timo Haaksluoto +358 40 5126 623 (3 July)</p>"
            },
            "provider": {
                "fi": "Ympäristötoiminnan nuorisotyöyksikkö",
                "sv": "Miljöungdomsgård för ungdomar",
                "en": "Environmental Action Youth Work Unit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqgi34/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghvqqghoi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:73553/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14139/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": {
                "@id": "http://api.hel.fi/linkedevents/v1/registration/303/?format=api"
            },
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqgmjq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/saarigalleria/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "https://linkedregistration.hel.fi/fi/registration/313/signup-group/create",
                        "sv": "https://linkedregistration.hel.fi/sv/registration/313/signup-group/create",
                        "en": "https://linkedregistration.hel.fi/en/registration/313/signup-group/create"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040030",
            "sub_events": [],
            "images": [
                {
                    "id": 139122,
                    "license": "cc_by",
                    "created_time": "2024-05-10T11:49:07.590647Z",
                    "last_modified_time": "2024-05-10T11:49:34.557219Z",
                    "name": "Puukiipeilyä",
                    "url": "http://api.hel.fi/linkedevents/media/images/Puukiipeily.jpg",
                    "cropping": "306,0,1537,1232",
                    "photographer_name": "",
                    "alt_text": "Kuvassa nuori kiipeämässä puuta.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139122/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-05-08T12:49:51.484063Z",
            "last_modified_time": "2024-05-14T10:51:05.171762Z",
            "date_published": null,
            "start_time": "2024-06-19T12:00:00Z",
            "end_time": "2024-06-19T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 12,
            "audience_max_age": 25,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 15,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-05-08T16:00:00+03:00",
            "enrolment_end_time": "2024-07-02T16:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Seikkailua, kiipeilyä ja pulmapelejä Saarigalleriassa!",
                "sv": "Äventyr, klättring och knip och knutspel i Saarigalleriet!",
                "en": "Adventure, climbing and puzzle games in Saarigalleria!"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/nuorisotalot/nuorten-saarigalleria/",
                "sv": "https://nuorten.hel.fi/sv/ungdomsgardar/de-ungas-ogalleri/",
                "en": "https://nuorten.hel.fi/en/youth-centers/youth-island-gallery/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Puukiipeilyä ja pulmapelejä",
                "sv": "Klättring i träd och knip och knutspel",
                "en": "Wood climbing and puzzle games"
            },
            "description": {
                "fi": "<p>Saarigallerian puukiipeily- ja pulmapelipajassa pääset kokeilemaan puukiipeilyä kahvilan viereiseen korkeaan mäntyyn, sekä ratkaisemaan erilaisia pulmapelejämme. Työpaja on avoin kaikille, etukäteiskokemusta tai harrastuneisuutta ei tarvita. Ota mukaasi hieman kulumista kestävät vaatteet, vesipullo ja hyvä fiilis.</p><p>Lähtö Vartiosaaren laiturilta klo 14.40.</p><p>Toimintaan on ennakkoilmoittautuminen. Ilmoittauduthan ajoissa, kurssille otetaan rajallinen määrä osallistujia.</p><p><strong>Lisätietoja työpajasta:</strong>&nbsp;<br>Sampsa Vähä-Karvia 040 3347 209 (19.6.)&nbsp;<br>Timo Haaksluoto 040 5126 623 (3.7.)</p>",
                "sv": "<p>I Saarigallerias trädklättrings- och knip och knutspelworkshop får du pröva på att klättra i den höga tallen invid kaféet och lösa våra olika knip och knutspel. Workshoppen är öppen för alla, inga förhandskunskaper eller tidigare intresse krävs. Ta med slitstarka kläder, en vattenflaska och gott humör.</p><p>Avfärd från Vårdö brygga kl. 14.40.</p><p>Förhandsanmälan krävs för verksamheten. Anmäl dig i god tid, eftersom antalet platser är begränsat.</p><p><strong>Mer information om workshoppen:&nbsp;</strong><br>Sampsa Vähä-Karvia 040 3347 209 (19.6.)&nbsp;<br>Timo Haaksluoto 040 5126 623 (3.7.)</p>",
                "en": "<p>In Saarigalleria’s wood climbing and puzzle game workshop, you can try tree climbing on the tall pine next to the café, as well as solve our various puzzle games. The workshop is open to everyone, and previous experience is required. Bring some wear-resistant clothing, a water bottle and a good mood with you.</p><p>Departure from the Vartiosaari pier at 2.40 pm.</p><p>There is advance registration for the course. Please register in time, as a limited number of participants will be accepted into the course.</p><p><strong>For more information about the workshop:</strong> Sampsa Vähä-Karvia, +358 40 3347 209 (19 June) Timo Haaksluoto +358 40 5126 623 (3 July)</p>"
            },
            "provider": {
                "fi": "Ympäristötoiminnan nuorisotyöyksikkö",
                "sv": "Miljöungdomsgård för ungdomar",
                "en": "Environmental Action Youth Work Unit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghvqqghoi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxgtd664",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20663/?format=api"
            },
            "keywords": [
                {
                    "@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:p1828/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24765/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggegonl7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/780955120094442",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/peterjuhan/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/dubgloom/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.tiketti.fi/peter-juhan-dubious-gloom-on-the-rocks-helsinki-lippuja/98023",
                        "en": "https://www.tiketti.fi/peter-juhan-dubious-gloom-on-the-rocks-helsinki-lippuja/98023"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "14€ (ovelta 17€)",
                        "en": "14€ (at the door 17€)"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 139245,
                    "license": "cc_by",
                    "created_time": "2024-05-13T18:47:28.187639Z",
                    "last_modified_time": "2024-05-13T18:52:23.668331Z",
                    "name": "pjdg32.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/pjdg32.jpg",
                    "cropping": "402,0,1998,1597",
                    "photographer_name": "Peter Juhan ja Dubious Gloom",
                    "alt_text": "Kuvassa näkyy värikkäät seksikkäät otokset Peteristä ja Dubiouksessa sekä tiedot tapahtumasta.",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-13T18:52:24.201566Z",
            "last_modified_time": "2024-05-14T08:19:54.807404Z",
            "date_published": null,
            "start_time": "2024-06-05T16:00:00Z",
            "end_time": "2024-06-05T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 300,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "LGBTQ+ dancepop -artistien, Peter Juhanin ja Dubious Gloomin kollaboraation ensimmäinen julkinen yhteisesiintyminen On The Rocksissa.",
                "en": "LGBTQ+ dancepop artists', Peter Juhan’s and Dubious Gloom’s first collaborative public performance together at On The Rocks."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.rocks.fi/tapahtumat/peter-juhan-dubious-gloom/",
                "en": "https://www.rocks.fi/tapahtumat/peter-juhan-dubious-gloom/"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "Peter Juhan & Dubious Gloom",
                "en": "Peter Juhan & Dubious Gloom"
            },
            "description": {
                "fi": "<p>LGBTQ+ dancepop -artistien, Peter Juhanin ja Dubious Gloomin kollaboraation ensimmäinen julkinen yhteisesiintyminen On The Rocksissa.</p><p>&nbsp;</p><p>On The Rocks</p><p>5.6.2024</p><p>19.00-22.00</p><p>Liput 14/17€ Tiketistä ja ovelta</p><p>&nbsp;</p><p>Ohjelma:</p><p>Slaya Bit (warmup show) klo 20</p><p>Peter Juhan &amp; Dubious Gloom klo 21</p><p>&nbsp;</p><p>Artistien värikäs musiikillinen ja visuaalinen tyyli operoivat nykypäivän klubi-soundin ja LGTBQ+ kulttuurin leikkauspisteessä. Kokonaisuus täydentyy 80-90 -lukujen tematiikalla sekä kantaaottavilla, seksuaalisilla ja humoristisilla lyriikoilla. Kaksikon yhteistyö sai alkunsa vuoden 2023 kesällä.</p><p>Peter Juhan on helsinkiläinen pop-artisti, DJ, fetissivalokuvaaja ja tapahtumajärjestäjä, joka on vuodesta 2018 vakiinnuttanut paikkansa Suomen LGBTQ+ alakulttuurien tärkeänä vaikuttajana.&nbsp;</p><p>&nbsp;</p><p>Dubious Gloom on helsinkiläinen elektronisen musiikin artisti, tuottaja, DJ ja visuaalinen suunnittelija. Kolmen täyspitkän albumin lisäksi hänen katalogistaan löytyy useampia EP- ja sinkkujulkaisuja.</p><p>Tapahtuma on osana Helsinki Priden virallista ohjelmaa.</p>",
                "en": "<p>LGBTQ+ dancepop artists', Peter Juhan’s and Dubious Gloom’s first collaborative public performance together at On The Rocks.</p><p>&nbsp;</p><p>On The Rocks</p><p>1.6.2024</p><p>19.00-22.00</p><p>Tickets 14/17€ from Tiketti and at the entrance</p><p>&nbsp;</p><p>Program:</p><p>Slaya Bit (warmup show) at 20.00</p><p>Peter Juhan &amp; Dubious Gloom at 21.00</p><p>&nbsp;</p><p>The artists' colorful musical and visual style operates at the intersection of today's club sound and LGTBQ+ culture. The set is completed with themes from the 80s and 90s with opinionated, sexual and humorous lyrics. The duo's collaboration began in the summer of 2023.</p><p>&nbsp;</p><p>Peter Juhan is a pop artist, DJ, fetish photographer and event organizer from Helsinki, who since 2018 has established himself as an important influencer of Finnish LGBTQ+ subcultures.&nbsp;</p><p>Dubious Gloom is an electronic music artist, producer, DJ and visual designer from Helsinki. In addition to three full-length albums, his catalog includes several EP and single releases.</p><p>&nbsp;</p><p>Event is part of Helsinki Pride’s official program.</p>"
            },
            "provider": {
                "fi": "Peter Juhan ja Dubious Gloom",
                "en": "Peter Juhan and Dubious Gloom"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxgtd664/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxed757a",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7993/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2758/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4295/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed7wu4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed7y24/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed72eq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 139225,
                    "license": "event_only",
                    "created_time": "2024-05-13T12:59:28.057786Z",
                    "last_modified_time": "2024-05-13T13:06:39.281633Z",
                    "name": "rope Pixabay.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/rope_Pixabay.jpg",
                    "cropping": "290,0,1441,1152",
                    "photographer_name": "adriano7492 / pixabay.com",
                    "alt_text": "Picture with lots of different die.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139225/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-05-13T13:06:41.796957Z",
            "last_modified_time": "2024-05-14T07:34:21.018474Z",
            "date_published": null,
            "start_time": "2024-06-07T14:00:00Z",
            "end_time": "2024-07-05T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 16,
            "audience_max_age": 25,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pelaillaan rennosti yhdessä lauta- ja roolipelejä. ",
                "sv": "Spela brädspel och rollspel tillsammans i en avslappnad atmosfär. ",
                "en": "Let’s play board and role-playing games in a relaxed atmosphere. "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/tekemista-ja-paikkoja/roolipelitoiminta/",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Rooli- ja lautapelejä Lauttasaaressa",
                "sv": "Rollspel och brädspel på Drumsö",
                "en": "Role playing and board games in Lauttasaari"
            },
            "description": {
                "fi": "<p>Lauta- ja roolipelitoiminta on tarkoitettu 16-25-vuotiaille nuorille. Pelikerroille on ennakkoilmoittautuminen emilia.mantyoja@hel.fi. Toiminta on niin aloittelijoille kuin konkareillekin. Pelaamme lauta- ja roolipelejä riippuen pelikerrasta, vastuuohjaaja ilmoittaa tarkemmin tästä ilmoittautumisen yhteydessä. Voit myös tulla vetämään roolipeliä tai tuoda paikalle oman lautapelin! Toiminta on sateenkaariystävällistä.</p>",
                "sv": "<p>Bräd- och rollspelsverksamheten är för unga i åldern 16–25 år. Förhandsanmäl dig till träffarna till emilia.mantyoja@hel.fi. Verksamheten är för både nybörjare och experter. Vi spelar brädspel och rollspel under de olika träffarna, den ansvariga handledaren ger närmare information om detta när du anmäler dig. Du kan också komma och leda ett rollspel eller ta med ett eget brädspel! Verksamheten är regnbågsvänlig.</p>",
                "en": "<p>Board and role-playing game activities are intended for young people between the ages of 16 to 25 years. Signing up for the game sessions at emilia.mantyoja@hel.fi. The activities are intended for beginners as well as the more experienced players. We play board games and role-playing games depending on the play session - the responsible instructor will inform which game we will play in more detail when signing up. You can also be a DM and bring your own role-playing game or bring your own board game! The activity is LGBTQ+-friendly.</p>"
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed757a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxed72eq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7993/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2758/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4295/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed757a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 139225,
                    "license": "event_only",
                    "created_time": "2024-05-13T12:59:28.057786Z",
                    "last_modified_time": "2024-05-13T13:06:39.281633Z",
                    "name": "rope Pixabay.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/rope_Pixabay.jpg",
                    "cropping": "290,0,1441,1152",
                    "photographer_name": "adriano7492 / pixabay.com",
                    "alt_text": "Picture with lots of different die.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139225/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-05-13T13:06:40.813668Z",
            "last_modified_time": "2024-05-14T07:34:19.998851Z",
            "date_published": null,
            "start_time": "2024-07-05T14:00:00Z",
            "end_time": "2024-07-05T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 16,
            "audience_max_age": 25,
            "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,
            "short_description": {
                "fi": "Pelaillaan rennosti yhdessä lauta- ja roolipelejä. ",
                "sv": "Spela brädspel och rollspel tillsammans i en avslappnad atmosfär. ",
                "en": "Let’s play board and role-playing games in a relaxed atmosphere. "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/tekemista-ja-paikkoja/roolipelitoiminta/",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Rooli- ja lautapelejä Lauttasaaressa",
                "sv": "Rollspel och brädspel på Drumsö",
                "en": "Role playing and board games in Lauttasaari"
            },
            "description": {
                "fi": "<p>Lauta- ja roolipelitoiminta on tarkoitettu 16-25-vuotiaille nuorille. Pelikerroille on ennakkoilmoittautuminen emilia.mantyoja@hel.fi. Toiminta on niin aloittelijoille kuin konkareillekin. Pelaamme lauta- ja roolipelejä riippuen pelikerrasta, vastuuohjaaja ilmoittaa tarkemmin tästä ilmoittautumisen yhteydessä. Voit myös tulla vetämään roolipeliä tai tuoda paikalle oman lautapelin! Toiminta on sateenkaariystävällistä.</p>",
                "sv": "<p>Bräd- och rollspelsverksamheten är för unga i åldern 16–25 år. Förhandsanmäl dig till träffarna till emilia.mantyoja@hel.fi. Verksamheten är för både nybörjare och experter. Vi spelar brädspel och rollspel under de olika träffarna, den ansvariga handledaren ger närmare information om detta när du anmäler dig. Du kan också komma och leda ett rollspel eller ta med ett eget brädspel! Verksamheten är regnbågsvänlig.</p>",
                "en": "<p>Board and role-playing game activities are intended for young people between the ages of 16 to 25 years. Signing up for the game sessions at emilia.mantyoja@hel.fi. The activities are intended for beginners as well as the more experienced players. We play board games and role-playing games depending on the play session - the responsible instructor will inform which game we will play in more detail when signing up. You can also be a DM and bring your own role-playing game or bring your own board game! The activity is LGBTQ+-friendly.</p>"
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed72eq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxed7y24",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7993/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2758/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4295/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed757a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 139225,
                    "license": "event_only",
                    "created_time": "2024-05-13T12:59:28.057786Z",
                    "last_modified_time": "2024-05-13T13:06:39.281633Z",
                    "name": "rope Pixabay.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/rope_Pixabay.jpg",
                    "cropping": "290,0,1441,1152",
                    "photographer_name": "adriano7492 / pixabay.com",
                    "alt_text": "Picture with lots of different die.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139225/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-05-13T13:06:40.480117Z",
            "last_modified_time": "2024-05-14T07:34:19.618716Z",
            "date_published": null,
            "start_time": "2024-06-14T14:00:00Z",
            "end_time": "2024-06-14T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 16,
            "audience_max_age": 25,
            "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,
            "short_description": {
                "fi": "Pelaillaan rennosti yhdessä lauta- ja roolipelejä. ",
                "sv": "Spela brädspel och rollspel tillsammans i en avslappnad atmosfär. ",
                "en": "Let’s play board and role-playing games in a relaxed atmosphere. "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/tekemista-ja-paikkoja/roolipelitoiminta/",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Rooli- ja lautapelejä Lauttasaaressa",
                "sv": "Rollspel och brädspel på Drumsö",
                "en": "Role playing and board games in Lauttasaari"
            },
            "description": {
                "fi": "<p>Lauta- ja roolipelitoiminta on tarkoitettu 16-25-vuotiaille nuorille. Pelikerroille on ennakkoilmoittautuminen emilia.mantyoja@hel.fi. Toiminta on niin aloittelijoille kuin konkareillekin. Pelaamme lauta- ja roolipelejä riippuen pelikerrasta, vastuuohjaaja ilmoittaa tarkemmin tästä ilmoittautumisen yhteydessä. Voit myös tulla vetämään roolipeliä tai tuoda paikalle oman lautapelin! Toiminta on sateenkaariystävällistä.</p>",
                "sv": "<p>Bräd- och rollspelsverksamheten är för unga i åldern 16–25 år. Förhandsanmäl dig till träffarna till emilia.mantyoja@hel.fi. Verksamheten är för både nybörjare och experter. Vi spelar brädspel och rollspel under de olika träffarna, den ansvariga handledaren ger närmare information om detta när du anmäler dig. Du kan också komma och leda ett rollspel eller ta med ett eget brädspel! Verksamheten är regnbågsvänlig.</p>",
                "en": "<p>Board and role-playing game activities are intended for young people between the ages of 16 to 25 years. Signing up for the game sessions at emilia.mantyoja@hel.fi. The activities are intended for beginners as well as the more experienced players. We play board games and role-playing games depending on the play session - the responsible instructor will inform which game we will play in more detail when signing up. You can also be a DM and bring your own role-playing game or bring your own board game! The activity is LGBTQ+-friendly.</p>"
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed7y24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxed7wu4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7993/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2758/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4295/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed757a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 139225,
                    "license": "event_only",
                    "created_time": "2024-05-13T12:59:28.057786Z",
                    "last_modified_time": "2024-05-13T13:06:39.281633Z",
                    "name": "rope Pixabay.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/rope_Pixabay.jpg",
                    "cropping": "290,0,1441,1152",
                    "photographer_name": "adriano7492 / pixabay.com",
                    "alt_text": "Picture with lots of different die.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139225/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-05-13T13:06:39.921669Z",
            "last_modified_time": "2024-05-14T07:34:19.206678Z",
            "date_published": null,
            "start_time": "2024-06-07T14:00:00Z",
            "end_time": "2024-06-07T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 16,
            "audience_max_age": 25,
            "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,
            "short_description": {
                "fi": "Pelaillaan rennosti yhdessä lauta- ja roolipelejä. ",
                "sv": "Spela brädspel och rollspel tillsammans i en avslappnad atmosfär. ",
                "en": "Let’s play board and role-playing games in a relaxed atmosphere. "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/tekemista-ja-paikkoja/roolipelitoiminta/",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Rooli- ja lautapelejä Lauttasaaressa",
                "sv": "Rollspel och brädspel på Drumsö",
                "en": "Role playing and board games in Lauttasaari"
            },
            "description": {
                "fi": "<p>Lauta- ja roolipelitoiminta on tarkoitettu 16-25-vuotiaille nuorille. Pelikerroille on ennakkoilmoittautuminen emilia.mantyoja@hel.fi. Toiminta on niin aloittelijoille kuin konkareillekin. Pelaamme lauta- ja roolipelejä riippuen pelikerrasta, vastuuohjaaja ilmoittaa tarkemmin tästä ilmoittautumisen yhteydessä. Voit myös tulla vetämään roolipeliä tai tuoda paikalle oman lautapelin! Toiminta on sateenkaariystävällistä.</p>",
                "sv": "<p>Bräd- och rollspelsverksamheten är för unga i åldern 16–25 år. Förhandsanmäl dig till träffarna till emilia.mantyoja@hel.fi. Verksamheten är för både nybörjare och experter. Vi spelar brädspel och rollspel under de olika träffarna, den ansvariga handledaren ger närmare information om detta när du anmäler dig. Du kan också komma och leda ett rollspel eller ta med ett eget brädspel! Verksamheten är regnbågsvänlig.</p>",
                "en": "<p>Board and role-playing game activities are intended for young people between the ages of 16 to 25 years. Signing up for the game sessions at emilia.mantyoja@hel.fi. The activities are intended for beginners as well as the more experienced players. We play board games and role-playing games depending on the play session - the responsible instructor will inform which game we will play in more detail when signing up. You can also be a DM and bring your own role-playing game or bring your own board game! The activity is LGBTQ+-friendly.</p>"
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxed7wu4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxd6ikxu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7993/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd6idhq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd6ifoy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd6ig34/?format=api"
                }
            ],
            "images": [
                {
                    "id": 139221,
                    "license": "event_only",
                    "created_time": "2024-05-13T12:34:36.375409Z",
                    "last_modified_time": "2024-05-13T12:41:35.192933Z",
                    "name": "sankarit1.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/sankarit1_UNjeV3y.jpg",
                    "cropping": "130,0,652,521",
                    "photographer_name": "",
                    "alt_text": "Two people playing a boardgame.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7179/?format=api"
                }
            ],
            "created_time": "2024-05-13T12:41:37.744781Z",
            "last_modified_time": "2024-05-14T07:08:20.465892Z",
            "date_published": null,
            "start_time": "2024-06-03T14:00:00Z",
            "end_time": "2024-06-17T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 16,
            "audience_max_age": 29,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sankarit kesätoiminnassa järjestetään retkiä ja kauden päättävä kesäjuhla Lauttasaaressa.",
                "sv": "Hjältar-verksamhetens sommar- och utflyktsaktiviteter",
                "en": "Sankarit summer activities organise excursions and a summer party ending the season in Lauttasaari."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://nuorten.hel.fi/sankarit",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Sankarit-toiminnan kesä- ja retkitoimintaa",
                "sv": "Hjältar-verksamhetens sommar- och utflyktsaktiviteter",
                "en": "Summer and excursion activities of Sankarit "
            },
            "description": {
                "fi": "<p>Sankarit-toiminta on eri tavoin vammaisille 16-29 vuotiaille sunnattua nuorisotalo- retki- sekä harrastustoimintaa. Kesällä Sankarit viettävät yhdessä aikaa Suomenlinnan piknik-retkellä, käyvät tutustumassa kulttuuri-ja museotarjontaan sekä juhlivat kauden päätöstä Lauttasaaren nuorisotalolla grillaten ja yhteistä aikaa viettäen. Ilmoittautuminen sähköpostiin: sankarit@hel.fi</p>",
                "sv": "<p>Hjältar-verksamheten är verksamhet vid ungdomsgårdarna, utflykter och hobbyaktiviteter för personer med olika funktionsnedsättningar i åldern 16–29 år. Under sommaren tillbringar Hjältarna tid tillsammans på en picknickutflykt i Sveaborg, besöker kultur- och museiutbudet och firar slutet av säsongen på Drumsö ungdomsgård med en grillfest och samvaro. Anmälning per e-post till: sankarit@hel.fi</p>",
                "en": "<p>Sankarit activities comprise youth centre, excursion and recreational activities for disabled young people aged 16-29 years. In the summer, Sankarit spend time together on a picnic trip to Suomenlinna, enjoy cultural and museum visits and celebrate the end of the season by barbecuing and spending time together at Lauttasaari Youth Centre. Registration by email to sankarit@hel.fi</p>"
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd6ikxu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghxd6ig34",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7993/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd6ikxu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 139221,
                    "license": "event_only",
                    "created_time": "2024-05-13T12:34:36.375409Z",
                    "last_modified_time": "2024-05-13T12:41:35.192933Z",
                    "name": "sankarit1.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/sankarit1_UNjeV3y.jpg",
                    "cropping": "130,0,652,521",
                    "photographer_name": "",
                    "alt_text": "Two people playing a boardgame.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/139221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7179/?format=api"
                }
            ],
            "created_time": "2024-05-13T12:41:36.744944Z",
            "last_modified_time": "2024-05-14T07:08:19.195809Z",
            "date_published": null,
            "start_time": "2024-06-17T14:00:00Z",
            "end_time": "2024-06-17T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 16,
            "audience_max_age": 29,
            "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,
            "short_description": {
                "fi": "Sankarit kesätoiminnassa järjestetään retkiä ja kauden päättävä kesäjuhla Lauttasaaressa.",
                "sv": "Hjältar-verksamhetens sommar- och utflyktsaktiviteter",
                "en": "Sankarit summer activities organise excursions and a summer party ending the season in Lauttasaari."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://nuorten.hel.fi/sankarit",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Sankarit-toiminnan kesä- ja retkitoimintaa",
                "sv": "Hjältar-verksamhetens sommar- och utflyktsaktiviteter",
                "en": "Summer and excursion activities of Sankarit "
            },
            "description": {
                "fi": "<p>Sankarit-toiminta on eri tavoin vammaisille 16-29 vuotiaille sunnattua nuorisotalo- retki- sekä harrastustoimintaa. Kesällä Sankarit viettävät yhdessä aikaa Suomenlinnan piknik-retkellä, käyvät tutustumassa kulttuuri-ja museotarjontaan sekä juhlivat kauden päätöstä Lauttasaaren nuorisotalolla grillaten ja yhteistä aikaa viettäen. Ilmoittautuminen sähköpostiin: sankarit@hel.fi</p>",
                "sv": "<p>Hjältar-verksamheten är verksamhet vid ungdomsgårdarna, utflykter och hobbyaktiviteter för personer med olika funktionsnedsättningar i åldern 16–29 år. Under sommaren tillbringar Hjältarna tid tillsammans på en picknickutflykt i Sveaborg, besöker kultur- och museiutbudet och firar slutet av säsongen på Drumsö ungdomsgård med en grillfest och samvaro. Anmälning per e-post till: sankarit@hel.fi</p>",
                "en": "<p>Sankarit activities comprise youth centre, excursion and recreational activities for disabled young people aged 16-29 years. In the summer, Sankarit spend time together on a picnic trip to Suomenlinna, enjoy cultural and museum visits and celebrate the end of the season by barbecuing and spending time together at Lauttasaari Youth Centre. Registration by email to sankarit@hel.fi</p>"
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghxd6ig34/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}