Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helmet

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /linkedevents/v1/event/?format=api&keyword=yso%3Ap4354&page=3
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 67301,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&keyword=yso%3Ap4354&page=4",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&keyword=yso%3Ap4354&page=2"
    },
    "data": [
        {
            "id": "helsinki:aghibfuxwu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8178/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibfvguq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/eiMbPwmZR",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 133909,
                    "license": "cc_by",
                    "created_time": "2024-03-27T16:01:45.747617Z",
                    "last_modified_time": "2024-03-27T16:06:58.827257Z",
                    "name": "Verstaspajassa voit tehdä pientuotteita 3D-printterillä.",
                    "url": "http://api.hel.fi/linkedevents/media/images/Verstaspaja_Kuva_Niko_Sihvonen.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "Niko Sihvonen",
                    "alt_text": "Mieshenkilö seuraa 3D-printterin toimintaa pöydän ääressä.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/133909/?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:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-27T15:45:36.702003Z",
            "last_modified_time": "2024-04-27T10:22:10.939665Z",
            "date_published": null,
            "start_time": "2024-05-14T13:00:00Z",
            "end_time": "2024-05-14T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Tervetuloa Kontulan kirjaston verstaalle tiistaisin klo 16-18 tutustumaan verstaslaitteisiimme ja tekemään erilaisia kädentaitotöitä!</p><p>Käytössäsi on 3D-tulostin, suurkuvatulostin, vinyylileikkuri, ompelukone, lämpöprässi ja hattuprässi.</p><p>Jos haluat tehdä kangaspainatuksia, tuo oma puhdas tekstiilituote, kangaskassi tai t-paita.<br>Jos haluat käyttää ompelukonetta, ota mukaan oma ommeltava projekti.</p><p>Pajan aikana saat ohjausta ja neuvontaa laitteiden käyttöön ja ideoittesi toteuttamiseen.<br>Käytetyistä materiaaleista perimme kirjaston materiaalihinnaston mukaisen (pienen!) maksun.</p><p>Tule yksin, kaverin tai perheen kanssa!</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista.</p>",
                "en": "<p>Welcome to our DIY Workshop on Tuesdays from 16:00 to 18:00 to get to know our workshop equipment and to create various handicrafts!\n<br><br>You can use a 3D printer, a large image printer, a vinyl cutter, a sewing machine, a heat press and a hat press.\n<br><br>If you wish to make fabric prints, please bring your own clean textile product, fabric bag or t-shirt.\n<br>If you wish to use the sewing machine, please bring your own project for that.<br>\n<br>During the workshop, you will receive guidance and advice on using the equipment and realizing your ideas.\n<br><br>For the used materials, we charge a (small!) fee according to the library's material price list.\n<br><br>Come alone, with a friend or family!\n<br><br>Free entry. No pre-registration.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Verstaspaja",
                "en": "DIY Workshop"
            },
            "short_description": {
                "fi": "Verstaspajassa tutustutaan verstaslaitteisiimme ja tehdään erilaisia kädentaitotöitä.",
                "en": "Welcome to our DIY Workshop to get to know our workshop equipment and to create various handicrafts!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibfuxwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghibfuwgy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8178/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibfvguq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/eiMbPwmZR",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 133909,
                    "license": "cc_by",
                    "created_time": "2024-03-27T16:01:45.747617Z",
                    "last_modified_time": "2024-03-27T16:06:58.827257Z",
                    "name": "Verstaspajassa voit tehdä pientuotteita 3D-printterillä.",
                    "url": "http://api.hel.fi/linkedevents/media/images/Verstaspaja_Kuva_Niko_Sihvonen.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "Niko Sihvonen",
                    "alt_text": "Mieshenkilö seuraa 3D-printterin toimintaa pöydän ääressä.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/133909/?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:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-27T15:45:36.320129Z",
            "last_modified_time": "2024-04-27T10:22:10.360664Z",
            "date_published": null,
            "start_time": "2024-05-07T13:00:00Z",
            "end_time": "2024-05-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Tervetuloa Kontulan kirjaston verstaalle tiistaisin klo 16-18 tutustumaan verstaslaitteisiimme ja tekemään erilaisia kädentaitotöitä!</p><p>Käytössäsi on 3D-tulostin, suurkuvatulostin, vinyylileikkuri, ompelukone, lämpöprässi ja hattuprässi.</p><p>Jos haluat tehdä kangaspainatuksia, tuo oma puhdas tekstiilituote, kangaskassi tai t-paita.<br>Jos haluat käyttää ompelukonetta, ota mukaan oma ommeltava projekti.</p><p>Pajan aikana saat ohjausta ja neuvontaa laitteiden käyttöön ja ideoittesi toteuttamiseen.<br>Käytetyistä materiaaleista perimme kirjaston materiaalihinnaston mukaisen (pienen!) maksun.</p><p>Tule yksin, kaverin tai perheen kanssa!</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista.</p>",
                "en": "<p>Welcome to our DIY Workshop on Tuesdays from 16:00 to 18:00 to get to know our workshop equipment and to create various handicrafts!\n<br><br>You can use a 3D printer, a large image printer, a vinyl cutter, a sewing machine, a heat press and a hat press.\n<br><br>If you wish to make fabric prints, please bring your own clean textile product, fabric bag or t-shirt.\n<br>If you wish to use the sewing machine, please bring your own project for that.<br>\n<br>During the workshop, you will receive guidance and advice on using the equipment and realizing your ideas.\n<br><br>For the used materials, we charge a (small!) fee according to the library's material price list.\n<br><br>Come alone, with a friend or family!\n<br><br>Free entry. No pre-registration.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Verstaspaja",
                "en": "DIY Workshop"
            },
            "short_description": {
                "fi": "Verstaspajassa tutustutaan verstaslaitteisiimme ja tehdään erilaisia kädentaitotöitä.",
                "en": "Welcome to our DIY Workshop to get to know our workshop equipment and to create various handicrafts!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibfuwgy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghruafuqi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8325/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafnfq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafpu4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafq6u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138610,
                    "license": "cc_by",
                    "created_time": "2024-04-26T10:38:26.978200Z",
                    "last_modified_time": "2024-04-26T10:43:22.473208Z",
                    "name": "Kierrätysaskartelukerho.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kierr%C3%A4tysaskartelukerho.jpg",
                    "cropping": "256,0,1281,1024",
                    "photographer_name": "",
                    "alt_text": "Kierrätysaskartelukerhon pöytä lastenosastolla.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138610/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-26T10:43:24.943293Z",
            "last_modified_time": "2024-04-26T10:43:24.943319Z",
            "date_published": null,
            "start_time": "2024-05-02T11:30:00Z",
            "end_time": "2024-05-23T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "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,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Kierrätysaskartelukerhossa askartelemme kierrätysmateriaaleista kaikkea kivaa. Mukana on kirjastotyöntekijä. Koululaiset voivat tulla mukaan itsenäisesti, mutta pienemmillä lapsilla on hyvä olla oma aikuinen apunaan.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kierrätysaskartelukerho lapsille"
            },
            "short_description": {
                "fi": "Tervetuloa askartelemaan kirjastotyöntekijän kanssa kierrätysmateriaaleista. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafuqi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghruafq6u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8325/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafuqi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 138610,
                    "license": "cc_by",
                    "created_time": "2024-04-26T10:38:26.978200Z",
                    "last_modified_time": "2024-04-26T10:43:22.473208Z",
                    "name": "Kierrätysaskartelukerho.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kierr%C3%A4tysaskartelukerho.jpg",
                    "cropping": "256,0,1281,1024",
                    "photographer_name": "",
                    "alt_text": "Kierrätysaskartelukerhon pöytä lastenosastolla.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138610/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-26T10:43:24.030440Z",
            "last_modified_time": "2024-04-26T10:43:24.030463Z",
            "date_published": null,
            "start_time": "2024-05-23T11:30:00Z",
            "end_time": "2024-05-23T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Kierrätysaskartelukerhossa askartelemme kierrätysmateriaaleista kaikkea kivaa. Mukana on kirjastotyöntekijä. Koululaiset voivat tulla mukaan itsenäisesti, mutta pienemmillä lapsilla on hyvä olla oma aikuinen apunaan.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kierrätysaskartelukerho lapsille"
            },
            "short_description": {
                "fi": "Tervetuloa askartelemaan kirjastotyöntekijän kanssa kierrätysmateriaaleista. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafq6u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghruafpu4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8325/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafuqi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 138610,
                    "license": "cc_by",
                    "created_time": "2024-04-26T10:38:26.978200Z",
                    "last_modified_time": "2024-04-26T10:43:22.473208Z",
                    "name": "Kierrätysaskartelukerho.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kierr%C3%A4tysaskartelukerho.jpg",
                    "cropping": "256,0,1281,1024",
                    "photographer_name": "",
                    "alt_text": "Kierrätysaskartelukerhon pöytä lastenosastolla.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138610/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-26T10:43:23.696897Z",
            "last_modified_time": "2024-04-26T10:43:23.696920Z",
            "date_published": null,
            "start_time": "2024-05-16T11:30:00Z",
            "end_time": "2024-05-16T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Kierrätysaskartelukerhossa askartelemme kierrätysmateriaaleista kaikkea kivaa. Mukana on kirjastotyöntekijä. Koululaiset voivat tulla mukaan itsenäisesti, mutta pienemmillä lapsilla on hyvä olla oma aikuinen apunaan.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kierrätysaskartelukerho lapsille"
            },
            "short_description": {
                "fi": "Tervetuloa askartelemaan kirjastotyöntekijän kanssa kierrätysmateriaaleista. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafpu4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghruafnfq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8325/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafuqi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 138610,
                    "license": "cc_by",
                    "created_time": "2024-04-26T10:38:26.978200Z",
                    "last_modified_time": "2024-04-26T10:43:22.473208Z",
                    "name": "Kierrätysaskartelukerho.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kierr%C3%A4tysaskartelukerho.jpg",
                    "cropping": "256,0,1281,1024",
                    "photographer_name": "",
                    "alt_text": "Kierrätysaskartelukerhon pöytä lastenosastolla.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138610/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-26T10:43:23.064691Z",
            "last_modified_time": "2024-04-26T10:43:23.064718Z",
            "date_published": null,
            "start_time": "2024-05-02T11:30:00Z",
            "end_time": "2024-05-02T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Kierrätysaskartelukerhossa askartelemme kierrätysmateriaaleista kaikkea kivaa. Mukana on kirjastotyöntekijä. Koululaiset voivat tulla mukaan itsenäisesti, mutta pienemmillä lapsilla on hyvä olla oma aikuinen apunaan.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kierrätysaskartelukerho lapsille"
            },
            "short_description": {
                "fi": "Tervetuloa askartelemaan kirjastotyöntekijän kanssa kierrätysmateriaaleista. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghruafnfq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrt6fjjq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20895/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16575/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "https://www.linnanmaki.fi/fi/rannekkeet-ja-liput/",
                        "en": "https://www.linnanmaki.fi/en/wristbands-and-tickets/"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 79451,
                    "license": "event_only",
                    "created_time": "2022-04-27T10:05:27.117247Z",
                    "last_modified_time": "2024-04-26T10:34:37.324100Z",
                    "name": "Linnanmäki",
                    "url": "http://api.hel.fi/linkedevents/media/images/a1cb0a27-1b08-45be-8106-486.jpg",
                    "cropping": "150,0,1050,900",
                    "photographer_name": "(c) Linnanmäki",
                    "alt_text": "Linnanmäen Rolle-pelle",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/79451/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-26T10:34:37.782190Z",
            "last_modified_time": "2024-04-26T10:34:37.782208Z",
            "date_published": null,
            "start_time": "2024-04-30T10:00:00Z",
            "end_time": "2024-05-01T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.linnanmaki.fi/",
                "en": "http://www.linnanmaki.fi"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Linnanmäen huvipuisto",
                "en": "Linnanmäki Amusement Park"
            },
            "description": {
                "fi": "<p>Haukkaa hattaraa, huvittele laitteissa ja nauti riemukkaasta huvipuistotunnelmasta!</p><p>Lasten Vappu tarjoaa kaikkea kivaa koko perheelle Linnanmäellä.&nbsp;</p><p>Vappuaattona 30.4. juhlistetaan perinteinen Karhupatsaan lakitus klo 18. Iloiset huvipuistohahmot ja vierailevat esiintyjät viihdyttävät koko perhettä sekä vappuaattona että vappupäivänä.&nbsp;</p><p>&nbsp;</p><p>Linnanmäki</p><p>30.4.-1.5.2024</p><p>Ti 13.00-21.00</p><p>Ke 11.00-21.00</p><p>Vapaa pääsy</p>",
                "en": "<p>Take carnival spirit with you and join the cheerful May Carnival at Linnanmäki Amusement Park!</p><p>Linnanmäki offers a lot of fun for the whole family.</p><p>&nbsp;</p><p>Linnanmäki Amusement Park</p><p>30.4.-1.5.2024</p><p>Tue 13.00-21.00</p><p>Wed 11.00-21.00</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lasten Vappu 2024",
                "en": "May Celebration for Children 2024"
            },
            "short_description": {
                "fi": "Haukkaa hattaraa, huvittele laitteissa ja nauti riemukkaasta huvipuistotunnelmasta!",
                "en": "Take carnival spirit with you and join the cheerful May Carnival at Linnanmäki Amusement Park."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrt6fjjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrt4ancu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:33179/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303025",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:5/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-04-26T10:25:13.507161Z",
            "last_modified_time": "2024-04-26T10:25:13.507181Z",
            "date_published": null,
            "start_time": "2024-05-23T10:00:00Z",
            "end_time": "2024-05-23T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Aloitamme Koskelan kirkossa musiikkiesityksellä. Sen jälkeen jatkamme juhlaa ulkona myötätuuli puistossa iloisissa merkeissä.</p><p>Käpynet-verkoston perinteikäs kevättapahtuma.</p><p>Tilaisuus on tarkoitettu eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesä alkaa Koskelasta"
            },
            "short_description": {
                "fi": "Kesä alkaa Koskelasta-tule viettämään mukava kevät iltapäivä nauttien ohjelmasta ja yhdessä olosta!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrt4ancu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbhrpz2q",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71757/?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:p360/?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": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [],
            "images": [
                {
                    "id": 138511,
                    "license": "event_only",
                    "created_time": "2024-04-24T07:39:55.613365Z",
                    "last_modified_time": "2024-04-24T07:40:49.828602Z",
                    "name": "Äitienpäiväkonsertti_11.5.2024.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/%C3%84itienp%C3%A4iv%C3%A4konsertti_11.5.2024.jpg",
                    "cropping": "359,0,1797,1438",
                    "photographer_name": "Stadin yhteisötalot",
                    "alt_text": "Konsertin esiintyjät",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-06T12:38:45.469576Z",
            "last_modified_time": "2024-04-26T07:43:04.341471Z",
            "date_published": null,
            "start_time": "2024-05-11T10:00:00Z",
            "end_time": "2024-05-11T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Leivoskahvikonsertti äideille 11.5. klo 13-14. Konsertin aikana tarjoillaan pullaa, leivoksia ja kahvia.</p><p>“Tervehdimme Sua, Äiti kultainen, kaiken, kaiken hyvän eestä kiittäen.” (Immi Hellén)</p><p>Tuia Palonen &amp; Petri Pöyhönen, laulu</p><p>Veera Railio, piano &amp; viulu</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lauluja äideille -konsertti 11.5. klo 13"
            },
            "short_description": {
                "fi": "Leivoskahvikonsertti äideille 11.5. klo 13-14. Konsertin aikana tarjoillaan pullaa, leivoksia ja kahvia."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbhrpz2q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63479",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138584,
                    "license": "event_only",
                    "created_time": "2024-04-25T15:13:09.852784Z",
                    "last_modified_time": "2024-04-25T15:13:09.852799Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737099.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138584/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T15:13:09.820204Z",
            "last_modified_time": "2024-04-25T15:13:09.939286Z",
            "date_published": null,
            "start_time": "2024-06-12T08:00:00Z",
            "end_time": "2024-06-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsinki-paiva_Vuotorilla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsingforsdagen_i_Nordtorget",
                "en": "http://www.vuotalo.fi/en/events/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsinki_Day_at_Vuotalo_Square"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Helsinki-päivänä Vuosaaren iloiselle torille kokoontuu niin pienet kuin suuretkin kaupunkilaiset nauttimaan vauhdikkaasta musiikista ja mahtavasta tunnelmasta!</p><p><b>OHJELMA</b></p><p><b>Klo 11 ja 13<br>Jo's Punch & Judy Show – Nukketeatteria englanniksi</b></p><p>Hauskuutta niin isoille kuin pienillekin lapsille! Aitoa englantilaista käsinukketeatteria, jossa esiintyvät perinteinen Mr. Punch ja monet muut vanhat tutut. Luvassa on hulvatonta pelleilyä! Yleisökin saa osallistua nopeatempoiseen komedianäytökseen. Esitys sopii parhaiten perheille ja 3–11-vuotiaille lapsille.</p><p><b>klo 14 – Mimi ja Kuku</b></p><p>Muusikko Mimi ja hassu pelleleijona Kuku ovat televisiosta tutut hahmot. Mimin ja Kukun liikunnallisessa ja viihdyttävässä esityksessä lapsi kokee onnistumisen ja oivaltamisen riemua. Jokainen lapsi saa olla esityksen sankari omalla tavallaan.</p><p>Vuorovaikutteiset esitykset on erityisesti suunniteltu vahvistamaan pienen ihmisen itsetuntoa, sekä tunne- ja kaveritaitoja. Esityksessä on iloisen vauhdikas meininki, paljon tanssia, tehtäviä, nukketeatteria sekä taikatemppuja. Esitys sopii kaikenikäisille!</p><p><b>klo 18 – Arppa </b></p><p>Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämän hetken Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58.</p><p>Arpan yhtyeessä vaikuttavat muusikot Ville-Veikko Airaniemi, Eero Seppä ja Okko Saastamoinen.</p><p><b>Lisäksi</b><br>Paikalliset toimijat ja yhdistykset esittelevät toimintaansa koko Helsinki-päivän ajan Vuotorilla.</p>",
                "sv": "<p>På Nordsjö glada torg samlar såväl små och stora stadsbor som njuter av den fartfyllda musiken och den otroliga stämningen!</p><p><b>PROGRAM</b></p><p><b>kl. 11 och 13<br>Jo's Punch & Judy Show – Dockteater på engelska</b></p><p>Ett spännande skådespel för små och stora barn! Autentisk engelsk handdockteater med den historiskt kända Mr. Punch och hans traditionella vänner i en galen clowndrama!  En fartfylld interaktiv komediakt på scenen. Ideal för familjer och barn mellan 3 och 11 eller äldre!</p><p><b>kl. 14 – Mimi och Kuku</b></p><p>Musiker Mimi och det lustiga clownlejonet Kuku är bekanta figurer från tv. I Mimis och Kukus idrottsliga och underhållande föreställning får barnet uppleva glädjen av att lyckas och inse. Varje barn får vara hjälten i föreställningen på sitt eget sätt.</p><p>De interaktiva föreställningarna har särskilt planerats att stärka en liten människas självkänsla samt känslo- och kompiskunskaper. Föreställningen har en glad fartfylld stämning, mycket dans, uppgifter, dockteater samt trollkonst. Föreställningen lämpar sig för alla åldrar!</p><p><b>kl. 18 – Arppa</b></p><p>Arppa och hens band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. De insiktsfulla, uppriktiga och skarpsynt beskrivna stämningarna varierar mellan Yxpila i Karleby, det nattliga Helsingfors i Laila Kinnunens sällskap och en hemlig krog i juni 1958.</p><p>I Arppas band medverkar musikerna Ville-Veikko Airaniemi, Eero Seppä och Okko Saastamoinen.</p><p><b>Hela dagen:</b><br>Lokala aktörer och föreningar presenterar sin verksamhet.</p>",
                "en": "<p>The bright Vuotalo square will fill with people of all ages to enjoy the upbeat music and the awesome atmosphere!</p><p><b>PROGRAMME</b></p><p><b>11 am and 1 pm<br>Jo's Punch & Judy Show – Puppet theatre in English</b></p><p>An exciting treat for children big and small! Authentic English glove puppet theatre with the historically famous Mr. Punch and a cast of traditional friends in crazy clown-like drama! Fast-paced interactive live comedy show. Ideal for families and children aged 3–11 and beyond!</p><p><b>2 pm – Mimi and Kuku</b></p><p>Musician Mimi and hilarious clown-lion Kuku are characters known to many as seen on TV. Mimi and Kuku’s physically entertaining show lets children feel the joy of success and insight. Every child gets to be the main character in their own way.</p><p>These interactive shows are specially planned to reinforce a small one’s confidence as well as emotional and social skills. The show is fun and fast-paced with lots of dancing, things to do, puppet theatre and magic tricks. Suitable for all ages!</p><p><b>6 pm – Arppa</b></p><p>Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. His insightful, sincere and laser-sharp depictions of atmospheres go from Ykspihlaja in Kokkola to night-time Helsinki and onward to a July ‘58 speakeasy with Laila Kinnunen.</p><p>Arppa’s band includes musicians Ville-Ville-Veikko Airaniemi, Eero Seppä and Okko Saastamoinen.</p><p><b>All day:</b> Local businesses and associations showcase their activities.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Helsinki-päivä Vuotorilla – Arppa, Mimi ja Kuku ja paljon muuta",
                "sv": "Helsingforsdagen i Nordtorget",
                "en": "Helsinki Day at Vuotalo Square"
            },
            "short_description": {
                "fi": "Helsinki-päivänä Vuosaaren iloiselle torille kokoontuu niin pienet kuin suuretkin kaupunkilaiset nauttimaan vauhdikkaasta musiikista ja mahtavasta tunnelmasta!",
                "sv": "På Nordsjö glada torg samlar såväl små och stora stadsbor som njuter av den fartfyllda musiken och den otroliga stämningen!",
                "en": "The bright Vuotalo square will fill with people of all ages to enjoy the upbeat music and the awesome atmosphere!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63479/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63476",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138571,
                    "license": "event_only",
                    "created_time": "2024-04-25T13:13:02.889080Z",
                    "last_modified_time": "2024-04-25T13:13:02.889096Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744878.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T13:13:02.861245Z",
            "last_modified_time": "2024-04-25T13:13:02.962014Z",
            "date_published": null,
            "start_time": "2024-06-06",
            "end_time": "2024-08-24",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C030E0E33553D0D03FF27C36E9BBF64B/Malmin_tapahtumakesa_2024"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kaunis Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun Malmin tapahtumakesä täyttää puiston konserteilla, sirkuksella, työpajoilla, puistojumpalla, kaupunkitansseilla, kirpputoreilla ja piknikeillä.</p><p>Helsinki-päivänä 12.6 kutsumme kaupunkilaiset syömään yhteisen ruokapöydän ääreen ja järjestämme illallisen Malmin taivaan alla. 15.8. Taiteiden yö täyttää puiston menolla ja meiningillä. Elokuun lopussa juhlimme myös 30 vuotta täyttävää Malmitaloa, kun juhlaviikonloppu pe-la 23.-24.8 tuo puiston täyteen karnevaalitunnelmaa.</p><p>Malmin tapahtumakesä on ohjelmakokonaisuus, joka tarjoaa sekä alueen asukkaille että muille kaupunkilaisille ja kävijöille helposti saavutettavaa, laadukasta ja monipuolista tapahtumaa ja tekemistä kesäkauden ajan. Ohjelmaa järjestetään 6.–15.6.2024 ja 15.–24.8.2024.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Malmin tapahtumakesä 2024"
            },
            "short_description": {
                "fi": "Kaunis Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun Malmin tapahtumakesä täyttää puiston konserteilla, sirkuksella, työpajoilla, puistojumpalla, kaupunkitansseilla, kirpputoreilla ja piknikeillä."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63476/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghnfosvxq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:32366/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p488/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8195/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/teurastamohelsinki",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/teurastamo/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 138029,
                    "license": "event_only",
                    "created_time": "2024-04-12T14:25:20.235409Z",
                    "last_modified_time": "2024-04-12T14:33:30.392118Z",
                    "name": "Teurastamon kesäinen piha.",
                    "url": "http://api.hel.fi/linkedevents/media/images/20140710_1639__MG_0621_4260_bLSNYwi.jpg",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Jussi Hellsten",
                    "alt_text": "Kesäinen tapahtumapiha ja ihmisiä",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-12T14:33:30.836004Z",
            "last_modified_time": "2024-04-25T12:54:02.629899Z",
            "date_published": null,
            "start_time": "2024-05-25T09:00:00Z",
            "end_time": "2024-05-25T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "out",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 1000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://teurastamo.com/",
                "sv": "https://teurastamo.com/",
                "en": "https://teurastamo.com/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Teurastamo",
                "sv": "Teurastamo",
                "en": "Teurastamo"
            },
            "description": {
                "fi": "<p>Teurastamon kesäpihan avaus ja kevätjuhla kukka- ja villiyrttiteemalla.</p><p>Ohjelma sisältää ruokapuhetta, kukkia ja kasveja, alueen toimijoiden kesäherkkuja, musiikkia sekä pihapelejä ja rentoa kesäistä tunnelmaa.</p><p>&nbsp;</p><p>Teurastamo</p><p>25.5.2024</p><p>12.00-22.00</p><p>Vapaa pääsy</p>",
                "sv": "<p>Vårfesten och invigningen av Teurastamos sommargård hålls med ett tema av blommor och vilda örter.<br><br>I programmet finns mattal, blommor och växter, sommardelikatesser från områdets aktörer, musik, gårdsspel och avslappnad somrig stämning.&nbsp;<br><br>Teurastamo</p><p>25.5.2024</p><p>12.00-22.00</p><p>Fritt inträde</p>",
                "en": "<p>The spring party and the opening of the summer yard at Teurastamo will be held with a flower and wild herb theme.\n</p><p>\nThe program includes food talks, flowers and plants, summer delicacies from regional operators, music, games and relaxed summer atmosphere.</p><p>&nbsp;</p><p>Teurastamo</p><p>25.5.2024</p><p>12.00-22.00</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Teurastamon kevätjuhla 2024",
                "sv": "Teurastamos vårfest 2024",
                "en": "Teurastamo Spring Party 2024"
            },
            "short_description": {
                "fi": "Teurastamon kesäpihan avaus ja kevätjuhla kukka- ja villiyrttiteemalla.",
                "sv": "Vårfesten och invigningen av Teurastamos sommargård hålls med ett tema av blommor och vilda örter.",
                "en": "The spring party and the opening of the summer yard at Teurastamo will be held with a flower and wild herb theme."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghnfosvxq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghrktt3ou",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18620/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 107280,
                    "license": "event_only",
                    "created_time": "2024-03-12T12:06:15.892092Z",
                    "last_modified_time": "2024-03-20T10:10:08.021920Z",
                    "name": "Lukukoira Lassi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Lassi.jpg",
                    "cropping": "130,0,644,514",
                    "photographer_name": "Kuva: Dani Rönnqvist",
                    "alt_text": "Lukukoira Lassi poseeraa",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107280/?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:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T12:50:16.067018Z",
            "last_modified_time": "2024-04-25T12:50:16.067040Z",
            "date_published": null,
            "start_time": "2024-05-02T11:00:00Z",
            "end_time": "2024-05-02T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Tule lukemaan lukukoira Lassille torstaina&nbsp;klo 14!</p><p>Ääneen lukeminen on hyvä tapa harjoitella lukemista. Lassi on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.</p><p>Lukuaika on max. 15 min ja voit varata lukuajan kirjaston asiakaspalvelusta joko paikan päällä tai soittamalla kirjastoon (puh. 043 825 1548). Alle kouluikäisellä lukijalla täytyy olla oma aikuinen mukana.&nbsp;</p><p>Tässä vielä ohjeet lukuhetkeä varten:</p><p>– Varaa vuoro tiskistä tai puhelimitse (puh. 043 825 1548).</p><p>– Yksi lukija kerrallaan.</p><p>– Lukukoiran kanssa voi harjoitella ääneen lukemista.</p><p>– Rauhoitutaan lukemiseen - lukukoira on lukukaveri, ei leikkikaveri.</p><p>– Lukukoirat pitävät silityksestä. Kysy kuitenkin ensin omistajalta lupa.</p><p>– Alle kouluikäisillä aikuinen mukaan.</p><p>&nbsp;</p><p>Kuva: Dani Rönnqvist</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lukukoira Lassi"
            },
            "short_description": {
                "fi": "Tule lukemaan lukukoira Lassille! "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrktt3ou/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63419",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138564,
                    "license": "event_only",
                    "created_time": "2024-04-25T12:13:04.558763Z",
                    "last_modified_time": "2024-04-25T12:13:04.558781Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746056.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138564/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T12:13:04.522163Z",
            "last_modified_time": "2024-04-25T12:13:04.628540Z",
            "date_published": null,
            "start_time": "2024-06-12T06:00:00Z",
            "end_time": "2024-06-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7E043B9323FC3E64DB05544FF878767D/Helsinki-paiva_Annantalossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7E043B9323FC3E64DB05544FF878767D/Helsingforsdagen_pa_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/7E043B9323FC3E64DB05544FF878767D/Helsinki_Day_at_Annantalo_"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään vauhdikasta Helsinki-päivää Annantalolle!</p><p>Päiväkodeille ja lapsiperheille on tarjolla monipuolista ohjelmaa: konsertteja, työpajoja, näyttelyopastuksia ja teatteria.</p><p>Nuoret pääsevät tekemään katutaidetta Annantalon etupihalle sekä esiintymään Helsinki-päivän Open Mic-illassa Annantalon takapihalla.</p><p><b>klo 9 ja klo 10.30 <br>Onnin orkesteri -konsertti<br>Sibelius Akatemian lastenmusiikin opiskelijat</b><br>A-lava, Annantalon takapiha</p><p>Hyppää mukaan leikkiin yhdessä Onni-Orkesterin kanssa!</p><p>Konsertissa kuullaan Sibelius-Akatemian musiikkikasvattajien säveltämiä, Sanna Pelliccionin Onni-kirjoista inspiroituneita kappaleita.</p><p><b>klo 9.30–11.30 ja klo 15–17<br>Grafiikan taikuri -non-stop-työpaja</b><br>Annantalon grafiikan luokka, 2.krs.<br> <br>Grafiikan tekeminen on kuin tekisi taikatemppua: yhdestä kuvasta saa useampia kuvia, monella eri värillä! <br>Ohjaaja: Tizzi Fib<br>Ikäsuositus: 2+</p><p><b>klo 10 ja 17.15<br>Avoin näyttelyopastus Liikkuva laboratorio -näyttelyyn</b><br>Annantalon galleria, 1 krs.</p><p>Liikkuva laboratorio -näyttely tutkii liikettä ja vuorovaikusta. Avoimella näyttelyopastuksella tutustutaan teoksiin tarkemmin ja tavataan Liikkuvan laboratorion asukas! Opastus on suomeksi.<br>Kaikenikäisille<br>Kesto 30 min.</p><p><b>klo 10–12 ja 13–15<br>Perheiden kesäkeidas</b><br>Annantalon takapiha</p><p>Mitä ihmettä Annantalon pihalla tapahtuu? Hyppää maalarin takkiin, nappaa pihalta maalausteline kainaloon ja tee olosi mukavaksi Annantalon kesäkeitaalla. <br>Alle seitsemänvuotiaat ovat tervetulleita osallistumaan toimintaan aikuisen kanssa.  <br>Ohjaajina Annantalon taidekasvattajat Anne Rossi-Horto ja Elina Rantasuo</p><p><b>klo 16–18  <br>Rihmasto</b><br>Kuvataideluokka 2</p><p>Mitä jos voisit itse kasvattaa tarvitsemasi tavarat? Sienirihmaston kanssa voit tehdä vaikkapa kulhon, joulukuusenkoristeen tai lampunvarjostimen. Ota mukaan haluamasi muotoinen pieni astia tai esim. piparkakkumuotti ja tule kokeilemaan! Astioita löytyy myös paikan päältä.<br>Ikäsuositus 5+ perheineen</p><p><b>klo 16.30<br>Tanssi- ja miimiteatteri Auraco: HELMIME</b> <br>A-lava, Annantalon takapiha<br> <br>Tanssi- ja miimiteatteri Auracon HELMIME-esityksessä on monta lyhyttä miiminumeroa, joiden aiheet vaihtelevat koomisesta liikuttavaan. Taidokas ja vangitseva sanaton esitys sopii kaikenikäisille ja kaikille kielitaidosta riippumatta. <br>Esiintyjinä miimin ammattilaiset Eliška Kasprzyk ja Tomaš Kasprzyk.<br>Kesto 40 min.</p><p><b>Unelmia ja toiveita</b><br>Annantalon kesätaiteilija, muusikko Jukka Kämäräinen valmistelee koko kesän ääniteosta yhdessä kävijöiden kanssa. Jukka kiertää Helsinki-päivänä Annantalolla ja kysyy kävijöiden unelmia ja toiveita. Niitä voi kertoa puhumalla, laulamalla, piirtämällä tai kirjoittamalla.</p><p><b>klo 14–20 <br>Helsingin katutaidetoimisto: Katutaidekontti</b><br>Annantalon etupiha</p><p>Työpajoissa maalataan, piirretään, ja pidetään hauskaa! Tänä kesänä Annantalon pihalla katutaidetta voi tehdä myös tuftaten. Työpajat ovat avoimia ja maksuttomia kaikille nuorille. Osallistumiseen ei tarvita ennakko-osaamista. Tapahtuman järjestää Annantalo yhdessä Itäisen nuorisotyöyksikön ja Katutaidetoimiston kanssa.<br>Ikäsuositus 13+</p><p><b>klo 18–20<br>Hip Hop Open Mic w/DJ Funkid & Erde</b><br>A-lava, Annantalon takapiha</p><p>Tässä on tilaisuutesi esiintyä lavalla kannustavan yleisön edessä!<br>Ota oma taustamusa mukaan ja tartu mikrofoniin! <br>Tule sellaisena kuin olet!</p><p>Ilmoittaudu esiintymään: https://link.webropol.com/s/HipHopOpenMic</p><p>Yhteistyössä Annantalon kanssa Tiivistämö ja DJ Academy / Helsingin Nuorisopalvelut<br>Ikäsuositus 13+</p>",
                "sv": "<p>Välkommen att fira en fartfylld Helsingforsdag på Annegården!</p><p>Mångsidigt program utlovas för daghem och barnfamiljer: konserter, workshoppar, guidningar till utställningar och teater. De unga får göra gatukonst framför Annegården och uppträda på Helsingforssdagens Open Mic-kväll på Annegårdens bakgård.</p><p><b>kl. 9 och kl. 10.30 <br>Onnin orkesteri-konserten<br>Barnmusikstuderande från Sibelius-Akademin</b><br>A-scenen, Annegårdens bakgård</p><p>Hör du hur båtdäcket knakar? Har du sett en enhörning? Kom med och leka tillsammans med Onni-Orkesteri! <br>På konserten får vi höra låtar som komponerats av Sibelius-Akademins musikpedagoger och inspirerats av Sanna Peliccionis Onni-böcker. <br>Längd 30 min.</p><p><b>kl. 9.30–11.30 och kl. 15–17<br>Workshopp: Grafisk trollkonstnär</b><br>Grafikklassen på Annegården, 2. vån.<br> <br>Att laga grafik är som att göra trollkonster: en bild blir till flera bilder i olika färger!</p><p>Handledare Tizzi Fib<br>Åldersrekommendation: 2+</p><p><b>kl. 10 och 17.15<br>Öppen guidning till utställningen Rörliga laboratoriet</b> <br>Annegårdens galleri, 1. vån.</p><p>Utställningen Rörliga laboratoriet undersöker rörelse och interaktion. På den öppna guidningen bekantar vi oss närmare med verken och träffar invånaren i det rörliga laboratoriet.</p><p>Guidningen är på finska.<br>Längd 30 min.</p><p><b>kl. 10–12 och 13–15<br>Sommaroas för familjer</b><br>Annegårdens bakgård<br>Vad sker på Annegårdens gård? Ta på dig mållarrocken, ta med ett staffli från gården och känn dig som hemma i Annegårdens sommaroas.</p><p>Under sjuåringar är välkomna att delta i verksamheten i sällskap av en vuxen. Som handledare fungerar Annegårdens konstpedagoger Anne Rossi-Horto och Elina Rantasuo</p><p><b>kl. 16–18  <br>Mycelium</b><br>Konstklass 2</p><p>Tänk om du själv kunde odla de saker du behöver? Av mycelium kan du exempelvis laga en skål, julgransprydnad eller lampskärm. Ta med dig ett litet kärl av den form du önskar, eller exempelvis en pepparkaksform och kom och pröva! Det finns även kärl på plats.</p><p>Åldersrekommendation 5+ med familj</p><p><b>kl. 16.30<br>Dans- och mimteater Auraco: HELMIME</b> <br>A-scenen, Annegårdens bakgård<br> <br>Dans- och mimteater Auracos HELMIME-föreställning omfattar många korta mimnummer, vars teman växlar från komiska till rörande. Den skickliga och fängslande ordlösa föreställningen passar för alla åldrar och alla oberoende av språkkunskaper. <br>Mimproffsen Eliška Kasprzyk och Tomaš Kasprzyk framträder.<br>Längd 40 min.</p><p><b>Drömmar och önskemål</b><br>Annegårdens sommarkonstnär, musiker Jukka Kämäräinen förbereder hela sommarens ljudverk tillsammans med besökarna. På Helsingforsdagen går Jukka runt i Annegården och frågar besökarna om deras drömmar och önskemål. Man kan berätta om dem genom att prata, sjunga, rita eller skriva. Han vill ge oss en möjlighet att stanna upp vid lyckliga saker under en tid då världen och dess framtid oroar.</p><p><b>kl. 14–20 <br>Katutaidetoimisto Helsinki: Gatukonstcontainer</b><br>Framför Annegården</p><p>I workshopparna målar och ritar vi och har skoj! Denna sommar kan du också göra gatukonst på Annegårdens gård genom att tufta. Workshopparna är öppna och avgiftsfria för alla unga. Inga förhandskunskaper behövs för att delta.</p><p>Evenemanget ordnas av Annegården i samarbete med Östra ungdomsarbetsenheten och Katutaidetoimisto Helsinki.  Specialprogram på Helsingforsdagen.</p><p>Åldersrekommendation 13+</p><p><b>kl. 18–20<br>Hip Hop Open Mic w/DJ Funkid & Erde</b><br>A-scenen, Annegårdens bakgård</p><p>Detta är din chans att uppträda på scenen framför en uppmuntrande publik!<br>Ta med din egen bakgrundsmusik och ta tag i mikrofonen! <br>Kom som du är!</p><p>Anmäl dig att uppträda: https://link.webropol.com/s/HipHopOpenMic</p><p>I samarbete med Annegården Tiivistämö och DJ Academy / Helsingfors ungdomstjänster</p><p>Åldersrekommendation 13+</p>",
                "en": "<p>Come to Annantalo to celebrate an eventful Helsinki Day!</p><p>There’s a wide variety of programmes for day-cares and families with children: concerts, workshops, guided exhibition tours and theatre.</p><p>Young people can make street art at the front yard of the Arts Centre and perform at the Helsinki Day Open Mic event in the back yard.</p><p><b>9 am and 10:30 am <br>Onnin Orkesteri concert<br>Children’s music students from Sibelius Academy</b><br>A stage, Annantalo back yard</p><p>Can you hear the sound a ship’s deck makes? Have you ever seen a unicorn? Join the story with Onnin Orkesteri!</p><p>This concert features compositions by Sibelius Academy music educators, inspired by Sanna Pelliccioni’s Onni novels.<br>Duration: 30 mins</p><p><b> 9:30–11:30 am and 3–5 pm<br>Workshop: Magic of print graphics</b> <br>Annantalo print graphics classroom, 2nd floor.<br> <br>Print graphics is like magic: you can make more than one picture, in many colours, with one slate. <br>Instructor: Tizzi Fib<br>Age recommendation: 2+</p><p><b>10 am and 5:15 pm <br>Open exhibition tours to the Mobile Laboratory exhibition</b><br>Annantalo Gallery, 1st floor.</p><p>The Mobile Laboratory exhibition explores movement and interaction. The open exhibition tour is a closer look at the works and introduces a resident of the Mobile Laboratory!<br>Tour language: Finnish.<br>Duration: 30 min.</p><p><b>10 am – 12 noon and 1–3 pm<br>Summer Oasis for families</b> <br>Annantalo back yard</p><p>What on earth is happening in the Annantalo courtyard? Put on a painter’s coat, grab an easel and get comfortable at Annantalo’s Summer Oasis.</p><p>Children under the age of 7 are welcome to participate under the supervision of an adult.  <br>Instructors: Annantalo art instructors Anne Rossi-Horto and Elina Rantasuo</p><p><b>4–6 pm <br>Rihmasto (Mycelium)</b><br>Art classroom 2</p><p>What if you could grow the things you need? With mycelium, you can grow a bowl, a Christmas decoration or a lampshade. Bring a small dish that’s the shape you want, or a gingerbread mould and try it out. We’ve also got a selection of dishes here.</p><p>Age recommendation 5+ with family</p><p><b>4:30 pm <br>Dance and mime theatre Auraco: HELMIME</b> <br>A stage, Annantalo back yard<br> <br>Dance and mime theatre Auraco’s HELMIME performance is a series of many, short mime acts, which range from comical to tragic. This artful and captivating nonverbal show is suited for people of all ages and language backgrounds. <br>Performers: mime professionals Eliška Kasprzyk and Tomaš Kasprzyk.<br>Duration: 40 min.</p><p><b>Unelmia ja toiveita (Hopes and Dreams)</b><br>Annantalo’s summer artist, musician Jukka Kämäräinen, will be working on an audio piece all summer with Annantalo visitors. On Helsinki Day, Jukka will be walking around Annantalo, asking for the visitors’ hopes and dreams. You can tell him orally, through song, drawing or writing. He wants to give everyone the chance to pause for happy things in these times of uncertainty and worry for the world’s future.</p><p><b>2–8 pm <br>Helsinki Street Art Office: Street Art Container</b><br>Annantalo front yard</p><p>The workshops are about painting, drawing and having fun! This summer, you can also create street art in the Annantalo front yard by tufting. The workshops are open and free of charge to all young people. No prior skills are required. This event is organised by the Annantalo Arts Centre in cooperation with the Eastern Youth Work Unit and the Street Art Office.  Special events on Helsinki Day.<br>Age recommendation 13+</p><p><b>6–8 pm <br>Hip Hop Open Mic w/DJ Funkid & Erde</b><br>A stage, Annantalo back yard</p><p>This is your chance to perform on stage to a cheering crowd!<br>Bring your own background music and grab the mike! <br>Come as you are!</p><p>Register for a performance: https://link.webropol.com/s/HipHopOpenMic</p><p>In cooperation with Tiivistämö and DJ Academy / Helsinki Youth Services</p><p>Age recommendation 13+</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Helsinki-päivä Annantalossa",
                "sv": "Helsingforsdagen på Annegården",
                "en": "Helsinki Day at Annantalo"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään vauhdikasta Helsinki-päivää Annantalolle!",
                "sv": "Välkommen att fira en fartfylld Helsingforsdag på Annegården!",
                "en": "Come to Annantalo to celebrate an eventful Helsinki Day!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63419/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63382",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138173,
                    "license": "event_only",
                    "created_time": "2024-04-16T15:13:45.201170Z",
                    "last_modified_time": "2024-04-16T15:13:45.201184Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749084.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138173/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:45.179826Z",
            "last_modified_time": "2024-04-25T11:12:58.210351Z",
            "date_published": null,
            "start_time": "2024-06-18T07:40:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2C9C14C6A106FDA856C3402CB6DA4C40/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2C9C14C6A106FDA856C3402CB6DA4C40/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/2C9C14C6A106FDA856C3402CB6DA4C40/Summer_Music_Play_School"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63382/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63381",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138172,
                    "license": "event_only",
                    "created_time": "2024-04-16T15:13:45.082172Z",
                    "last_modified_time": "2024-04-16T15:13:45.082186Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749083.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:45.061342Z",
            "last_modified_time": "2024-04-25T11:12:58.150681Z",
            "date_published": null,
            "start_time": "2024-06-18T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F6D577CF69A41E8D4EFC3375BF7E6E25/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F6D577CF69A41E8D4EFC3375BF7E6E25/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/F6D577CF69A41E8D4EFC3375BF7E6E25/Summer_Music_Play_School"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63381/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63380",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138171,
                    "license": "event_only",
                    "created_time": "2024-04-16T15:13:44.953380Z",
                    "last_modified_time": "2024-04-16T15:13:44.953400Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749081.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138171/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:44.930571Z",
            "last_modified_time": "2024-04-25T11:12:58.106882Z",
            "date_published": null,
            "start_time": "2024-06-11T07:40:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CEA7A4112477D8C98E239A58879E49C3/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CEA7A4112477D8C98E239A58879E49C3/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/CEA7A4112477D8C98E239A58879E49C3/Summer_Music_Play_School"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63380/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63379",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138170,
                    "license": "event_only",
                    "created_time": "2024-04-16T15:13:44.834793Z",
                    "last_modified_time": "2024-04-16T15:13:44.834808Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749080.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138170/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:44.813147Z",
            "last_modified_time": "2024-04-25T11:12:57.801152Z",
            "date_published": null,
            "start_time": "2024-06-11T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27BD1EB288C09B64872FBE0F7EA20B83/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/27BD1EB288C09B64872FBE0F7EA20B83/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/27BD1EB288C09B64872FBE0F7EA20B83/Summer_Music_Play_School"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63379/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63378",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138169,
                    "license": "event_only",
                    "created_time": "2024-04-16T15:13:44.434352Z",
                    "last_modified_time": "2024-04-16T15:13:44.434368Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749078.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138169/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:44.412778Z",
            "last_modified_time": "2024-04-25T11:12:57.533751Z",
            "date_published": null,
            "start_time": "2024-06-04T07:40:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0D81C76862934B3BFB8957D1DF0597B0/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0D81C76862934B3BFB8957D1DF0597B0/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/0D81C76862934B3BFB8957D1DF0597B0/Summer_Music_Play_School"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63378/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63377",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 138168,
                    "license": "event_only",
                    "created_time": "2024-04-16T15:13:44.315119Z",
                    "last_modified_time": "2024-04-16T15:13:44.315135Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749077.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-16T15:13:44.292344Z",
            "last_modified_time": "2024-04-25T11:12:57.488801Z",
            "date_published": null,
            "start_time": "2024-06-04T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A687B6A46CC3B009AF67D41D57716440/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A687B6A46CC3B009AF67D41D57716440/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/A687B6A46CC3B009AF67D41D57716440/Summer_Music_Play_School"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Summer Music Play School"
            },
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:63377/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}