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

{
    "meta": {
        "count": 1929,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=76",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=74"
    },
    "data": [
        {
            "id": "helsinki:afz4qfggoi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?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:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 65917,
                    "license": "event_only",
                    "created_time": "2020-08-07T08:36:29.201246Z",
                    "last_modified_time": "2020-08-07T08:36:29.201268Z",
                    "name": "Malla Vivolin",
                    "url": "http://api.hel.fi/linkedevents/media/images/siba-30112020-Taivaantakaa-.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Sibelius-Akatemia (c) Touko Hujanen",
                    "alt_text": "Naisen kasvot",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65917/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-08-07T08:41:11.559850Z",
            "last_modified_time": "2020-11-26T08:11:39.908629Z",
            "date_published": null,
            "start_time": "2020-11-30T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Toisessa jatkotutkintokonsertissaan huilisti Malla Vivolin syventyy tarkastelemaan musiikin narratiivisuutta henkisten ja hengellisten teemojen kautta.</p><p> Ohjelmassa kohtaavat muun muassa perinteinen Bach sekä intuitiivisempi Jolivet, lavalla puolestaan uuden musiikin osaajat ja barokkispesialistit.</p><p>Internet<br>30.11. klo 19</p>",
                "sv": "<p>Under den andra postgraduala konserten fördjupar sig Malla Vivolin i att granska musikens narrativitet genom andliga och mentala teman.</p><p>Internet<br>30.11. kl 19</p>",
                "en": "<p>In her second doctoral degree concert, flutist Malla Vivolin focuses on examining the narrative nature of music through mental and spiritual themes.</p><p>Internet<br>30.11. at 19.00</p>"
            },
            "short_description": {
                "fi": "Toisessa jatkotutkintokonsertissaan huilisti Malla Vivolin syventyy tarkastelemaan musiikin narratiivisuutta henkisten ja hengellisten teemojen kautta.",
                "sv": "Under den andra postgraduala konserten fördjupar sig Malla Vivolin i att granska musikens narrativitet genom andliga och mentala teman.",
                "en": "In her second doctoral degree concert, flutist Malla Vivolin focuses on examining the narrative nature of music through mental and spiritual themes."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Sibelius-Akatemia",
                "sv": "Sibelius-Akademin",
                "en": "Sibelius Academy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.uniarts.fi/tapahtumat/malla-vivolin-taivaan-takaa/",
                "sv": "https://www.uniarts.fi/tapahtumat/malla-vivolin-taivaan-takaa/",
                "en": "https://www.uniarts.fi/tapahtumat/malla-vivolin-taivaan-takaa/"
            },
            "name": {
                "fi": "Malla Vivolin: Taivaan takaa",
                "sv": "Malla Vivolin: Taivaan takaa",
                "en": "Malla Vivolin: Taivaan takaa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afz4qfggoi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3aaoahjq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/362027355072068",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 67946,
                    "license": "cc_by",
                    "created_time": "2020-11-09T15:49:27.776158Z",
                    "last_modified_time": "2020-11-09T15:49:27.776198Z",
                    "name": "Malmin ja Pukimäen yleisten alueiden suunnitelma -verkkotilaisuus 25.11.2020",
                    "url": "http://api.hel.fi/linkedevents/media/images/kuva_linkedin.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Malmin ja Pukimäen yleisten alueiden suunnitelma -verkkotilaisuus 25.11.2020",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-25T16:24:00.607577Z",
            "last_modified_time": "2020-11-25T16:24:00.607604Z",
            "date_published": null,
            "start_time": "2020-11-25T15:45:00Z",
            "end_time": "2020-11-25T18: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,
            "description": {
                "fi": "<p>Osallistu kotisohvaltasi Malmin ja Pukinmäen tulevaisuuteen! Tule keskiviikkona 25. marraskuuta klo 18–20 kuulemaan ja keskustelemaan siitä, miten alueen katu- ja viheralueita kehitetään tulevalla vuosikymmenellä.</p><p>Malmin ja Pukinmäen yleisten alueiden suunnitelman asukasilta järjestetään tänä syksynä verkkotapahtumana koronatilanteen takia. Osallistujana saat viimeisimmän tiedon suunnitelmasta ja asiantuntijat vastaavat kysymyspalstalla esittämiisi kysymyksiisi reaaliajassa. </p><p>Klikkaa itsesi Malmin ja Pukinmäen yleisten alueiden suunnitelman -verkkotapahtumaan, linkki: <a href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTA2NGFjNDMtMjdkNS00MGE5LWFkZjEtNzZhNDI5NDc4MDU3%40thread.v2/0?context=%7b%22Tid%22%3a%22b67da565-e2fb-4473-b9db-83695070d988%22%2c%22Oid%22%3a%221da32c2a-cf65-438c-9700-5d2c3331aafb%22%2c%22IsBroadcastMeeting%22%3atrue%7d&lt;/a>  (linkki vie Microsoft Teams live-tapahtumaan).&lt;/p>&lt;p>Illan ohjelma &lt;/p>&lt;p>Klo 17.45 Klikkaa itsesi sisään tapahtumaan&lt;/p>&lt;p>Klo 18.00 Tervetuloasanat &lt;/p>&lt;p>-\tesittelykierros ja kommentointiohje tilaisuuden aikana&lt;br/>o\tmaisema-arkkitehti Johanna Himberg, Helsingin kaupunkiympäristön toimiala&lt;br/>o\tluonnonhoidon suunnitteluvastaava Tiina Saukkonen, Helsingin kaupunkiympäristön toimiala&lt;br/>o\tmaisema-arkkitehti Aino Karilas, Sitowise&lt;br/>o\tsuunnittelija Satu Onnela, Sitowise&lt;/p>&lt;p>-\tkysymykset ja vastaukset&lt;/p>&lt;p>n. klo 18.15 Yleisten alueiden suunnitelma&lt;br/>-\tkysymykset ja vastaukset&lt;/p>&lt;p>n. klo 18.40 Hanke-ehdotukset&lt;br/>-\tkysymykset ja vastaukset&lt;/p>&lt;p>n. klo 19.00 Aluekortit&lt;br/>-\tkysymykset ja vastaukset&lt;/p>&lt;p>n. klo 19.45 Päätössanat&lt;br/>-\tyhteenveto keskusteluista ja kommentointiohje jatkoon / Kerro kantasi&lt;/p>&lt;p>Klo 20.00 Ilta päättyy&lt;/p>&lt;p>&lt;br/>Miten toimit tilaisuudessa?&lt;/p>&lt;p>Tilaisuuden kesto on kaiken kaikkiaan 2 tuntia taukoineen. Voit olla mukana koko illan tai osan iltaa. Osallistua voi halutessaan myös vain kuunnellen.&lt;/p>&lt;p>Tilaisuus sujuu paremmin, kun noudatat seuraavia yhteisiä pelisääntöjä:&lt;/p>&lt;p>Ole läsnä, keskity hetkeen.&lt;br/>Kuuntele ja arvosta toisia.&lt;br/>Tilaisuus etenee ohjelman mukaan. Ensin kuunnellaan esitykset.&lt;br/>Kommentit ja kysymykset käydään läpi aihepiireittäin esitysten jälkeen.&lt;br/>Viestiseinällä voit kysyä myös esitysten aikana joko nimelläsi tai anonyymisti.&lt;br/>Tilaisuuden kieli on suomi.&lt;/p>&lt;p>Ohjeet verkkotilaisuuteen osallistujalle&lt;/p>&lt;p>Osallistuaksesi sinun ei tarvitse ladata laitteeseesi uusia sovelluksia, sillä tilaisuuteen osallistutaan verkkoselaimen välityksellä. Tarvitset myös vakaan verkkoyhteyden. Suosittelemme osallistumaan tietokoneella tai tabletilla, jolloin kuvat näkyvät isompina.&lt;/p>&lt;p>Jos sinulla ei ole Teams-sovellusta koneellasi, valitse ”Katso sen sijaan verkossa”. Sisään voit kirjautua anonyymina osallistujana tai käyttäen Microsoft 365 –tunnustasi. &lt;/p>&lt;p>Kirjaudu sisään hyvissä ajoin, klo 17.45 alkaen, jotta varmistut tekniikan toimivuudesta. Tuetut selaimet Teams-livelähetyksen osallistumiseen ovat Google Chrome, Mozilla Firefox ja Microsoft Edge.&lt;/p>&lt;p>Tilaisuudessa voit lähettää viestiseinälle kysymyksiä illan aiheisiin liittyen anonyymisti tai nimelläsi. Katso lyhyt &lt;a href=\">ohje kuinka jättää kysymys tai kommentti tilaisuudessa</a> </p><p>Jos Teams-livetapahtumaan liittyminen ja kysymysten lähettäminen siihen on sinulle uusi juttu, voit tutustua sen käyttöön etukäteen katsomalla <br><a href=\"https://www.youtube.com/watch?v=deJcGH7N0aw&amp;feature=youtu.be\">opetusvideon Youtubesta </a></p><p>Näin liityt Teams livetapahtumaan</p><p>Jos käytät Teamsia aktiivisesti, saattavat järjestelmät olettaa, että käytät liittymiseen esimerkiksi Teamsin työtiliäsi. Jos et halua liittyä tapahtumaan niin, muista kirjautua ensin ulos tai vaihtaa tiliä ennen tapahtumaan liittymistä. Myös se, että liittyy selaimen kautta ja tyhjentää välimuistin, voi auttaa.</p><p>Voit osallistua myös pelkällä älypuhelimella, mutta silloin puhelimeen on ladattava etukäteen Teams -sovellus.</p><p>Mitä teen, jos en pääse sisään tilaisuuteen?</p><p>Jos käy niin, ettei tilaisuuteen pääseminen onnistu tai tilaisuus keskeytyy teknisistä syistä, jaamme tilaisuuden tallenteen jälkeenpäin tällä sivulla. </p><p>Tilaisuuden jälkeen</p><p>Jaamme tallenteen tilaisuudesta katsottavaksi tälle sivulle. Tallenne on nähtävillä 13.12.2020 asti. Tältä verkkosivulta löytyvät myös tilaisuuden esitykset. Viikko tilaisuuden jälkeen tältä sivulta löytyvät myös esitetyt kysymykset vastauksineen. https://www.hel.fi/helsinki/fi/asuminen-ja-ymparisto/kaavoitus/kehittamissuunnitelmat/malmin-pukinmaen-aluesuunnitelma.<br></p>"
            },
            "short_description": {
                "fi": "Osallistu kotisohvaltasi Malmin ja Pukinmäen tulevaisuuteen! Tule 25.11. klo 18 keskustelemaan alueen katu- ja viheralueiden kehittämisestä."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": null,
            "name": {
                "fi": "Malmin ja Pukinmäen yleisten alueiden suunnitelma –verkkotilaisuus 25.11.2020 "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3aaoahjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3aamzu7i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/362027355072068",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 67946,
                    "license": "cc_by",
                    "created_time": "2020-11-09T15:49:27.776158Z",
                    "last_modified_time": "2020-11-09T15:49:27.776198Z",
                    "name": "Malmin ja Pukimäen yleisten alueiden suunnitelma -verkkotilaisuus 25.11.2020",
                    "url": "http://api.hel.fi/linkedevents/media/images/kuva_linkedin.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Malmin ja Pukimäen yleisten alueiden suunnitelma -verkkotilaisuus 25.11.2020",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-25T16:18:44.634241Z",
            "last_modified_time": "2020-11-25T16:18:44.634289Z",
            "date_published": null,
            "start_time": "2020-11-25T15:45:00Z",
            "end_time": "2020-11-25T18: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,
            "description": {
                "fi": "<p>Osallistu kotisohvaltasi Malmin ja Pukinmäen tulevaisuuteen! Tule keskiviikkona 25. marraskuuta klo 18–20 kuulemaan ja keskustelemaan siitä, miten alueen katu- ja viheralueita kehitetään tulevalla vuosikymmenellä.</p><p>Malmin ja Pukinmäen yleisten alueiden suunnitelman asukasilta järjestetään tänä syksynä verkkotapahtumana koronatilanteen takia. Osallistujana saat viimeisimmän tiedon suunnitelmasta ja asiantuntijat vastaavat kysymyspalstalla esittämiisi kysymyksiisi reaaliajassa. </p><p>Klikkaa itsesi Malmin ja Pukinmäen yleisten alueiden suunnitelman -verkkotapahtumaan, linkki sivun yläladassa. tapahtumaan julkaistaan tapahtumapäivänä 25.11. tällä sivulla (linkki vie Microsoft Teams live-tapahtumaan).</p><p>Illan ohjelma </p><p>Klo 17.45 Klikkaa itsesi sisään tapahtumaan</p><p>Klo 18.00 Tervetuloasanat </p><p>-\tesittelykierros ja kommentointiohje tilaisuuden aikana<br>o\tmaisema-arkkitehti Johanna Himberg, Helsingin kaupunkiympäristön toimiala<br>o\tluonnonhoidon suunnitteluvastaava Tiina Saukkonen, Helsingin kaupunkiympäristön toimiala<br>o\tmaisema-arkkitehti Aino Karilas, Sitowise<br>o\tsuunnittelija Satu Onnela, Sitowise</p><p>-\tkysymykset ja vastaukset</p><p>n. klo 18.15 Yleisten alueiden suunnitelma<br>-\tkysymykset ja vastaukset</p><p>n. klo 18.40 Hanke-ehdotukset<br>-\tkysymykset ja vastaukset</p><p>n. klo 19.00 Aluekortit<br>-\tkysymykset ja vastaukset</p><p>n. klo 19.45 Päätössanat<br>-\tyhteenveto keskusteluista ja kommentointiohje jatkoon / Kerro kantasi</p><p>Klo 20.00 Ilta päättyy</p><p><br>Miten toimit tilaisuudessa?</p><p>Tilaisuuden kesto on kaiken kaikkiaan 2 tuntia taukoineen. Voit olla mukana koko illan tai osan iltaa. Osallistua voi halutessaan myös vain kuunnellen.</p><p>Tilaisuus sujuu paremmin, kun noudatat seuraavia yhteisiä pelisääntöjä:</p><p>Ole läsnä, keskity hetkeen.<br>Kuuntele ja arvosta toisia.<br>Tilaisuus etenee ohjelman mukaan. Ensin kuunnellaan esitykset.<br>Kommentit ja kysymykset käydään läpi aihepiireittäin esitysten jälkeen.<br>Viestiseinällä voit kysyä myös esitysten aikana joko nimelläsi tai anonyymisti.<br>Tilaisuuden kieli on suomi.</p><p>Ohjeet verkkotilaisuuteen osallistujalle</p><p>Osallistuaksesi sinun ei tarvitse ladata laitteeseesi uusia sovelluksia, sillä tilaisuuteen osallistutaan verkkoselaimen välityksellä. Tarvitset myös vakaan verkkoyhteyden. Suosittelemme osallistumaan tietokoneella tai tabletilla, jolloin kuvat näkyvät isompina.</p><p>Jos sinulla ei ole Teams-sovellusta koneellasi, valitse ”Katso sen sijaan verkossa”. Sisään voit kirjautua anonyymina osallistujana tai käyttäen Microsoft 365 –tunnustasi. </p><p>Kirjaudu sisään hyvissä ajoin, klo 17.45 alkaen, jotta varmistut tekniikan toimivuudesta. Tuetut selaimet Teams-livelähetyksen osallistumiseen ovat Google Chrome, Mozilla Firefox ja Microsoft Edge.</p><p>Tilaisuudessa voit lähettää viestiseinälle kysymyksiä illan aiheisiin liittyen anonyymisti tai nimelläsi. Katso lyhyt <a href=\"https://www.hel.fi/static/hkr/aluesuunnitelmat/malmin_pukinmaen_alsu/ohje_kysymyksiin.pdf\">ohje kuinka jättää kysymys tai kommentti tilaisuudessa</a> </p><p>Jos Teams-livetapahtumaan liittyminen ja kysymysten lähettäminen siihen on sinulle uusi juttu, voit tutustua sen käyttöön etukäteen katsomalla <br><a href=\"https://www.youtube.com/watch?v=deJcGH7N0aw&amp;feature=youtu.be\">opetusvideon Youtubesta </a></p><p>Näin liityt Teams livetapahtumaan</p><p>Jos käytät Teamsia aktiivisesti, saattavat järjestelmät olettaa, että käytät liittymiseen esimerkiksi Teamsin työtiliäsi. Jos et halua liittyä tapahtumaan niin, muista kirjautua ensin ulos tai vaihtaa tiliä ennen tapahtumaan liittymistä. Myös se, että liittyy selaimen kautta ja tyhjentää välimuistin, voi auttaa.</p><p>Voit osallistua myös pelkällä älypuhelimella, mutta silloin puhelimeen on ladattava etukäteen Teams -sovellus.</p><p>Mitä teen, jos en pääse sisään tilaisuuteen?</p><p>Jos käy niin, ettei tilaisuuteen pääseminen onnistu tai tilaisuus keskeytyy teknisistä syistä, jaamme tilaisuuden tallenteen jälkeenpäin tällä sivulla. </p><p>Tilaisuuden jälkeen</p><p>Jaamme tallenteen tilaisuudesta katsottavaksi tälle sivulle. Tallenne on nähtävillä 13.12.2020 asti. Tältä verkkosivulta löytyvät myös tilaisuuden esitykset. Viikko tilaisuuden jälkeen tältä sivulta löytyvät myös esitetyt kysymykset vastauksineen. https://www.hel.fi/helsinki/fi/asuminen-ja-ymparisto/kaavoitus/kehittamissuunnitelmat/malmin-pukinmaen-aluesuunnitelma.<br></p>"
            },
            "short_description": {
                "fi": "Osallistu kotisohvaltasi Malmin ja Pukinmäen tulevaisuuteen! Tule 25.11. klo 18 keskustelemaan alueen katu- ja viheralueiden kehittämisestä."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTA2NGFjNDMtMjdkNS00MGE5LWFkZjEtNzZhNDI5NDc4MDU3%40thread.v2/0?context=%7b%22Tid%22%3a%22b67da565-e2fb-4473-b9db-83695070d988%22%2c%22Oid%22%3a%221da32c2a-cf65-438c-9700-5d2c3331aafb%22%2c%22IsBroadcastMeeting%22%3atrue%7d"
            },
            "name": {
                "fi": "Malmin ja Pukinmäen yleisten alueiden suunnitelma –verkkotilaisuus 25.11.2020 "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3aamzu7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23cgt5ha",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/362027355072068",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 67946,
                    "license": "cc_by",
                    "created_time": "2020-11-09T15:49:27.776158Z",
                    "last_modified_time": "2020-11-09T15:49:27.776198Z",
                    "name": "Malmin ja Pukimäen yleisten alueiden suunnitelma -verkkotilaisuus 25.11.2020",
                    "url": "http://api.hel.fi/linkedevents/media/images/kuva_linkedin.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Malmin ja Pukimäen yleisten alueiden suunnitelma -verkkotilaisuus 25.11.2020",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-10T07:41:44.652697Z",
            "last_modified_time": "2020-11-24T12:54:37.441556Z",
            "date_published": null,
            "start_time": "2020-11-25T15:45:00Z",
            "end_time": "2020-11-25T18: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,
            "description": {
                "fi": "<p>Osallistu kotisohvaltasi Malmin ja Pukinmäen tulevaisuuteen! Tule keskiviikkona 25. marraskuuta klo 18–20 kuulemaan ja keskustelemaan siitä, miten alueen katu- ja viheralueita kehitetään tulevalla vuosikymmenellä.</p><p>Malmin ja Pukinmäen yleisten alueiden suunnitelman asukasilta järjestetään tänä syksynä verkkotapahtumana koronatilanteen takia. Osallistujana saat viimeisimmän tiedon suunnitelmasta ja asiantuntijat vastaavat kysymyspalstalla esittämiisi kysymyksiisi reaaliajassa. </p><p>Klikkaa itsesi Malmin ja Pukinmäen yleisten alueiden suunnitelman -verkkotapahtumaan, linkki tapahtumaan julkaistaan tapahtumapäivänä 25.11. tällä sivulla (linkki vie Microsoft Teams live-tapahtumaan).</p><p>Illan ohjelma </p><p>Klo 17.45 Klikkaa itsesi sisään tapahtumaan</p><p>Klo 18.00 Tervetuloasanat </p><p>-\tesittelykierros ja kommentointiohje tilaisuuden aikana<br>o\tmaisema-arkkitehti Johanna Himberg, Helsingin kaupunkiympäristön toimiala<br>o\tluonnonhoidon suunnitteluvastaava Tiina Saukkonen, Helsingin kaupunkiympäristön toimiala<br>o\tmaisema-arkkitehti Aino Karilas, Sitowise<br>o\tsuunnittelija Satu Onnela, Sitowise</p><p>-\tkysymykset ja vastaukset</p><p>n. klo 18.15 Yleisten alueiden suunnitelma<br>-\tkysymykset ja vastaukset</p><p>n. klo 18.40 Hanke-ehdotukset<br>-\tkysymykset ja vastaukset</p><p>n. klo 19.00 Aluekortit<br>-\tkysymykset ja vastaukset</p><p>n. klo 19.45 Päätössanat<br>-\tyhteenveto keskusteluista ja kommentointiohje jatkoon / Kerro kantasi</p><p>Klo 20.00 Ilta päättyy</p><p><br>Miten toimit tilaisuudessa?</p><p>Tilaisuuden kesto on kaiken kaikkiaan 2 tuntia taukoineen. Voit olla mukana koko illan tai osan iltaa. Osallistua voi halutessaan myös vain kuunnellen.</p><p>Tilaisuus sujuu paremmin, kun noudatat seuraavia yhteisiä pelisääntöjä:</p><p>Ole läsnä, keskity hetkeen.<br>Kuuntele ja arvosta toisia.<br>Tilaisuus etenee ohjelman mukaan. Ensin kuunnellaan esitykset.<br>Kommentit ja kysymykset käydään läpi aihepiireittäin esitysten jälkeen.<br>Viestiseinällä voit kysyä myös esitysten aikana joko nimelläsi tai anonyymisti.<br>Tilaisuuden kieli on suomi.</p><p>Ohjeet verkkotilaisuuteen osallistujalle</p><p>Osallistuaksesi sinun ei tarvitse ladata laitteeseesi uusia sovelluksia, sillä tilaisuuteen osallistutaan verkkoselaimen välityksellä. Tarvitset myös vakaan verkkoyhteyden. Suosittelemme osallistumaan tietokoneella tai tabletilla, jolloin kuvat näkyvät isompina.</p><p>Jos sinulla ei ole Teams-sovellusta koneellasi, valitse ”Katso sen sijaan verkossa”. Sisään voit kirjautua anonyymina osallistujana tai käyttäen Microsoft 365 –tunnustasi. </p><p>Kirjaudu sisään hyvissä ajoin, klo 17.45 alkaen, jotta varmistut tekniikan toimivuudesta. Tuetut selaimet Teams-livelähetyksen osallistumiseen ovat Google Chrome, Mozilla Firefox ja Microsoft Edge.</p><p>Tilaisuudessa voit lähettää viestiseinälle kysymyksiä illan aiheisiin liittyen anonyymisti tai nimelläsi. Katso lyhyt <a href=\"https://www.hel.fi/static/hkr/aluesuunnitelmat/malmin_pukinmaen_alsu/ohje_kysymyksiin.pdf\">ohje kuinka jättää kysymys tai kommentti tilaisuudessa</a> </p><p>Jos Teams-livetapahtumaan liittyminen ja kysymysten lähettäminen siihen on sinulle uusi juttu, voit tutustua sen käyttöön etukäteen katsomalla <br><a href=\"https://www.youtube.com/watch?v=deJcGH7N0aw&amp;feature=youtu.be\">opetusvideon Youtubesta </a></p><p>Näin liityt Teams livetapahtumaan</p><p>Jos käytät Teamsia aktiivisesti, saattavat järjestelmät olettaa, että käytät liittymiseen esimerkiksi Teamsin työtiliäsi. Jos et halua liittyä tapahtumaan niin, muista kirjautua ensin ulos tai vaihtaa tiliä ennen tapahtumaan liittymistä. Myös se, että liittyy selaimen kautta ja tyhjentää välimuistin, voi auttaa.</p><p>Voit osallistua myös pelkällä älypuhelimella, mutta silloin puhelimeen on ladattava etukäteen Teams -sovellus.</p><p>Mitä teen, jos en pääse sisään tilaisuuteen?</p><p>Jos käy niin, ettei tilaisuuteen pääseminen onnistu tai tilaisuus keskeytyy teknisistä syistä, jaamme tilaisuuden tallenteen jälkeenpäin tällä sivulla. </p><p>Tilaisuuden jälkeen</p><p>Jaamme tallenteen tilaisuudesta katsottavaksi tälle sivulle. Tallenne on nähtävillä 13.12.2020 asti. Tältä verkkosivulta löytyvät myös tilaisuuden esitykset. Viikko tilaisuuden jälkeen tältä sivulta löytyvät myös esitetyt kysymykset vastauksineen.<br></p>"
            },
            "short_description": {
                "fi": "Osallistu kotisohvaltasi Malmin ja Pukinmäen tulevaisuuteen! Tule 25.11. klo 18 keskustelemaan alueen katu- ja viheralueiden kehittämisestä."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi/helsinki/fi/asuminen-ja-ymparisto/kaavoitus/kehittamissuunnitelmat/malmin-pukinmaen-aluesuunnitelma"
            },
            "name": {
                "fi": "Malmin ja Pukinmäen yleisten alueiden suunnitelma –verkkotilaisuus 25.11.2020 "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cgt5ha/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af247s5f2m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11574/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p19355/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68095,
                    "license": "event_only",
                    "created_time": "2020-11-16T06:26:22.192016Z",
                    "last_modified_time": "2020-11-16T06:26:22.192048Z",
                    "name": "Uuno Klamin 120-vuotisjuhlakonsertti",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kutsuvieraskutsu-pohja.jpg",
                    "cropping": "299,0,1067,768",
                    "photographer_name": "Kaartin soittokunta",
                    "alt_text": "Mies piippu suussa ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68095/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-16T06:43:51.400748Z",
            "last_modified_time": "2020-11-24T10:32:36.235167Z",
            "date_published": null,
            "start_time": "2020-11-24T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Sotilasmusiikin perinnepäivän konsertissa juhlitaan Uuno Klamin 120-vuotisjuhlavuotta. </p><p>Konsertissa kuullaan sooloteos baritonitorvelle. </p><p>Kaartin soittokunta<br>Matts Remell, baritonitorvi <br>Pasi-Heikki Mikkola, kapellimestari <br>Jyrki Koskinen, kapellimestari</p><p>Internet<br>24.11. klo 19</p><p>Vapaa pääsy</p>",
                "en": "<p>Finnish composer Uuno Klami's 120th anniversary will be celebrated at Helsinki Music Centre in November.</p><p>The Guards Band<br>Matts Remell, baritone horn<br>Pasi-Heikki Mikkola, conductor<br>Jyrki Koskinen, conductor</p><p>Internet<br>24.11. at 19.00</p><p>Free entry</p>"
            },
            "short_description": {
                "fi": "Sotilasmusiikin perinnepäivän konsertissa juhlitaan Uuno Klamin 120-vuotisjuhlavuotta.",
                "en": "Finnish composer Uuno Klami's 120th anniversary will be celebrated at Helsinki Music Centre in November."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Kaartin soittokunta",
                "en": "The Guards Band"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://konserttikalenteri.puolustusvoimat.fi/fi/kaartin-soittokunta",
                "en": "https://sotilasmusiikki.fi/en/guards-band"
            },
            "name": {
                "fi": "Uuno Klamin 120-vuotisjuhlakonsertti",
                "en": "Uuno Klami 120th Anniversary Concert"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af247s5f2m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af27tnxqre",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9376/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/groups/kasitysjoulumyyjaiset",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68286,
                    "license": "event_only",
                    "created_time": "2020-11-24T09:48:37.758254Z",
                    "last_modified_time": "2020-11-24T09:48:37.758278Z",
                    "name": "Joulumyyjäiset",
                    "url": "http://api.hel.fi/linkedevents/media/images/joulumyyj%C3%A4isjuliste.jpg",
                    "cropping": "0,174,842,1017",
                    "photographer_name": "Käsitys ry (c) Anna Rantamäki",
                    "alt_text": "Joulukuusi, orava ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-24T10:05:17.353579Z",
            "last_modified_time": "2020-11-24T10:12:43.502721Z",
            "date_published": null,
            "start_time": "2020-11-29T22:01:00Z",
            "end_time": "2020-12-06T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Helsingin yliopiston käsityönopettajaopiskelijoiden perinteiset joulumyyjäiset järjestetään tänä vuonna verkossa viikolla 49.</p><p>Tapahtuman alustana toimii Facebook-ryhmä, johon myyjät julkaisevat omat myyntipöytänsä ostajien selailtavaksi. </p><p>Myyntipöytien antimet vaihtelevat käsityötuotteista leivonnaisiin ja taiteeseen.</p><p>Myyntipöytien lisäksi tapahtumaviikolla luvassa on käsityöaiheista keskustelua, ohjeita ja yhteistyökumppaneiden sisältöä, sekä mm. arvonta.</p><p>Facebook<br>30.11.-6.12.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Helsingfors universitets slöjdlärarstuderandes traditionella julmarknad organiseras för första gången på nätet.</p><p>Evenemanget organiseras vecka 49 i Facebook-gruppen https://www.facebook.com/groups/kasitysjoulumyyjaiset.</p><p>Facebook<br>30.11.-6.12.</p><p>Avgiftsfri</p>",
                "en": "<p>The annual Christmas Fair event of the craft, technology and design teacher students at the University of Helsinki, will be organized online for the first time on week 49. </p><p>The sellers post their virtual market stalls to the group for buyers to browse through. Bargains differ from craft products to baked goods and art.</p><p>Besides the fair, the event week will entail sharing craft-themed conversation, tutorials and content produced by the event's collaborators. </p><p>Facebook<br>30.11.-6.12.</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Helsingin yliopiston käsityönopettajaopiskelijoiden perinteiset joulumyyjäiset järjestetään tänä vuonna verkossa viikolla 49.",
                "sv": "Helsingfors universitets slöjdlärarstuderandes traditionella julmarknad organiseras för första gången på nätet.",
                "en": "The annual Christmas Fair event of the craft, technology and design teacher students at the University of Helsinki, will be organized online "
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Käsitys ry",
                "sv": "Käsitys ry",
                "en": "Käsitys ry"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/groups/kasitysjoulumyyjaiset",
                "sv": "https://www.facebook.com/groups/kasitysjoulumyyjaiset",
                "en": "https://www.facebook.com/groups/kasitysjoulumyyjaiset"
            },
            "name": {
                "fi": "Joulumyyjäiset",
                "sv": "Julmarknad",
                "en": "Christmas Fair"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af27tnxqre/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afz4pw7hdm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26393/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 65912,
                    "license": "event_only",
                    "created_time": "2020-08-07T07:28:02.111130Z",
                    "last_modified_time": "2020-08-07T07:28:02.111152Z",
                    "name": "MuteFest ’20",
                    "url": "http://api.hel.fi/linkedevents/media/images/18abedad-2711_electronica_p.jpg",
                    "cropping": "262,0,938,675",
                    "photographer_name": "Sibelius-Akatemia (c) Katja Tahja",
                    "alt_text": "Mies soittaa soittimella",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-08-07T07:39:04.362221Z",
            "last_modified_time": "2020-11-23T12:45:08.203731Z",
            "date_published": null,
            "start_time": "2020-11-23T17:00:00Z",
            "end_time": "2020-11-27T15: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,
            "description": {
                "fi": "<p>MuTeFest on jokavuotinen Taideyliopiston Sibelius-Akatemian musiikkiteknologian aineryhmän taiteellista työtä avaava konsertti- ja tapahtumafestivaali.</p><p>Internet<br>23.-27.11.</p><p>Vapaa pääsy</p>",
                "sv": "<p>MuTeFest’20 är en vecka med musikskapande med teknologi, som arrangeras i Musikhuset i november.</p><p>Internet<br>23.-27.11. kl 19</p><p>Fritt inträde</p>",
                "en": "<p>MuTeFest is a week of music creation with technology, that will be held at Helsinki Music Centre in November.</p><p>Internet<br>23.-27.11.</p><p>Free entry</p>"
            },
            "short_description": {
                "fi": "MuTeFest on jokavuotinen Taideyliopiston Sibelius-Akatemian musiikkiteknologian aineryhmän taiteellista työtä avaava konsertti- ja tapahtumafestivaali.",
                "sv": "MuTeFest’20 är en vecka med musikskapande med teknologi, som arrangeras i Musikhuset i november.",
                "en": "MuTeFest is a week of music creation with technology, that will be held at Helsinki Music Centre in November."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Sibelius-Akatemia",
                "sv": "Sibelius-Akademin",
                "en": "Sibelius Academy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.uniarts.fi/tapahtumat/fi-mutefest-2020/",
                "sv": "https://www.uniarts.fi/sv/evenemang/sv-mutefest-2020/",
                "en": "https://www.uniarts.fi/en/events/en-mutefest-2020/"
            },
            "name": {
                "fi": "MuTeFest ’20",
                "sv": "MuTeFest ’20",
                "en": "MuTeFest ’20"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afz4pw7hdm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af26adz2xm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9607/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u02120030",
            "sub_events": [],
            "images": [
                {
                    "id": 68196,
                    "license": "event_only",
                    "created_time": "2020-11-19T06:42:19.080662Z",
                    "last_modified_time": "2020-11-19T06:42:19.080685Z",
                    "name": "Mehiläinen rekrytoi lähihoitajia",
                    "url": "http://api.hel.fi/linkedevents/media/images/mehilainen2.jpg",
                    "cropping": "218,0,4066,3849",
                    "photographer_name": "",
                    "alt_text": "Koristekuva",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68196/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-19T10:31:35.892556Z",
            "last_modified_time": "2020-11-19T10:40:30.481286Z",
            "date_published": null,
            "start_time": "2020-12-08T11:00:00Z",
            "end_time": "2020-12-08T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tarjoamme koulutetuille hoitajille vakituisen työsuhteen Helsingissä, Espoossa ja Vantaalla sijaitsevissa hoivakodeissamme. Työsuhteen ehdot ja palkkaus määräytyvät yksityisen sosiaalipalvelualan työehtosopimuksen mukaan.</p><p>Toivomme, että haet meille töihin, vaikka osaamisessasi olisi vielä kehitettävää. Neuvomme ja opastamme sinua mielellämme työssäsi ja tuemme kehittymistäsi. Aikaisempaa kokemusta tärkeämpänä pidämme kiinnostustasi ikääntyneiden kanssa toimimiseen ja heidän hyvinvointinsa tukemiseen. Laatulupausten mukaisella toiminnalla<br>mahdollistamme jokaiselle asukkaalle yksilöllisen hyvän elämän ja sinä saat tehdä työtä viihtyisässä ja turvallisessa ympäristössä. </p><p>Mehiläisenä saat ison työnantajan henkilöstöedut, kuten liikuntasaldon, kattavan työterveyshuollon ja mahdollisuuden<br>osallistua säännöllisesti täydennyskoulutuksiin. Olemme joustava työnantaja, työajat voidaan sopia oman elämäntilanteesi mukaan. Meillä työn tekeminen saa olla hauskaa ja arvostamme asioiden eteenpäin viemistä ja meillä jokainen vaikuttaa yksikön toimintaan.</p><p>Voit hakea avoimia tehtäviä lähettämällä avoimen hakemuksen ja CV:n sähköpostilla osoitteeseen: hoivarekrytointi@mehilainen.fi</p><p>Rekrytilaisuuteen pääset osallistumaan alla olevasta linkistä.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa töihin Mehiläisen sosiaalipalveluihin"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Mehiläinen Oy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_NjNiZTg4NDctZDU0Yi00YmVlLTg0YTMtZGMxY2IyNGM0OGZi%40thread.v2/0?context=%7b%22Tid%22%3a%223feb6bc1-d722-4726-966c-5b58b64df752%22%2c%22Oid%22%3a%22ccc5fb3d-b85b-46e6-aafb-f10ace488fd4%22%7d"
            },
            "name": {
                "fi": "Nettirekry: Mehiläinen hakee lähihoitajia"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af26adz2xm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:185525",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 57808,
                    "license": "cc_by",
                    "created_time": "2019-08-20T09:22:14.771212Z",
                    "last_modified_time": "2019-08-20T09:22:14.771234Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{0191AE68-8C75-470E-91D7-EB6A973556EB}/75886",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/57808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                }
            ],
            "created_time": "2019-03-27T07:25:05.018507Z",
            "last_modified_time": "2020-11-18T12:22:07.568427Z",
            "date_published": "2020-09-16T21:00:00Z",
            "start_time": "2020-12-14T15:00:00Z",
            "end_time": "2020-12-14T16:15: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,
            "description": {
                "fi": "<p> <strong>Huom! Etäluentosarja koululaisille venäjän kielellä</strong>.<br> </p><p>\"Vuoden 1917 Venäjän vallankumoukset ja Suomen itsenäisyys.\"</p><p>Русские революции 1917 года и независимость Финляндии.</p><p> <strong>14.12.2020 klo 17:00 - 18:15</strong> </p><p> <br> <em>Luennoitsija on Helsingin yliopiston Venäjän ja Itä-Euroopan tutkimuksen dosentti Marina Vituhnovskaja-Kauppala.</em> </p><p>Tervetuloa!</p>"
            },
            "short_description": {
                "fi": "Etäluentosarja koululaisille venäjän kielellä"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": null,
            "name": {
                "fi": "Vuoden 1917 Venäjän vallankumoukset ja Suomen itsenäisyys"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:185525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2yrw6bhu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/finnishdesigners/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/finnishdesigners/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 59918,
                    "license": "event_only",
                    "created_time": "2019-11-05T08:51:40.172337Z",
                    "last_modified_time": "2021-10-20T12:45:51.052635Z",
                    "name": "Ornamon Design Joulu 2021",
                    "url": "http://api.hel.fi/linkedevents/media/images/Ornamo_peruskuva_jattalavi_.jpg",
                    "cropping": "334,0,1586,1253",
                    "photographer_name": "Ornamo (c) Minna Borg",
                    "alt_text": "Erilaisia maljakoita ja oksia",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/59918/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-02T12:08:24.670517Z",
            "last_modified_time": "2020-11-17T12:09:55.222105Z",
            "date_published": null,
            "start_time": "2020-11-23T22:01:00Z",
            "end_time": "2020-12-24T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ornamon Design Joulu -tapahtuma kokoaa kotimaisen designin ja taidekäsityön ammattilaisten tuotteet tänä vuonna poikkeuksellisesti verkkoon. </p><p>Finnish Designers -sivustolla on yli 130 erilaista verkkokauppaa, joiden tuotteista löytyy koruja ja vaatteita, keramiikkaa ja lasia, valaisimia ja muita kodinesineitä sekä tekstiilejä ja uniikkia taidetta.</p><p>Internet<br>24.11.-24.12.</p><p>Vapaa pääsy</p>",
                "en": "<p>Ornamo’s annual Design Christmas Market will exceptionally take place online.</p><p>The design market is a unique event to find Finnish designers, explore the latest design trends and purchase Finnish design, textile, glass and ceramic art, fashion and other lifestyle products. </p><p>The market showcases design and applied arts by both established and up-and-coming Finnish brands.</p><p>Internet<br>24.11.-24.12.</p><p>Free entry</p>",
                "zh_hans": "<p>奥勒纳姆(Ornamo)年度圣诞设计市场今年将会再次在老电缆厂文化中心(Cable Factory)举办。时间为芬兰独立日之后的周末。</p><p>圣诞设计市场为期3天,是一个遇见芬兰设计师,了解最新设计流行趋势以及购买芬兰设计,布料工艺,玻璃制品,陶瓷艺术品,时尚单品以及生活方式产品独一无二的好去处。</p><p>已经建立以及正在筹备的芬兰品牌合力组成了市场陈列展示设计以及应用艺术。</p><p>因为今年是爱沙尼亚百年历史庆祝年,活动方同样邀请了爱沙尼亚的多位设计师参与到此次活动中。</p>"
            },
            "short_description": {
                "fi": "Ornamon Design Joulu -tapahtuma kokoaa kotimaisen designin ja taidekäsityön ammattilaisten tuotteet tänä vuonna poikkeuksellisesti verkkoon. ",
                "en": "Ornamo’s annual Design Christmas Market will again take place at Cable Factory. ",
                "zh_hans": "奥勒纳姆(Ornamo)年度圣诞设计市场今年将会再次在老电缆厂文化中心(Cable Factory)举办。"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Ornamo, Lumi Accessories",
                "en": "Ornamo, Lumi Accessories",
                "zh_hans": "奥勒纳姆(Ornamo)"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.finnishdesigners.fi/verkkokaupat",
                "en": "https://www.finnishdesigners.fi/verkkokaupat",
                "zh_hans": "https://www.finnishdesigners.fi/verkkokaupat"
            },
            "name": {
                "fi": "Ornamon Design Joulu 2020",
                "en": "Ornamo Design Christmas 2020",
                "zh_hans": "奥勒纳姆(Ornamo)圣诞设计市场 2020"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2yrw6bhu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af24blhz6e",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/FriskisSvettisHelsinki",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68073,
                    "license": "event_only",
                    "created_time": "2020-11-13T08:11:05.590515Z",
                    "last_modified_time": "2020-11-13T08:11:05.590546Z",
                    "name": "Friskis-livetreeni: Jumppa soft",
                    "url": "http://api.hel.fi/linkedevents/media/images/2019-05-11_FS-423_LR.jpg",
                    "cropping": "341,0,1707,1366",
                    "photographer_name": "Friskis & Svettis (c) Olli-Pekka Orpo",
                    "alt_text": "Ihmiset jumppaamassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-13T08:16:03.079211Z",
            "last_modified_time": "2020-11-13T08:16:03.079241Z",
            "date_published": null,
            "start_time": "2020-12-05T11:00:00Z",
            "end_time": "2020-12-05T11:40: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,
            "description": {
                "fi": "<p>Friskis&amp;Svettis Helsingin maksuttomat etätreenit jatkuvat syksyllä 2020, YouTuben kautta voi osallistua mukaan yhteiseen virtuaaliseen liikuntakokemukseen.</p><p>Jumppa soft on hypytön tunti, joka ottaa huomioon mahdolliset nivel- ja selkärajoitteet. </p><p>Tunnilla kehitetään voimaa, kuntoa, kehonhallintaa, tasapainoa ja liikkuvuutta turvallisten liikkeiden avulla. </p><p>Harjoitteet ovat selkeitä ja yksinkertaisia, joten kaikilla on tarpeeksi aikaa omaksua liikkeet ja tehdä ne tehokkaasti. </p><p>Internet, YouTube<br>5.12. klo 13</p><p>Vapaa pääsy, kesto 40 min</p>",
                "en": "<p>Friskis&amp;Svettis Helsinki's online workout classes continue this autumn online.</p><p>Jumppa Soft is a class with no jumps aiming at increasing strength, stability, balance and flexibility. </p><p>All the movements are simple and safe to do. The class is for those who want an easy and gentle basic workout or who are planning to start training. </p><p>Internet, YouTube<br>5.12. at 13.00</p><p>Free entry, duration 40 min</p>"
            },
            "short_description": {
                "fi": "Friskis&Svettis Helsingin maksuttomat etätreenit jatkuvat syksyllä 2020, YouTuben kautta voi osallistua mukaan yhteiseen virtuaaliseen liikuntakokemukseen.",
                "en": "Friskis&Svettis Helsinki's online workout classes continue this autumn online."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Friskis & Svettis",
                "en": "Friskis & Svettis"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.youtube.com/user/FriskisSvettisFI",
                "en": "https://www.youtube.com/user/FriskisSvettisFI"
            },
            "name": {
                "fi": "Friskis-livetreeni: Jumppa soft",
                "en": "Friskis' Online Workout: Jumppa soft"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af24blhz6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af24bdhqma",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15938/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68071,
                    "license": "event_only",
                    "created_time": "2020-11-13T07:31:14.859292Z",
                    "last_modified_time": "2020-11-13T07:31:14.859316Z",
                    "name": "Keskoslasten Parhaaksi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Keskoslasten-Parhaaksi.jpg",
                    "cropping": "92,0,522,430",
                    "photographer_name": "Helsingin yliopisto",
                    "alt_text": "Vauvan jalat ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-13T07:41:03.483536Z",
            "last_modified_time": "2020-11-13T07:41:03.483573Z",
            "date_published": null,
            "start_time": "2020-11-16T15:00:00Z",
            "end_time": "2020-11-16T17: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,
            "description": {
                "fi": "<p>Tieteen voimalla keskoslasten parhaaksi</p><p>Maailman keskoslasten päivän aattoillan ohjelman juontaa muusikko ja mediapersoona Mikko Kuustonen. </p><p>Luentojen aiheet:<br>Mitä keskosuus on, ja miten se vaikuttaa lapseen ja perheeseen<br>Millaisia edistysaskelia keskoshoidossa on otettu ja tullaan ottamaan<br>Vertaistuen merkitys keskosperheille<br>Mikä merkitys keskosuudella ja perhetaustalla on koulutuspoluille<br>Miten keskoslapsen kehitystä voisi parhaiten tukea<br>Mitkä tekijät suojaavat keskoslapsen kehitystä ja terveyttä<br>Ulottuvatko keskosena syntymisen jäljet aikuisikään.</p><p>Internet<br>16.11. klo 17-19</p><p>Vapaa pääsy</p><p>Tilaisuus on suomenkielinen</p>"
            },
            "short_description": {
                "fi": "Tieteen voimalla keskoslasten parhaaksi"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin yliopisto, THL, Kevyt ja PremLife "
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://bit.ly/38nnnOL"
            },
            "name": {
                "fi": "Keskoslasten Parhaaksi"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af24bdhqma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:193064",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12006/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 67047,
                    "license": "cc_by",
                    "created_time": "2020-09-22T10:24:19.898563Z",
                    "last_modified_time": "2020-09-22T10:24:19.898586Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{46465F7D-EE50-4AAE-8B33-AE51E6FF4FDA}/84576",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67047/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                }
            ],
            "created_time": "2019-08-20T10:22:33.364483Z",
            "last_modified_time": "2020-11-12T06:21:22.301806Z",
            "date_published": "2020-09-16T21:00:00Z",
            "start_time": "2020-11-13T15:00:00Z",
            "end_time": "2020-11-13T16:15: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,
            "description": {
                "fi": "<p> <strong>Huom! Etäluentosarja koululaisille venäjän kielellä</strong>.</p><p>\"Suomalaisia aktivisteja yhteistyössä venäläisten vallankumouksellisten kanssa\"</p><p>\"Финские активисты в союзе с русскими революционерами\"</p><p> <strong>13.11.2019 klo 17:00 - 18:15</strong> </p><p> <br> <em>Luennoitsija on Helsingin yliopiston Venäjän ja Itä-Euroopan tutkimuksen dosentti Marina Vituhnovskaja-Kauppala.</em> </p><p>Tervetuloa!</p><p> <em>фото: Городской музей Хельсинки</em> </p>"
            },
            "short_description": {
                "fi": "Etäluentosarja koululaisille venäjän kielellä"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": null,
            "name": {
                "fi": "Suomalaisia aktivisteja yhteistyössä venäläisten vallankumouksellisten kanssa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:193064/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2yroq2u4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9376/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/709094820009232/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67812,
                    "license": "event_only",
                    "created_time": "2020-11-04T07:21:03.870015Z",
                    "last_modified_time": "2020-11-04T07:21:03.870047Z",
                    "name": "TOKYOn joulumyyjäiset 2020",
                    "url": "http://api.hel.fi/linkedevents/media/images/Tokyo_christmas_Branding-05.jpg",
                    "cropping": "408,0,1193,784",
                    "photographer_name": "TOKYO (c) Amy Gelera @spicycarrrot",
                    "alt_text": "Tekstiä ja värejä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-02T11:31:39.332473Z",
            "last_modified_time": "2020-11-11T12:02:29.350129Z",
            "date_published": null,
            "start_time": "2020-11-15T22:01:00Z",
            "end_time": "2020-11-22T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Osta kauniit ja uniikit lahjat Aalto-yliopiston taiteiden ja suunnittelun opiskeiljoilta.</p><p>Saat ainutlaatuiset teokset postitse tai noutopisteestä Kiasmassa 27.-28.11.</p><p>Internet<br>16.-22.11.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Köp fantastiska julklappar från Aalto universitets konst-, design- och arkitekturstuderande.</p><p>Du kommer att få dina unika verk per post eller från en upphämtningsplats i Kiasma 27-28.11.</p><p>Internet<br>16.-22.11.</p><p>Fri tillgång</p>",
                "en": "<p>Get unique Christmas presents from Aalto University’s students of Arts, Design, and Architecture. </p><p>You will receive your unique pieces by mail or from a pick-up point in Kiasma 27-28.11.</p><p>Internet<br>16.-22.11.</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Osta kauniit ja uniikit lahjat Aalto-yliopiston taiteiden ja suunnittelun opiskeiljoilta.",
                "sv": "Köp fantastiska julklappar från Aalto universitets konst-, design- och arkitekturstuderande.",
                "en": "Get unique Christmas presents from Aalto University’s students of Arts, Design, and Architecture. "
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "TOKYO Aalto-yliopiston taiteiden ja suunnittelun opiskelijajärjestö & Kiasma",
                "sv": "TOKYO Aalto-yliopiston taiteiden ja suunnittelun opiskelijajärjestö & Kiasma",
                "en": "TOKYO Aalto-yliopiston taiteiden ja suunnittelun opiskelijajärjestö & Kiasma"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/events/709094820009232/",
                "sv": "https://www.facebook.com/events/709094820009232/",
                "en": "https://www.facebook.com/events/709094820009232/"
            },
            "name": {
                "fi": "TOKYOn joulumyyjäiset 2020",
                "sv": "TOKYOs julmarknad 2020",
                "en": "TOKYOs Christmas Sales 2020"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2yroq2u4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23njykre",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16560/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/722553571687747",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/petrusschroderus_official/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "",
                        "en": ""
                    },
                    "info_url": {
                        "fi": "https://www.ticketmaster.fi/event/petrus-schroderus-live-joulukonsertti-livestream-lippuja/288875",
                        "en": "https://www.ticketmaster.fi/event/petrus-schroderus-live-joulukonsertti-livestream-lippuja/288875"
                    },
                    "price": {
                        "fi": "9,99€",
                        "en": "9,99€"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68021,
                    "license": "event_only",
                    "created_time": "2020-11-11T09:27:03.109187Z",
                    "last_modified_time": "2020-11-11T09:27:03.109222Z",
                    "name": "Petrus Schroderus",
                    "url": "http://api.hel.fi/linkedevents/media/images/09.11.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Illan Isäntä Oy",
                    "alt_text": "Mies ja joulukoriste",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68021/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-11T09:33:21.953326Z",
            "last_modified_time": "2020-11-11T09:33:21.953380Z",
            "date_published": null,
            "start_time": "2020-12-12T16:00:00Z",
            "end_time": "2020-12-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,
            "description": {
                "fi": "<p>Petrus Schroderus Live! - En etsi valtaa loistoa -joulukonsertti</p><p>Petrus Schroderuksen joulukonsertti En etsi valtaa loistoa kuullaan joulukuussa livestriiminä. <br>Suorana lähetyksenä  kuullaan mm. kappaleet 'En etsi valtaa loistoa', 'On hanget korkeat, nietokset' ja 'Oi jouluyö'. </p><p>Internet<br>12.12. klo 18</p><p>Liput 9,99€ Ticketmasterista , kesto 1 h</p>",
                "en": "<p>Petrus Schroderus Live! Christmas concert</p><p>Christmas concert with tenor Petrus Schroderus is live streamed in December.</p><p>Internet<br>12.12. at 18.00</p><p>Tickets 9,99€ from Ticketmaster, duration 1 h</p>"
            },
            "short_description": {
                "fi": "Petrus Schroderus Live! - En etsi valtaa loistoa -joulukonsertti",
                "en": "Petrus Schroderus Live! Christmas concert"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Illan Isäntä Oy",
                "en": "Illan Isäntä Oy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.tenorpetrus.com",
                "en": "http://www.tenorpetrus.com"
            },
            "name": {
                "fi": "Petrus Schroderus ",
                "en": "Petrus Schroderus "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23njykre/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23mbn6ey",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/FriskisSvettisHelsinki",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68018,
                    "license": "event_only",
                    "created_time": "2020-11-11T06:25:45.659289Z",
                    "last_modified_time": "2020-11-11T06:25:45.659313Z",
                    "name": "Friskis-livetreeni: Tanssi workshop",
                    "url": "http://api.hel.fi/linkedevents/media/images/2019-05-11_FS-1038_LR.jpg",
                    "cropping": "433,0,1487,1054",
                    "photographer_name": "Friskis & Svettis (c) Olli-Pekka Orpo",
                    "alt_text": "Ihmisiä jumppasalilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68018/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-11T06:37:11.105497Z",
            "last_modified_time": "2020-11-11T06:37:11.105527Z",
            "date_published": null,
            "start_time": "2020-11-22T13:00:00Z",
            "end_time": "2020-11-22T14:15: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,
            "description": {
                "fi": "<p>Friskis &amp; Svettiksen tanssi-workshopissa päästään oppimaan Niinan tanssitunnin koreografioita \"step by step\", jossa tämän hetken ohjelmasta harjoitellaan 3-4 biisiä.</p><p>Niinan kanssa on mukana myös tanssiryhmä.</p><p>Internet, YouTube<br>22.11. klo 15</p><p>Vapaa pääsy, kesto 1 h 15 min</p>",
                "en": "<p>Friskis&amp;Svettis Helsinki will be streaming a live dance class on their YouTube channel in November.</p><p>Niina teaches the choreographies of her dance class step by step with her dance group.</p><p>Internet, YouTube<br>22.11. at 15.00</p><p>Free entry, duration 1 h 15 min</p>"
            },
            "short_description": {
                "fi": "Friskis & Svettiksen tanssi-workshopissa päästään oppimaan Niinan tanssitunnin koreografioita \"step by step\",",
                "en": "Friskis&Svettis Helsinki will be streaming a live dance class on their YouTube channel in November."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Friskis & Svettis",
                "en": "Friskis & Svettis"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.youtube.com/user/FriskisSvettisFI",
                "en": "https://www.youtube.com/user/FriskisSvettisFI"
            },
            "name": {
                "fi": "Friskis-livetreeni: Tanssi-workshop",
                "en": "Friskis' Online Workout: Dance workshop"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23mbn6ey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af22zglwca",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13980/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8268/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 67935,
                    "license": "cc_by",
                    "created_time": "2020-11-09T14:09:09.276065Z",
                    "last_modified_time": "2020-11-09T14:09:09.276091Z",
                    "name": "Havainnekuva Kirkonkyläntieltä Malmin keskusta.",
                    "url": "http://api.hel.fi/linkedevents/media/images/tapahtumakalenteri-1200-800-uutta-koillishelsinkia-joulukuu2020.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Voima Graphics Oy",
                    "alt_text": "Havainnekuva Kirkonkyläntieltä Malmin keskusta.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67935/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-09T10:42:19.823657Z",
            "last_modified_time": "2020-11-09T14:09:28.137676Z",
            "date_published": null,
            "start_time": "2020-12-09T15:00:00Z",
            "end_time": "2020-12-09T17: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,
            "description": {
                "fi": "<p>Tervetuloa kuulemaan ja keskustelemaan Koillis-Helsingin eli Viikin, Pukinmäen, Puistolan, Suutarilan, Pihlajamäen, Tapanilan ja Malmin ajankohtaisista hankkeista ja suunnitelmista. Illan aikana esitellään monipuolisesti sitä, kuinka Helsinki muuttuu uusien asuin- ja liikerakennusten myötä ja miten kadut sekä viheralueet kohenevat.</p><p>Osallistu omalta kotisohvaltasi Koillis-Helsingin tulevaisuuteen! Tule kuulemaan ja keskustelemaan siitä, miten Helsinki muuttuu uusien asuin- ja liikerakennusten myötä ja miten kadut ja viheralueet kohenevat.</p><p>Uutta Koillis-Helsinkiä -tilaisuua järjestetään verkkotilaisuuksina koronatilanteen takia. </p><p>Voit kysyä ja keskustella illan aiheista viestiseinällä, jossa asiantuntijat ovat vastaamassa kysymyksiisi reaaliajassa. <br></p>"
            },
            "short_description": {
                "fi": "Tervetuloa kuulemaan ja keskustelemaan Koillis-Helsingin ajankohtaisista hankkeista ja suunnitelmista."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Verkkotilaisuus."
            },
            "info_url": {
                "fi": "https://www.hel.fi/helsinki/fi/asuminen-ja-ymparisto/kaavoitus/ajankohtaiset-suunnitelmat/tilaisuudet/uutta-koillishelsinkia"
            },
            "name": {
                "fi": "Uutta Koillis-Helsinkiä -verkkotilaisuus 9.12.2020"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af22zglwca/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2zzt7bqe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38203/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/1yigRbIzb",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/MatchXRHelsinki",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/matchxrhelsinki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67864,
                    "license": "event_only",
                    "created_time": "2020-11-06T08:53:32.407079Z",
                    "last_modified_time": "2020-11-06T08:53:32.407103Z",
                    "name": "Match XR 2020",
                    "url": "http://api.hel.fi/linkedevents/media/images/matchxr2020_fb_cover_image.jpg",
                    "cropping": "458,0,1462,1005",
                    "photographer_name": "Helsinki XR Center (c) Meeri Lehto",
                    "alt_text": "Värejä ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67864/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-11-06T09:07:50.811852Z",
            "last_modified_time": "2020-11-06T09:07:50.811913Z",
            "date_published": null,
            "start_time": "2020-11-25T07:00:00Z",
            "end_time": "2020-11-25T16: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,
            "description": {
                "fi": "<p>Kolmatta kertaa järjestettävä Match XR on vuosittainen Helsinki XR Centerin (HXRC) luotsaama virtuaalitodellisuuteen keskittyvä teknologiakonferenssi. Tapahtuma kokoaa jälleen yhteen alan startupeja, laajasti XR-alan asiantuntijoita, yritysten ja organisaatioiden, julkisen sektorin sekä akateemisen maailman edustajia ja opiskelijoita.</p><p>Tänä vuonna Match XR järjestetään kokonaan virtuaalitodellisuudessa AltspaceVR -alustalla HXRC:n rakentamassa kuvankauniissa VR Pavilion Finland -tapahtumatilassa. Tapahtuman kaikki ohjelma on katsottavissa myös livestriimin välityksellä. Tapahtuma järjestetään englanniksi.</p><p>Ohjelma:<br>Seuraa aamun livelähetystä Helsinki XR Centeriltä ja päivän puhujia VR Pavilion Finlandin amfiteatterista tai kotikoneelta striimin välityksellä, tai astu sisään virtuaaliseen tapahtumatilaan valitsemallasi avatar-hahmolla.</p><p>Virtuaalitodellisuudessa voi tavata ja keskustella alan asiantuntijoiden, puhujien, panelistien ja muiden osallistujien kanssa, pääsee tutustumaan VR Pavilion Finland -tapahtumatilaan ja vierailemaan yhteistyökumppaneiden luomissa virtuaalimaailmoissa.</p><p>8.30 VR Pavilion Finland ja yhteistyökumppanien VR-tilat avautuvat yleisölle</p><p>9.00 Good morning from Helsinki - livelähetys Helsinki XR Centerin studiosta<br>- Avaussanat: Helsingin kaupungin pormestari Jan Vapaavuori <br>- Paneelikeskustelu: Industry experts discuss the Finnish AR &amp; VR scene, startup ecosystem and impact of 5G development</p><p>10.00-18.00 Esityksiä ja keskustelua VR Pavilion Finlandin amfiteatterissa ja tapahtumatilan meeting rooms avoinna koko päivän. </p><p>Internet, VR Pavilion Finland, AltspaceVR, YouTube <br>25.11. klo 9-18</p><p>Vapaa pääsy, liput https://matchxr2020.eventbrite.com/</p><p>Tapahtumaan voi osallistua virtuaalitodellisuudessa VR-laseilla tai myös omalta läppäriltä lataamalla Microsoftin tarjoaman AltspaceVR -alustan. Tapahtuman kaikki ohjelma on katsottavissa myös livestriimin välityksellä YouTubessa.</p>",
                "en": "<p>For the third time Helsinki XR Center is hosting one of the biggest XR gatherings in the Nordics - Match XR in AltspaceVR.</p><p>At Match XR 2020 you have the opportunity to experience the current state of the Finnish XR industry. The event is full of interesting speeches and presentations, and during the event, you can freely explore and experience the virtual venue: VR Pavilion Finland main event area, unique virtual worlds created by the partners, and meet other participants.</p><p>Programme:<br>The whole event is streamed to Youtube, so you can also attend Match XR 2020 by following our live stream.</p><p>8.30 VR Pavilion Finland and Partner Worlds open </p><p>9.00 “Good Morning from Helsinki” live-broadcast session from Helsinki XR Center’s studio in Helsinki. <br>- Opening words by Jan Vapaavuori - Mayor of Helsinki<br>- Panel discussion: XR industry experts discuss the Finnish AR/VR scene, startup ecosystem and the impact of 5G development. </p><p>10.00-18.00 Presentations by innovative Finnish XR companies, artists and scientists: hear what they have created and chat with them face-to-face after presentations in AltspaceVR, or observe the show through the Youtube stream.</p><p>Internet, VR Pavilion Finland, AltspaceVR, YouTube <br>25.11.  9.00-18.00</p><p>Free entry, tickets https://matchxr2020.eventbrite.com/</p><p>Match XR 2020 is available both in AltspaceVR (virtual reality or PC desktop application) and through a live stream on Youtube. <br></p>"
            },
            "short_description": {
                "fi": "Kolmatta kertaa järjestettävä Match XR on vuosittainen Helsinki XR Centerin (HXRC) luotsaama virtuaalitodellisuuteen keskittyvä teknologiakonferenssi.",
                "en": "For the third time Helsinki XR Center is hosting one of the biggest XR gatherings in the Nordics - Match XR in AltspaceVR."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki XR Center",
                "en": "Helsinki XR Center"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://matchxrhelsinki.com/",
                "en": "https://matchxrhelsinki.com/"
            },
            "name": {
                "fi": "Match XR 2020",
                "en": "Match XR 2020"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2zzt7bqe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2zpvtwhi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/FriskisSvettisHelsinki",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67846,
                    "license": "event_only",
                    "created_time": "2020-11-05T09:50:26.047637Z",
                    "last_modified_time": "2020-11-05T09:50:26.047662Z",
                    "name": "Friskis-livetreeni: Lempeä iltajooga",
                    "url": "http://api.hel.fi/linkedevents/media/images/hans-vivek-UiMkBvDQSAA-unsp.jpg",
                    "cropping": "107,0,533,426",
                    "photographer_name": "Friskis & Svettis/Unsplash (c) Hans Vivek",
                    "alt_text": "Kynttilä palamassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67846/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-05T09:56:56.014795Z",
            "last_modified_time": "2020-11-05T09:56:56.014824Z",
            "date_published": null,
            "start_time": "2020-11-15T17:00:00Z",
            "end_time": "2020-11-15T17:40: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,
            "description": {
                "fi": "<p>Lempeä iltajooga on livelähetys Friskis&amp;Svettis Helsingin joogaohjaaja Mallun kotoa, jossa on mukana kaksi joogaystävää. </p><p>Iltaharjoitus sopii kaikille. Pukeudu mukavaan lämpimään asuun ja varaa viereen pari tyynyä sekä viltti. </p><p>Internet, Facebook<br>15.11. klo 19</p><p>Vapaa pääsy, kesto n. 40 min</p>",
                "en": "<p>Live broadcast from Friskis &amp; Svettis Helsinki yoga instructor Mallu's home, together with two yoga friends. </p><p>The gentle yoga practice is suitable for everyone. Wear a comfortable and warm outfit and have a pair of pillows and a blanket next to you. </p><p>Internet, Facebook<br>15.11. at 19.00</p><p>Free of charge, duration 40 min</p>"
            },
            "short_description": {
                "fi": "Lempeä iltajooga on livelähetys Friskis&Svettis Helsingin joogaohjaaja Mallun kotoa, jossa on mukana kaksi joogaystävää.",
                "en": "Live broadcast from Friskis & Svettis Helsinki yoga instructor Mallu's home, together with two yoga friends. "
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Friskis & Svettis",
                "en": "Friskis & Svettis"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/FriskisSvettisHelsinki",
                "en": "https://www.facebook.com/FriskisSvettisHelsinki"
            },
            "name": {
                "fi": "Friskis-livetreeni: Lempeä iltajooga",
                "en": "Friskis' Online Workout: Gentle Evening Yoga"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2zpvtwhi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2zpf65tm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9376/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/Joulumyyj%C3%A4iset-2020-113940387155072",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/joulumyyjaiset2020/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67840,
                    "license": "event_only",
                    "created_time": "2020-11-05T08:03:39.780584Z",
                    "last_modified_time": "2020-11-05T08:04:12.716775Z",
                    "name": "Joulumyyjäiset verkossa",
                    "url": "http://api.hel.fi/linkedevents/media/images/YrityskuvaLiLa.jpg",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "Lila Design (c) Linda Lakanen",
                    "alt_text": "Joulukoristeita",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67840/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-05T08:48:33.713325Z",
            "last_modified_time": "2020-11-05T08:48:33.713367Z",
            "date_published": null,
            "start_time": "2020-11-30T22:01:00Z",
            "end_time": "2020-12-18T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Joulumyyjäiset löytyy tänä vuonna joulumyyjäiset -verkkosivuilta, johon on koottuna pienyrittäjien joulualennuksia ja -kampanjoita. </p><p>Internet<br>1.-18.12.</p><p>Vapaa pääsy</p>",
                "en": "<p>Christmas fair 2020 is happening online this year offering Christmas discounts and campaigns by Finnish entrepreneurs.</p><p>Internet<br>1.-18.12.</p><p>Free admission </p>"
            },
            "short_description": {
                "fi": "Joulumyyjäiset löytyy tänä vuonna joulumyyjäiset -verkkosivuilta, johon on koottuna pienyrittäjien joulualennuksia ja -kampanjoita.",
                "en": "Christmas fair 2020 is happening online this year offering Christmas discounts and campaigns by Finnish entrepreneurs."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Lila Design ",
                "en": "Lila Design "
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.joulumyyjaiset2020.fi",
                "en": "http://www.joulumyyjaiset2020.fi"
            },
            "name": {
                "fi": "Joulumyyjäiset 2020 verkossa",
                "en": "Christmas Fair 2020 Online"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2zpf65tm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}