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

{
    "meta": {
        "count": 74,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&location=tprek%3A28473&page=2",
        "previous": null
    },
    "data": [
        {
            "id": "helsinki:agg2ot4zhe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbatkwz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "sv": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 105534,
                    "license": "event_only",
                    "created_time": "2024-02-14T11:18:07.746425Z",
                    "last_modified_time": "2024-02-14T11:28:21.258271Z",
                    "name": "WEB-illustration 1-ARBIS-SFI-4.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/WEB-illustration_1-ARBIS-SFI-4.png",
                    "cropping": "374,0,1874,1499",
                    "photographer_name": "",
                    "alt_text": "Ritad bild med pariserhjul och människor framför domkyrkan.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021200130",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-02-14T11:10:28.164307Z",
            "last_modified_time": "2024-02-26T07:33:29.909465Z",
            "date_published": null,
            "start_time": "2024-11-04T12:00:00Z",
            "end_time": "2024-11-04T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "sv": "Rekryteringsevenemang för personer som gärna jobbar på svenska eller engelska"
            },
            "provider": {
                "sv": ""
            },
            "provider_contact_info": null,
            "description": {
                "sv": "<p><strong>Vad</strong></p><p>Välkommen med på Karriärdagen för att hitta nya arbetsmöjligheter och bekanta dig med arbetsgivare i Nyland som har en positiv inställning till att använda svenska. Du får tips om att skriva CV, värdefulla kontakter och information om olika arbetsplatser.&nbsp;&nbsp;</p><p>&nbsp;Evenemanget inleds med ett panelsamtal med framstående aktörer från företags- och näringslivet.&nbsp;&nbsp;</p><p>&nbsp;</p><p><strong>För vem</strong></p><p>Till dig som gärna jobbar på svenska eller engelska.&nbsp;</p><p>&nbsp;</p><p><strong>Bra att veta</strong></p><p>Ta med flera kopior av din CV.</p><p>&nbsp;</p><p><strong>Tillägsinformation</strong></p><p>I fall du har eventuella frågor så kan du kontakta casimir.schauman@prakticum.fi.&nbsp;</p><p>Evenemanget görs i samarbete med Helsingfors Arbis, Luckan Integration, Prakticum och Helsingfors sysselsättningstjänster.&nbsp;</p>"
            },
            "location_extra_info": {
                "sv": ""
            },
            "info_url": {
                "sv": ""
            },
            "name": {
                "sv": "Karriärdagen"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2ot4zhe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggro5vdsu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 101504,
                    "license": "cc_by",
                    "created_time": "2024-01-17T12:48:31.013940Z",
                    "last_modified_time": "2024-01-19T13:35:22.888082Z",
                    "name": "TalentAttraction_N2-Albiino_Matti_Pyykko-54.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/TalentAttraction_N2-Albiino_Matti_Pyykko-54_i7XkyDW.jpg",
                    "cropping": "379,0,1901,1522",
                    "photographer_name": "",
                    "alt_text": "Young job seekers",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101504/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-17T12:47:47.614019Z",
            "last_modified_time": "2024-01-19T13:56:25.143357Z",
            "date_published": null,
            "start_time": "2024-02-13T11:00:00Z",
            "end_time": "2024-02-13T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsingin kaupungintalolla järjestetään matkailu- ja ravintola-alan rekrytapahtuma"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kiinnostaako työt matkailualalla? Oletko opiskelija, alan vaihtaja tai muuten vaan etsimässä itsellesi uutta työpaikkaa? Matkailun tekijät -rekrytointimessuilla on mukana useita ravintola-, matkailu- ja tapahtuma-alan yrityksiä, ja erilaisia työpaikkoja on avoinna monipuolisesti! Avoimet työpaikat voivat olla kesätöitä, sesonkiluonteisia tai vakituisia työpaikkoja.</p><p><strong>Tule tapaamaan työnantajia, ja nappaa itsellesi uusi työpaikka!</strong></p><p>Tapahtuma on maksuton, eikä vaadi ennakkoilmoittautumista. Rekrytointitilaisuudessa on mahdollista päästä pikahaastatteluun haluamasi yrityksen edustajan kanssa. Ota mukaan päivitetty ansioluettelosi ja halutessasi esittelykirje, jotka tukevat sinua pikahaastattelutilanteessa.&nbsp;</p><p>Rekrytointitapahtumassa mukana olevat työnantajat etsivät tekijöitä mm. seuraavanlaisiin tehtäviin:</p><ul><li>The Folks Hotel Konepaja: useita avoimia työtehtäviä, mm. vastaanotossa ja myyntipalvelussa</li><li>Sokotel: useita avoimia työtehtäviä, mm. tarjoilijoita, kokkeja ja vastaanottovirkailijoita</li><li>Strömma: työharjoittelu- ja kausipaikkoja niin back office -tehtävissä, asiakaspalvelussa, lipunmyynnissä, kuin bussi- ja laivahenkilökunnan rooleissakin</li><li>Strawberry: useita avoimia työtehtäviä, mm. tarjoilijoita, kokkeja ja vastaanottovirkailijoita</li><li>Avis ja Budget (Helkama Rent Oy): kuljettajan ja asiakaspalvelijan työtehtävät</li><li>Rastila Camping Helsinki: asiakaspalvelijoita vastaanoton, puhtaanapidon, huollon ja puutarhanhoidon tehtäviin</li><li>Scandic Hotels: useita avoimia työtehtäviä, mm. tarjoilijoita, kokkeja ja vastaanottovirkailijoita</li><li>Temppeliaukion kirkko: asiakaspalvelutehtäviin kirkon aulaan</li><li>Helsingin tuomiokirkkoseurakunta: Oppaan työtehtävät</li><li>Eckerö Line: useita avoimia työtehtäviä, mm. ravintoloihin, myymälöihin ja siivousosastolle</li><li>Helsingin matkailuneuvonta: Helsinki Help -neuvojia</li><li>Stadin AO:&nbsp;Tarjoamme matkailu- sekä ravintola- ja cateringalalle koulutusta myös oppisopimuksella.</li><li>Royal Line: Etsimme 2024 kesäksi kansimies-tarjoilijoita, kokkeja ja lipunmyyjiä</li></ul><p>&nbsp;</p><p>Kysy lisää: matkailu@hel.fi</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Tervetuloa Matkailun tekijät -rekrytointimessuille Helsingin kaupungintalolle"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggro5vdsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggrl7t4ma",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?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,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u3212004080",
            "sub_events": [],
            "images": [
                {
                    "id": 101480,
                    "license": "cc_by",
                    "created_time": "2024-01-17T05:50:28.669615Z",
                    "last_modified_time": "2024-01-17T05:56:55.379187Z",
                    "name": "Hetkittäin-seminaari kolmen suhde kahteen.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/Hetkitt%C3%A4in-seminaari_kolmen_suhde_kahteen.png",
                    "cropping": "216,0,1081,864",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva miehestä ja naisesta, jotka ajavat mopedilla. Heidän takanaan on keltainen kuu.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u3202004050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101480/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7179/?format=api"
                }
            ],
            "created_time": "2024-01-17T05:56:56.041273Z",
            "last_modified_time": "2024-01-17T05:56:56.041295Z",
            "date_published": null,
            "start_time": "2024-02-27T07:00:00Z",
            "end_time": "2024-02-27T13: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": "2024-01-17T08:00:00+02:00",
            "enrolment_end_time": "2024-02-27T23:55:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Hetkittäin-hanke järjestää seminaarin, jonka aiheena on kehitysvammaisen ihmisen ikääntyminen. "
            },
            "provider": {
                "fi": "Kehitysvammatuki 57 ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Avoimeen tilaisuuteen ovat tervetulleita kaikki, joita kiinnostaa vanhenevan ihmisen hyvä elämä.&nbsp;Jos et pääse paikalle, voit osallistua tilaisuuteen myös etänä.</p><p><strong>Seminaarin ohjelma:</strong></p><p>Muistelu on vuorovaikutusta<i> </i>(Maija Rimpiläinen ja Mari Salovaara)</p><p>Siirtymä vanhuuden eläkeläisyyteen (Sirpa Granö)</p><p>Sosiaalinen kuolema ja sen vastalääkkeet (Jari Pirhonen)</p><p>Surun äärellä tukea tarvitsevan ihmisen kanssa (Marjo Rikkinen)</p><p>MuistiMontessori ja merkityksellinen arki (Henna Jalovaara) ja</p><p>Musiikki ikääntyvien aivojen tukena (Anni Pitkäniemi)</p><p>&nbsp;</p><p><strong>Tapahtumaan ilmoittautuminen viimeistään 13.2. kello 23.55 osoitteessa</strong>: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftapahtumat.kvtuki57.fi%2Ftapahtumat%2Fhetkittain-seminaari%2F&amp;data=05%7C02%7Channakaisa.huttunen%40hel.fi%7C95ab0041cfff43c816e708dc16b251c0%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638410202345836978%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=kbH9WCBXdqydOUyx9yhO%2BJfQxw40qSJWiL3cLiqVQEk%3D&amp;reserved=0\">https://tapahtumat.kvtuki57.fi/tapahtumat/hetkittain-seminaari/</a></p>"
            },
            "location_extra_info": {
                "fi": "Esteetön paikka."
            },
            "info_url": {
                "fi": "https://tapahtumat.kvtuki57.fi/tapahtumat/hetkittain-seminaari/"
            },
            "name": {
                "fi": "Hetkittäin-seminaari"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggrl7t4ma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59897",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 92634,
                    "license": "event_only",
                    "created_time": "2023-05-31T11:11:47.842214Z",
                    "last_modified_time": "2023-05-31T11:11:47.842253Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730937.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/92634/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-05-31T11:11:47.819927Z",
            "last_modified_time": "2023-07-20T08:12:47.710836Z",
            "date_published": null,
            "start_time": "2023-05-17T13:30:00Z",
            "end_time": "2023-05-17T15: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,
            "short_description": {
                "fi": "Paneelikeskustelu vihapuheesta, sen vaikutuksista ja sananvapauden rajoista"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Paneelikeskustelu vihapuheesta, sen vaikutuksista ja sananvapauden rajoista</p><p>Tilaisuudessa näkemykselliset panelistit kulttuurin ja aktivismin kentältä paneutuvat vihapuheilmiön eri ulottuvuuksiin. Tilaisuuden järjestää Helsingin kaupunki osana #StopHatredNow-festivaalia.</p><p>Tilaisuuden juontajana ja moderaattorina toimii viestintäpäällikkö <b>Satu Pusa</b>.</p><p>Tilaisuus on suomenkielinen. Kaupungintalolle on esteetön pääsy ja tilaisuudessa on viittomakielen tulkkaus.</p><p>Paikan päälle saapuvia pyydetään ilmoittautumaan etukäteen viimeistään 9.5. mennessä kahvitarjoilun mitoittamiseksi: https://response.questback.com/helsinginkaupunki/shn</p><p><b>Ohjelma:</b><br>16.00–16.30 Kahvit<br>16.30–16.35 Runoesitys, Sanni Purhonen<br>16.35–16.40 Tilaisuuden avaus<br>16.40–17.55 Paneelikeskustelu, panelisteina:<br>- kirjailija, läskiaktivisti Raisa Omaheimo<br>- runoilija, vammaisaktivisti Sanni Purhonen<br>- antirasistinen aktivisti Liban Sheikh<br>- transaktivisti Valo Vesikauris<br>17.55–18.00 Tilaisuuden päätössanat<br> <br>Tilaisuus striimataan <u><a href=\"http://helsinkikanava.fi\">Helsinki-kanavalle</a></u></p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/74923BBB3B4C5D602CD737FC2B4CE7FE/_StopHatredNow_Vihapuhe_ei_ole_vain_vihaista_puhetta"
            },
            "name": {
                "fi": "#StopHatredNow: Vihapuhe ei ole vain vihaista puhetta"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59897/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agdmai5cti",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3542/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8014/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 90496,
                    "license": "event_only",
                    "created_time": "2023-03-08T07:26:01.800396Z",
                    "last_modified_time": "2023-03-08T07:27:48.724868Z",
                    "name": "WFY_to16.3_face.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/WFY_to16.3_face.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "Iloinen nainen ja mies istuvat, WorkForyou-tapahtuma",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/90496/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-03-08T07:33:26.322898Z",
            "last_modified_time": "2023-03-08T08:26:34.523104Z",
            "date_published": null,
            "start_time": "2023-04-04T07:00:00Z",
            "end_time": "2023-04-04T13: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,
            "short_description": {
                "fi": "The event is intended for international job seekers and for companies in which working in English, or with limited Finnish or Swedish skills is possible."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Looking for a job? Come and join the brand-new Work for You Recruitment Event!&nbsp;</p><p>At the first-ever Work for You recruitment event, job seekers have the chance to meet various employers from all over Uusimaa region! The event is intended for international job seekers and for companies in which working in English, or with limited Finnish or Swedish skills is possible. &nbsp;</p><p><strong>The event will include:</strong></p><ul><li>Dozens of recruiting companies</li><li>CV councelling in English, Finnish, Swedish, Russian and Nepali</li><li>LinkedIn ja Personal Pitch Boost Camp workshops</li><li>CV Photography (free of charge)</li><li>Presentations of services for job seekers</li><li>Free Childcare</li></ul><p>The main languages used at the event are Finnish and English.</p><p><strong>The event is free of charge for everyone.&nbsp;</strong>&nbsp;</p><p>The event is organised by the Centre for Economic Development, Transport and the Environment and Uusimaa TE Office. &nbsp;</p><p>Welcome!&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": "https://workforyou.fi/en/work-for-you-english/"
            },
            "name": {
                "fi": "Work for You Recruitment Event"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdmai5cti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agdmaht5lu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3542/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8014/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 90496,
                    "license": "event_only",
                    "created_time": "2023-03-08T07:26:01.800396Z",
                    "last_modified_time": "2023-03-08T07:27:48.724868Z",
                    "name": "WFY_to16.3_face.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/WFY_to16.3_face.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "Iloinen nainen ja mies istuvat, WorkForyou-tapahtuma",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/90496/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-03-08T07:27:49.145741Z",
            "last_modified_time": "2023-03-08T07:27:49.145790Z",
            "date_published": null,
            "start_time": "2023-04-04T07:00:00Z",
            "end_time": "2023-04-04T13: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,
            "short_description": {
                "fi": "Tapahtuma on suunnattu ulkomailta muuttaneille työnhakijoille, ja sellaisille yrityksille, jotka eivät vaadi työntekijöiltään hyvää suomen kielen taitoa. "
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p><strong>Etsitkö töitä? Puhutko hieman suomea tai englantia? Tule mukaan Work for You -rekrytapahtumaan!</strong>&nbsp;</p><p>Helsingin kaupungintalolla järjestetään 4. huhtikuuta 2023 Work for You -rekrytointitapahtuma, jossa kohtaavat Uudenmaan työnantajat ja kansainväliset työnhakijat. Kaikki paikalla olevat yritykset tarjoavat työpaikkoja, joissa et tarvitse hyvää suomen kieltä tai voit tehdä töitä englanniksi.&nbsp;&nbsp;<br><br><strong>Tapahtumassa on:</strong></p><ul><li>Kymmeniä rekrytoivia yrityksiä eri aloilta</li><li>CV-neuvontaa eri kielillä (suomi, englanti, ruotsi, venäjä, nepali)</li><li>LinkedIn ja Personal Pitch Boost Camp -työpajoja</li><li>Ilmainen CV-valokuvaus</li><li>Työnhakua tukevien palveluiden esittelyä</li><li>Ilmainen lastenhoito&nbsp;</li></ul><p><br>Tapahtuman pääkielet ovat suomi ja englanti.&nbsp;</p><p><strong>Tapahtuma on maksuton. &nbsp;</strong></p><p>Tapahtuman järjestävät Uudenmaan ELY-keskus ja TE-toimisto yhteistyössä Helsingin kaupungin kanssa.</p><p>Lämpimästi tervetuloa verkostoitumaan!&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": "https://workforyou.fi/"
            },
            "name": {
                "fi": "Work for you -rekrytointitapahtuma"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdmaht5lu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agc2wnil4u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9860/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 83836,
                    "license": "cc_by",
                    "created_time": "2022-09-15T09:00:26.382056Z",
                    "last_modified_time": "2022-09-15T09:01:09.961789Z",
                    "name": "Kuva 33_LUOTETTAVA TYONTEKIJA.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kuva_33.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kuva 33_LUOTETTAVA TYONTEKIJA.jpg",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/83836/?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": "2023-01-13T12:57:38.553535Z",
            "last_modified_time": "2023-01-13T13:07:10.707137Z",
            "date_published": null,
            "start_time": "2023-01-26T08:00:00Z",
            "end_time": "2023-01-26T13: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,
            "short_description": {
                "fi": "Tervetuloa työllistymään!"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helsingin kaupungin työllisyyspalvelut ja Vastuu Group järjestävät kiinteistöpalvelu- puhtaanapito-, rakentaminen- kuljetus- logistiikka ja teollisuudenaloille keskittyvän rekrytointitapahtuman.</p><p><strong>Miksi sinun kannattaa osallistua rekrytointitapahtumaan?</strong></p><ol><li>Tapaa tunnettujen työnantajien rekrytoijia ja keskustele avoimista työmahdollisuuksista.</li><li>Tapaa koulutuksentarjoajia ja keskustele, miten voisit lähteä kehittämään osaamistasi.</li><li>Tapaa asiantuntijoita, jotka auttavat sinua luomaan työnhakuprofiilin<br>&nbsp;</li></ol><p><strong>Miten voit valmistautua rekrytointitapahtumaan?</strong></p><ol><li>Tutustu työnantajien ja työllistymistä tukevien palveluiden tarjoamiin mahdollisuuksiin. Tapahtumassa ovat mukana mm. Adecco, Barona, Bolt.Works, Eezy, Folka, Sihti, WorkPower, Worker ja Rekrytointi.com</li><li>Tutustu koulutuksentarjoajien tarjoamiin koulutusmahdollisuuksiin. Tapahtumassa ovat mukana Stadin AO, Careeria, TTS Työtehoseura, LIVE, Helsingin Maalariammattikoulu, Taitotalo ja Rastor instituutti.</li><li>Luo itsellesi työnhakuprofiili Luotettava Työntekijä –palvelussa. Palvelu auttaa sinua oman osaamisesi tunnistamisessa ja sanoittamisessa sekä ehdottaa työnhakuprofiiliisi sopivia työpaikkoja Työmarkkinatorista, Oikotieltä ja Joblysta ja Tiituksesta.</li><li>Jaa työnhakuprofiilisi Luotettava Työntekijä –palvelun kautta sinua kiinnostaville työnantajille sekä työllistymistä tukeviin palveluihin. Rekrytointitapahtumassa pääset tapaamaan rekrytoijat, joille olet jakanut profiilisi ja keskustelemaan heidän kanssaan työmahdollisuuksista.</li></ol><p><br><strong>Luotettava Työntekijä -palvelu on uusi, helppokäyttöinen ja maksuton tapa hakea työtä</strong></p><ol><li>Palvelu auttaa oman osaamisen tunnistamisessa ja sanoittamisessa.</li><li>Palvelun tekoäly ehdottaa työnhakijan työnhakuprofiiliin sopivia työpaikkoja useista.</li><li>Palvelun kautta työhakija voi jakaa oman työnhakuprofiilin helposti ja turvallisesti useille eri työnantajille ja työllistymistä tukeviin palveluihin.</li><li>Palvelu auttaa hallitsemaan omia tietoja. Käyttäjä voi koska tahansa lopettaa omien tietojen jakamisen työnantajille ja työllistymistä tukeviin palveluihin.</li></ol><p><br><strong>Käyttöönottoa varten tarvitset pankkitunnukset tai mobiilivarmenteen sekä älypuhelimen, tabletin tai tietokoneen. </strong>Ota palvelu käyttöön!</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Tervetuloa työllistymään!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc2wnil4u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agbzz2gebi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kultus:15/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kultus:27/?format=api"
                },
                {
                    "@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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5164/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u320200",
            "sub_events": [],
            "images": [
                {
                    "id": 84531,
                    "license": "cc_by",
                    "created_time": "2022-10-03T08:08:36.784615Z",
                    "last_modified_time": "2022-10-06T11:58:50.367882Z",
                    "name": "Tervetuloa järjestöseminaariin!",
                    "url": "http://api.hel.fi/linkedevents/media/images/jobd_hiba_mariecharlotte_Maija_Astikainen-6_2.jpg",
                    "cropping": "200,0,1000,799",
                    "photographer_name": "Maija Astikainen",
                    "alt_text": "Huivipäinen nainen kulkee seniorin kanssa.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/84531/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1393/?format=api"
                }
            ],
            "created_time": "2022-10-03T08:14:03.820993Z",
            "last_modified_time": "2022-10-19T11:20:17.426019Z",
            "date_published": null,
            "start_time": "2022-11-15T13:00:00Z",
            "end_time": "2022-11-15T16: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": "2022-09-29T00:00:00+03:00",
            "enrolment_end_time": "2022-10-28T00:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan uudistuksen vaikutuksista Helsingin sotepe-palveluihin ja kaupungin tapaan tehdä yhteistyötä järjestöjen kanssa.",
                "sv": "Diskuteras hur reformen påverkar tjänster i Helsingfors och stadens metoder för samarbetet med organisationer."
            },
            "provider": {
                "fi": "",
                "sv": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa sosiaali-, terveys- ja pelastuspalvelujen järjestöjen seminaariin!&nbsp;&nbsp;</p>\n<p><br>Seminaarissa keskustellaan sosiaali-, terveys- ja pelastuspalvelujen uudistuksen vaikutuksista Helsingin sotepe-palveluihin, uudesta palvelustrategiasta, kaupungin tavasta tehdä yhteistyötä järjestöjen kanssa sotepe-uudistuksen jälkeen ja järjestöjä koskevan hyvinvoinnin ja terveyden edistämisen neuvottelumallin valmistelusta. Seminaarin osallistujilla on mahdollisuus esittää kysymyksiä ja huomioita puhujille tilaisuuden aikana paikan päällä ja viestiseinän kautta.&nbsp;&nbsp;&nbsp;</p>\n<p>Seminaariin voi osallistua ilmoittautumalla osallistujaksi kaupungintalolla tai seuraamalla suoraa lähetystä <a href=\"https://www.helsinkikanava.fi/fi/web/helsinkikanava/player/event/home?eventId=200394739\">Helsinki-kanavalla</a>.  Suoraa lähetystä seuraavat voivat osallistua keskusteluun esittämällä kysymyksiä ja huomioita viestiseinän kautta.&nbsp;</p>\n<p>Tilaisuuden esityskieli on suomi.</p>\n<p>Tilaisuuden alussa on kahvitarjoilu. Ilmoittauduthan seminaariin viimeistään perjantaina 28.10.2022 <a href=\"https://response.questback.com/isa/qbv.dll/bylink?p=G7FcKRmXthFs-nNi41QQLxMBAi1iXk0dxD5Npgtqr2oP-RZzutgGlbr9SjahQ_a80\">tästä linkistä.</a>&nbsp;</p>\n<p><strong>Ohjelma</strong></p>\n<p>klo 15.00 Kahvitarjoilu&nbsp;</p>\n<p>klo 15.15 Seminaari alkaa.&nbsp;&nbsp;</p>\n<p>· Sotepe-uudistuksen<br>vaikutukset Helsingin sotepe-palveluihin, sosiaali- ja terveystoimen apulaispormestari Daniel Sazonov.&nbsp;</p>\n<p>· Sotepen palvelustrategia, sosiaali- ja terveystoimen toimialajohtaja Juha Jolkkonen.</p>\n<p>· Seminaarin osallistujilla on mahdollisuus esittää kysymyksiä ja huomioita livenä ja viestiseinän kautta.&nbsp;&nbsp;</p>\n<p>· Kaupungin järjestöyhteistyö ja järjestöavustukset sotepe-uudistuksen jälkeen, kaupunginkanslian osallisuus- ja neuvontayksikön päällikkö Johanna Seppälä.&nbsp;&nbsp;</p>\n<p>· Ajankohtaiskatsaus järjestöjä koskevan hyvinvoinnin ja terveyden edistämisen neuvottelumallin valmisteluun, kaupunginkanslian strategiapäällikkö vs. Reetta Sariola.</p>\n<p>· Kommenttipuheenvuoro, järjestöasiantuntija Ilari Karhumalja, Järjestöjen sote-muutostuki, Hyte ry / SOSTE.</p>\n<p>klo 18.00 Seminaari päättyy.&nbsp;&nbsp;</p>\n<p>&nbsp;</p>",
                "sv": "<p>&nbsp;Välkommen till organisationsseminariet!&nbsp;&nbsp;&nbsp;</p>\n<p>Under seminariet diskuteras hur reformen av social-, hälsovårds- och räddningstjänsterna påverkar dessa tjänster i Helsingfors. Dessutom behandlas den nya servicestrategin, stadens metoder för samarbetet med organisationer efter reformen samt beredningen av förhandlingsmodellen för främjande av välbefinnande och hälsa som gäller organisationerna. Seminariedeltagarna har möjlighet att ställa frågor och framföra synpunkter till talarna under seminariet både live och via chatten.&nbsp;&nbsp;</p>\n<p>För att delta, anmäl dig till seminariet i stadshuset eller följ direktsändningen på Helsingforskanalen på <a href=\"https://www.helsinkikanava.fi/sv/\">https://www.helsinkikanava.fi/sv/</a> . De som följer direktsändningen kan delta i diskussionen genom att ställa frågor och framföra synpunkter via chatten.&nbsp;</p>\n<p>Seminariet hålls på finska.&nbsp;</p>\n<p>Seminariet inleds med kaffe. Anmäl dig till seminariet senast fredag 28.10.2022 <a href=\"https://response.questback.com/helsote/v4fbtow1j7\">här</a> .&nbsp;&nbsp;</p>\n<p><strong>Programmet </strong></p>\n<p>kl. 15.00 kaffe&nbsp;&nbsp;</p>\n<p>kl. 15.15 seminariet inleds&nbsp;&nbsp;</p>\n<p>· Effekterna av reformen av social-, hälsovårds- och räddningstjänsterna på social-, hälsovårds- och räddningstjänsterna i Helsingfors, biträdande borgmästare för social- och hälsovårdssektorn Daniel Sazonov.&nbsp;</p>\n<p>· Servicestrategin för social-, hälsovårds- och räddningstjänsterna, sektorchef för social- och hälsovårdssektorn Juha Jolkkonen.</p>\n<p>· Seminariedeltagarna har möjlighet att ställa frågor och framföra synpunkter under seminariet live och via chatten.</p>\n<p>· Stadens samarbete med organisationer och organisationsbidrag efter reformen av social-, hälsovårds- och räddningstjänsterna, chef för stadskansliets enhet för deltagande och rådgivning Johanna Seppälä.&nbsp;</p>\n<p>· Lägesöversikt över beredningen av förhandlingsmodellen för främjande av välbefinnande och hälsa som gäller organisationerna, stadskansliets strategichef stf. Reetta Sariola.</p>\n<p>· Kommentar, organisationsexpert Ilari Karhumalja, projektet Järjestöjen sote-muutostuki, Hyte ry/SOSTE.</p>\n<p>kl. 18.00 seminariet avslutas.&nbsp;</p>\n<p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Valtuustosali",
                "sv": "Fullmäktigesalen "
            },
            "info_url": {
                "fi": "https://www.helsinkikanava.fi/fi/web/helsinkikanava/player/event/home?eventId=200394739",
                "sv": "https://www.helsinkikanava.fi/sv/web/helsinkikanava/player/event/home?eventId=200394739"
            },
            "name": {
                "fi": "Seminaari:  Järjestöyhteistyö Helsingissä sote-uudistuksen jälkeen ",
                "sv": "Seminarium: Organisationssamarbetet i Helsingfors efter social- och hälsovårdsreformen"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agbzz2gebi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agajsrmxtq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?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,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u02120030",
            "sub_events": [],
            "images": [
                {
                    "id": 79617,
                    "license": "cc_by",
                    "created_time": "2022-05-06T12:06:06.907784Z",
                    "last_modified_time": "2022-05-06T12:08:36.269766Z",
                    "name": "entrepreneurdayforwomen_rajattu.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/entrepreneurdayforwomen_rajattu.png",
                    "cropping": "298,0,902,605",
                    "photographer_name": "",
                    "alt_text": "entrepreneurdayforwomen_rajattu.png",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/79617/?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": "2022-05-06T12:08:36.530794Z",
            "last_modified_time": "2022-05-06T12:13:19.139353Z",
            "date_published": null,
            "start_time": "2022-06-06T09:00:00Z",
            "end_time": "2022-06-06T13: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,
            "short_description": {
                "fi": "-"
            },
            "provider": {
                "fi": "Helsingin työllisyyspalvelut"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p><strong>Welcome to Entrepreneur Day for Women at the Helsinki City Hall!</strong></p>\n<p>Are you interested in opening a business in Finland? Or do you wish to boost your existing business operations? Would you like to learn more, be inspired by other female entrepreneurs, get new and valuable connections, and find your inner entrepreneurial strength?&nbsp;</p>\n<p>Join us in learning and empowering women entrepreneurs.  We have gathered an awesome crowd of inspiring, experienced, and knowledgeable women to talk about this valuable subject.&nbsp;</p>\n<p><strong>12.00-12.10 </strong>Welcome&nbsp;</p>\n<p><strong>12.10-12.25 </strong>Opening words&nbsp;</p>\n<p><strong>12.30-13.00</strong> Kati Lappeteläinen, Startup Refugees: How to start a business in Finland&nbsp;</p>\n<p>We hear more on how to start a business in Finland by <strong>Kati Lappeteläinen</strong>, Head of business program of Startup Refugees. Startup refugees has helped people to start companies and find employment in Finland since 2015.&nbsp;</p>\n<p><strong>13.05-13.35</strong> Pamela Spokes, Discover Design Do: A successful entrepreneur in Finland&nbsp;</p>\n<p><strong>Pamela Spokes</strong>, Founder, Discover Design Do is a service designer and teacher who is passionate about designing impactful user experiences and teaching others how to do the same. Using her diverse skillset, she helps others to design better services – whatever their business is. She will talk about what you need to be successful as an entrepreneur in Finland.&nbsp;</p>\n<p><strong>13.50-14.20</strong> Sallamaari Muhonen: Marketing is more&nbsp;</p>\n<p><strong>Sallamaari Muhonen</strong>, a long time PR and marketing professional, journalist, keynote speaker and non-fiction writer will talk about how Marketing is more: so much more than just advertising or social media! She will lead us through the basic practices of b2b and b2c marketing.&nbsp;</p>\n<p><strong>14.25-14.55 </strong>Fadumo Ali, Hoiwa Oy: An entrepreneur story&nbsp;</p>\n<p><strong>Fadumo Ali</strong>, Espoo’s Entrepreneur of the year 2021 will share her incredible success story of how her company Hoiwa Oy has grown in just two years to employ over 2500 healthcare professionals with a turnover of 4,2m€.&nbsp;</p>\n<p><strong>15.00-15.30 </strong>Amina ja Hodan Mohamed: Group work on finding your inner strength as an entrepreneur&nbsp;</p>\n<p><strong>Amina and Hodan Mohamed</strong>, will lead us to a group work on empowerment, believing in yourself and putting that to use in entrepreneurship. Amina Mohamed is the founder of Qj-Diasporassa. She educates companies and communities in integrating diversity into their functions, and benefit from it. Hodan Mohamed is an equality expert and one of the founders of Hodan ja Halla.&nbsp;</p>\n<p><strong>15.30-16.00 </strong>Networking, coffee and refreshments.&nbsp;</p>\n<p>The event is free of charge for all participants.&nbsp;</p>\n<p><a href=\"https://www.eventbrite.com/e/entrepreneur-day-for-women-tickets-332932910297\"><strong>&gt;&gt;&gt; To register for the event, click here &gt;&gt;&gt;  </strong></a>&nbsp;</p>\n<p>Please register on Eventbrite first. The registration is binding, so please come to the event on June 6, 2022. If you wish to cancel your registration later, you may do so on Eventbrite or by sending us email <a href=\"mailto:yrityshelsinki@hel.fi\">yrityshelsinki@hel.fi </a>&nbsp;</p>\n<p>Location: Helsinki City Hall, Pohjoisesplanadi 11-13, 00710, Helsinki, Finland <a href=\"https://www.eventbrite.com/e/entrepreneur-day-for-women-tickets-332932910297#listings-root__event-location-map\">View Map  </a>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Entrepreneur Day for Women "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agajsrmxtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23cf24zi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p25338/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/2720657031483703/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "12€",
                        "en": "12€"
                    },
                    "info_url": {
                        "fi": "https://www.varaaheti.fi/friskishelsinki/fi",
                        "en": "https://www.varaaheti.fi/friskishelsinki/fi"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3aji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3axm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 67982,
                    "license": "event_only",
                    "created_time": "2020-11-10T07:19:31.208677Z",
                    "last_modified_time": "2020-11-10T07:19:31.208701Z",
                    "name": "Liikuntaloitsu",
                    "url": "http://api.hel.fi/linkedevents/media/images/123008590_3690297804369659_.jpg",
                    "cropping": "286,0,914,628",
                    "photographer_name": "Friskis&Svettis Helsinki ry",
                    "alt_text": "Valoa pimeydessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-10T07:38:19.740898Z",
            "last_modified_time": "2020-11-30T13:15:32.987974Z",
            "date_published": null,
            "start_time": "2020-11-17T17:00:00Z",
            "end_time": "2020-12-05T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Liikuntaloitsu - valon tanssia kaupunkivaelluksella",
                "en": "City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park."
            },
            "provider": {
                "fi": "Friskis&Svettis Helsinki ry",
                "en": "Friskis&Svettis Helsinki ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Liikuntaloitsu - valon tanssia kaupunkivaelluksella</p><p>Liikuntaloitsu on noin kahden tunnin ohjelmallinen kävely Etelä-Helsingin kaamoksessa. Taiteen ja yhdessä kokemisen avulla valotetaan tutustakin ympäristöstä esiin uusia piirteitä, jotka kannustavat löytöretkelle lähiympäristöön. Joogahetki  Kaivopuistossa palauttaa mieleen kesän muistot. </p><p>Reitti kulkee Kaupungintalolta Tähtitorninmäen ja Kaivopuiston kautta Olympiaterminaaliin. </p><p>Lähtö Kaupungintalon edestä<br>17.11. klo 19-21 ja 5.12. klo 16-18</p><p>Osallistumismaksu 12€, <br>varaukset: https://www.varaaheti.fi/friskishelsinki/fi</p><p>Max 20 osallistujaa, reitin pituus n. 5 km</p><p>Pukeudu lämpimästi. Ota mukaan erilaisia valoja: valokäädyt, otsalamput, taskulamput, valopannat ja heijastimet. Osallistujat luovat yhteisen elämyksen puistojen pimeyteen.</p>",
                "en": "<p>City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park.</p><p>The route runs from Helsinki City Hall through Tähtitorninmäki and Kaivopuisto Park to the Olympic Terminal. </p><p>Departure: In front of Helsinki City Hall<br>17.11. at 19.00-21.00 and 5.12. at 16.00-18.00</p><p>Admission fee 12€,<br>pre-registration: https://www.varaaheti.fi/friskishelsinki/fi<br> <br>Max. 20 persons, length approx. 5 km</p><p>Dress according to the weather. Bring a variety of lights: fairy lights, headlamps, flashlights and reflectors. The participants create a shared experience in the darkness of the parks.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat",
                "en": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat"
            },
            "name": {
                "fi": "Peruutettu: Liikuntaloitsu",
                "en": "Cancelled: City Hike With Lights"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf24zi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23cf3axm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p25338/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf24zi/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/2720657031483703/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "12€",
                        "en": "12€"
                    },
                    "info_url": {
                        "fi": "https://www.varaaheti.fi/friskishelsinki/fi",
                        "en": "https://www.varaaheti.fi/friskishelsinki/fi"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67982,
                    "license": "event_only",
                    "created_time": "2020-11-10T07:19:31.208677Z",
                    "last_modified_time": "2020-11-10T07:19:31.208701Z",
                    "name": "Liikuntaloitsu",
                    "url": "http://api.hel.fi/linkedevents/media/images/123008590_3690297804369659_.jpg",
                    "cropping": "286,0,914,628",
                    "photographer_name": "Friskis&Svettis Helsinki ry",
                    "alt_text": "Valoa pimeydessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-10T07:38:20.747182Z",
            "last_modified_time": "2020-11-30T13:15:32.875220Z",
            "date_published": null,
            "start_time": "2020-12-05T14:00:00Z",
            "end_time": "2020-12-05T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Liikuntaloitsu - valon tanssia kaupunkivaelluksella",
                "en": "City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park."
            },
            "provider": {
                "fi": "Friskis&Svettis Helsinki ry",
                "en": "Friskis&Svettis Helsinki ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Liikuntaloitsu - valon tanssia kaupunkivaelluksella</p><p>Liikuntaloitsu on noin kahden tunnin ohjelmallinen kävely Etelä-Helsingin kaamoksessa. Taiteen ja yhdessä kokemisen avulla valotetaan tutustakin ympäristöstä esiin uusia piirteitä, jotka kannustavat löytöretkelle lähiympäristöön. Joogahetki  Kaivopuistossa palauttaa mieleen kesän muistot. </p><p>Reitti kulkee Kaupungintalolta Tähtitorninmäen ja Kaivopuiston kautta Olympiaterminaaliin. </p><p>Lähtö Kaupungintalon edestä<br>17.11. klo 19-21 ja 5.12. klo 16-18</p><p>Osallistumismaksu 12€, <br>varaukset: https://www.varaaheti.fi/friskishelsinki/fi</p><p>Max 20 osallistujaa, reitin pituus n. 5 km</p><p>Pukeudu lämpimästi. Ota mukaan erilaisia valoja: valokäädyt, otsalamput, taskulamput, valopannat ja heijastimet. Osallistujat luovat yhteisen elämyksen puistojen pimeyteen.</p>",
                "en": "<p>City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park.</p><p>The route runs from Helsinki City Hall through Tähtitorninmäki and Kaivopuisto Park to the Olympic Terminal. </p><p>Departure: In front of Helsinki City Hall<br>17.11. at 19.00-21.00 and 5.12. at 16.00-18.00</p><p>Admission fee 12€,<br>pre-registration: https://www.varaaheti.fi/friskishelsinki/fi<br> <br>Max. 20 persons, length approx. 5 km</p><p>Dress according to the weather. Bring a variety of lights: fairy lights, headlamps, flashlights and reflectors. The participants create a shared experience in the darkness of the parks.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat",
                "en": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat"
            },
            "name": {
                "fi": "Peruutettu: Liikuntaloitsu",
                "en": "Cancelled: City Hike With Lights"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3axm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23cf3aji",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p25338/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf24zi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/2720657031483703/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "12€",
                        "en": "12€"
                    },
                    "info_url": {
                        "fi": "https://www.varaaheti.fi/friskishelsinki/fi",
                        "en": "https://www.varaaheti.fi/friskishelsinki/fi"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67982,
                    "license": "event_only",
                    "created_time": "2020-11-10T07:19:31.208677Z",
                    "last_modified_time": "2020-11-10T07:19:31.208701Z",
                    "name": "Liikuntaloitsu",
                    "url": "http://api.hel.fi/linkedevents/media/images/123008590_3690297804369659_.jpg",
                    "cropping": "286,0,914,628",
                    "photographer_name": "Friskis&Svettis Helsinki ry",
                    "alt_text": "Valoa pimeydessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-10T07:38:20.635306Z",
            "last_modified_time": "2020-11-10T07:38:20.635332Z",
            "date_published": null,
            "start_time": "2020-11-17T17:00:00Z",
            "end_time": "2020-11-17T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Liikuntaloitsu - valon tanssia kaupunkivaelluksella",
                "en": "City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park."
            },
            "provider": {
                "fi": "Friskis&Svettis Helsinki ry",
                "en": "Friskis&Svettis Helsinki ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Liikuntaloitsu - valon tanssia kaupunkivaelluksella</p><p>Liikuntaloitsu on noin kahden tunnin ohjelmallinen kävely Etelä-Helsingin kaamoksessa. Taiteen ja yhdessä kokemisen avulla valotetaan tutustakin ympäristöstä esiin uusia piirteitä, jotka kannustavat löytöretkelle lähiympäristöön. Joogahetki  Kaivopuistossa palauttaa mieleen kesän muistot. </p><p>Reitti kulkee Kaupungintalolta Tähtitorninmäen ja Kaivopuiston kautta Olympiaterminaaliin. </p><p>Lähtö Kaupungintalon edestä<br>17.11. klo 19-21 ja 5.12. klo 16-18</p><p>Osallistumismaksu 12€, <br>varaukset: https://www.varaaheti.fi/friskishelsinki/fi</p><p>Max 20 osallistujaa, reitin pituus n. 5 km</p><p>Pukeudu lämpimästi. Ota mukaan erilaisia valoja: valokäädyt, otsalamput, taskulamput, valopannat ja heijastimet. Osallistujat luovat yhteisen elämyksen puistojen pimeyteen.</p>",
                "en": "<p>City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park.</p><p>The route runs from Helsinki City Hall through Tähtitorninmäki and Kaivopuisto Park to the Olympic Terminal. </p><p>Departure: In front of Helsinki City Hall<br>17.11. at 19.00-21.00 and 5.12. at 16.00-18.00</p><p>Admission fee 12€,<br>pre-registration: https://www.varaaheti.fi/friskishelsinki/fi<br> <br>Max. 20 persons, length approx. 5 km</p><p>Dress according to the weather. Bring a variety of lights: fairy lights, headlamps, flashlights and reflectors. The participants create a shared experience in the darkness of the parks.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat",
                "en": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat"
            },
            "name": {
                "fi": "Liikuntaloitsu",
                "en": "City Hike With Lights"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3aji/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afx4fcj3x4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3128/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/OlenSuperAda/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/OlenSuperAda/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/olensuperada/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 62252,
                    "license": "event_only",
                    "created_time": "2020-01-21T11:23:55.097621Z",
                    "last_modified_time": "2020-01-21T11:23:55.097643Z",
                    "name": "Super-Ada",
                    "url": "http://api.hel.fi/linkedevents/media/images/Super-Ada.jpg",
                    "cropping": "576,0,1344,768",
                    "photographer_name": "Super-Ada",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/62252/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2020-01-20T10:39:31.271306Z",
            "last_modified_time": "2020-01-21T11:25:16.386345Z",
            "date_published": null,
            "start_time": "2020-02-07T13:00:00Z",
            "end_time": "2020-02-07T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Super-Ada -tapahtuman tarkoituksena on kannustaa 16-22-vuotiaita nuoria naisia it-alalle.",
                "en": "Super-Ada event on February 7th at Helsinki City Hall aims at encouraging girls and young women to study technology by representing the IT industry"
            },
            "provider": {
                "fi": "Nice Tuesday ry",
                "en": "Nice Tuesday ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Super-Ada -tapahtuman tarkoituksena on kannustaa 16-22-vuotiaita nuoria naisia it-alalle.</p><p>Tapahtuma järjestetään Helsingin kaupungintalolla perjantaina 7.2.2020 klo 15-18. Kilpailun pääpalkintona on kesätyöpaikka it-alan yrityksessä. </p><p>Super-Ada-tapahtuman ytimen muodostaa rastirata, jossa nuoret tutustuvat kiinnostavalla tavalla tietotekniikka-alan eri työtehtäviin, tapaavat tietotekniikka-alan opiskelijoita ja kuulevat eri opintomahdollisuuksista. Aiempia ennakkotietoja it-alasta tai ohjelmoinnista ei tarvitse olla. </p><p>Tapahtumassa jaetaan myös muita palkintoja, kuten yrityksen järjestämä koodaustyöpaja sekä laitepalkintoja. Maksuton tapahtuma toteutetaan vapaaehtoisvoimin tietotekniikka-alan yritysten, verkostojen ja oppilaitosten yhteistyönä.<br>Lisätietoja ja ilmoittautuminen: www.superada.net</p><p>Helsingin kaupungintalo<br>7.2. klo 15-18</p><p>Vapaa pääsy</p>",
                "en": "<p>Super-Ada event on February 7th at Helsinki City Hall aims at encouraging girls and young women to study technology by representing the IT industry now and in the future. </p><p>The primal theme of the event is a fun competition track consisting of different technology-related work tasks. The girls compete in teams of 3-4. There are seven different stations and the winning team will be rewarded with summer jobs. </p><p>Helsinki City Hall<br>7.2.  15.00-18.00</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.superada.net",
                "en": "http://www.superada.net/brief-in-english/"
            },
            "name": {
                "fi": "Super-Ada",
                "en": "Super-Ada"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afx4fcj3x4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afxh3wkjiu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5554/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/448278342492991/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "http://www.instagram.com/torikorttelit",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 60205,
                    "license": "cc_by",
                    "created_time": "2019-11-18T08:53:29.213194Z",
                    "last_modified_time": "2019-11-18T08:53:29.213216Z",
                    "name": "Kestävä joulukuusi -näyttely",
                    "url": "http://api.hel.fi/linkedevents/media/images/45628538064_cf0a46aa42_k.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Torikorttelit (c) Jussi Hellsten",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-11-18T09:30:22.411500Z",
            "last_modified_time": "2019-11-18T09:30:22.411530Z",
            "date_published": null,
            "start_time": "2019-11-24T12:00:00Z",
            "end_time": "2019-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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Torikortteleiden sisäpihoille avautuu Kestävä joulukuusi -näyttely marraskuussa.",
                "en": "Christmas Tree Exhibition will be opened in the courtyard of Helsinki City Hall."
            },
            "provider": {
                "fi": "Torikorttelit",
                "en": "Tori Quarters"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Torikortteleiden sisäpihoille avautuu Kestävä joulukuusi -näyttely marraskuussa.</p><p>Mukaan on haastettu eri alojen tunnettuja henkilöitä ja ryhmiä koristelemaan kukin joulukuusi omalla tyylillään ja tarinallaan.</p><p>Mukana ovat Täydellinen Joulu -elokuvan Maria Ylipää, Elena Leeve, Iikka Forss, toimittaja ja mediapersoona Mikko ”Peltsi” Peltola, Fok_it -sarjakuvan piirtäjä Joonas Rinta-Kanto, toimittaja-bloggaaja Noora Shingler ja Skidit-tiimi.</p><p>Kaupungintalon sisäpiha<br>24.11.-24.12.</p><p>Vapaa pääsy</p>",
                "en": "<p>Christmas Tree Exhibition will be opened in the courtyard of Helsinki City Hall.</p><p>Each tree has a unique decoration and story behind. The opening festivities will start in the courtyard of the Helsinki City Hall and the trees will be revealed one by one. </p><p>Helsinki City Hall, courtyard<br>24.11.-24.12.</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/events/448278342492991/",
                "en": "https://www.facebook.com/events/448278342492991/"
            },
            "name": {
                "fi": "Kestävä joulukuusi -näyttely",
                "en": "Christmas Tree Exhibition"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afxh3wkjiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afxcbwisze",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/helsinkieducationweek/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/helsinkioppii?lang=en",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/helsinki_oppii/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 59789,
                    "license": "cc_by",
                    "created_time": "2019-10-31T07:52:48.418213Z",
                    "last_modified_time": "2019-10-31T07:52:48.418233Z",
                    "name": "Helsinki Education Week 2019",
                    "url": "http://api.hel.fi/linkedevents/media/images/HEW_tunnus.jpg",
                    "cropping": "159,0,1023,864",
                    "photographer_name": "Helsinki Education Week",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/59789/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:2/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2019-10-31T08:05:27.376313Z",
            "last_modified_time": "2019-10-31T08:05:27.376340Z",
            "date_published": null,
            "start_time": "2019-11-03T22:01:00Z",
            "end_time": "2019-11-08T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsinki Education Week toteutetaan tänä vuonna toisen kerran. Viikon aikana järjestetään yli 200 tapahtumaa ympäri kaupunkia.",
                "sv": "Under Helsinki Education Week, som hålls för andra gången, ordnas sammanlagt över 250 evenemang med koppling till lärande – en del av dem på svenska. ",
                "en": "Helsinki Education Week will be held in November for the 2nd time. "
            },
            "provider": {
                "fi": "Helsingin kaupunki, Kasko",
                "sv": "City of Helsinki, Education Department",
                "en": "City of Helsinki, Education Department"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helsinki Education Week toteutetaan tänä vuonna toisen kerran. Viikon aikana järjestetään yli 200 tapahtumaa ympäri kaupunkia. </p><p>Tavoitteena on, että kaikkea sitä hyvää mitä Helsingissä jo tehdään, avataan opettajille ja oppijoille, oppilaitostenjohdolle, huoltajille ja kasvatuksesta kiinnostuneelle laajalle yleisölle. </p><p>Viikon aikana Helsinkiin saapuu myös satoja kansainvälisiä koulutuksen ammattilaisia sekä kansainvälistä mediaa. Helsinki haluaa panostaa vertaisoppimiseen ja elinikäiseen oppimiseen. </p><p>Helsinki<br>4.-8.11.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Under Helsinki Education Week, som hålls för andra gången, ordnas sammanlagt över 250 evenemang med koppling till lärande – en del av dem på svenska. </p><p>Evenemangen ordnas runt om i staden och i år ligger huvudfokus på de lärandes röst och välmående samt helhetsbetonat lärande. </p><p>Daghem, skolor och läroinrättningar i Helsingfors presenterar sin verksamhet och goda modeller för lärande. Det kommer att finnas en mängd evenemang att välja mellan, såsom workshoppar, uppgiftsbanor och diskussionstillfällen. Samtidigt kan man lära sig av de bästa i världen och samarbeta med de internationella utbildningsexperter som anländer till Helsingfors.</p><p>Helsingfors<br>4.-8.11.</p><p>Fritt inträde</p>",
                "en": "<p>Helsinki Education Week will be held in November for the 2nd time. The number of events has more than doubled from last year: Helsinki’s day care centres, schools and educational institutions will be organising over 200 events related to learning around the city.<br>The event week programme emphasises the voice of the learner, well-being and comprehensive learning. </p><p>The week promises to filled with a wide variety of events organised by learners, such as workshops and discussion sessions, focusing on topics such as coming up with ways to increase participation, showcasing people’s own enterprises, relaxing the body and mind and coming up with ideas for and preparing new school lunches. </p><p>Many of the events also will involve learning with the help of new technologies, such as robotics and game platforms.</p><p>Helsinki<br>4.-8.11.</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://helsinkieducationweek.com/fi",
                "sv": "https://helsinkieducationweek.com/en",
                "en": "https://helsinkieducationweek.com/en"
            },
            "name": {
                "fi": "Helsinki Education Week 2019",
                "sv": "Helsinki Education Week 2019",
                "en": "Helsinki Education Week 2019"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afxcbwisze/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afvctvbxkq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:13/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2382/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2386/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26655/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p28404/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/345294636334326/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/HRInfoshare",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:02300",
            "sub_events": [],
            "images": [
                {
                    "id": 54637,
                    "license": "cc_by",
                    "created_time": "2019-04-17T05:35:45.016636Z",
                    "last_modified_time": "2019-04-17T05:35:45.016658Z",
                    "name": "Helsinki Loves Developers 22.5.2019",
                    "url": "http://api.hel.fi/linkedevents/media/images/HelLovesDev_220519.jpg",
                    "cropping": "224,0,736,511",
                    "photographer_name": "",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:02300",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/54637/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2019-04-17T05:45:34.810527Z",
            "last_modified_time": "2019-05-09T10:06:39.993275Z",
            "date_published": null,
            "start_time": "2019-05-22T12:00:00Z",
            "end_time": "2019-05-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa Helsinki Loves Developers -tilaisuuteen oppimaan, verkostoitumaan, osallistumaan ja luomaan yhdessä energianmuutosta edistäviä ratkaisuja!",
                "en": "Welcome to Helsinki Loves Developers event to learn, network, contribute and co-create solutions to boost energy transition!"
            },
            "provider": {
                "fi": "Helsinki Region Infoshare",
                "en": "Helsinki Region Infoshare"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helsinki haluaa olla hiilineutraali vuoteen 2035 mennessä – käytännössä tämä edellyttää suurta muutosta energiankulutuksessa ja -lähteissä tulevina vuosina! Muutoksessa tarvitaan sopivaa dataa, jotta voimme ymmärtää kulutustapoja, tehdä muutoksia ja luoda uusia, kestäviä ratkaisuja. Helsingillä on paljon hyödyllistä dataa mm. rakennuksista ja energiankulutuksesta. Nämä avoimet datat ovat vapaasti myös sinun hyödynnettävissä hri.fi-palvelussa.</p><p>Mutta minkälaista energia- ja ympäristödataa on tarjolla? Ja kuinka dataa voisi hyödyntää esimerkiksi data-analytiikassa ja kiinteistöyhtiöille tai päättäjille kohdennettujen digitaalisten palvelujen luomisessa? Helsinki kannustaa sinua luomaan ratkaisuja ja ottamaan hyödyn irti avoimesta datasta! Tervetuloa ke 22.5.2019 klo 15-18 Helsinki Loves Developers -tilaisuuteen oppimaan, verkostoitumaan, osallistumaan ja luomaan yhdessä energianmuutosta edistäviä ratkaisuja!</p><p>Tilaisuus järjestetään Helsingin kaupungintalon ala-aulassa (Pohjoisesplanadi 11-13). Tilaisuuden ohjelma ja puhujat julkaistaan pian Facebookissa ja MeetUpissa. Tapahtumaan voi myös ilmoittautua joko Facebookin tai MeetUpin kautta.</p><p>https://www.facebook.com/events/345294636334326/<br>https://www.meetup.com/Open-Data-Finland/events/260668131/</p><p>Tilaisuus on kaikille avoin ja maksuton. Tilaisuus järjestetään englanniksi, mutta tarpeen mukaan esittelyjä ja keskustelua voidaan käydä myös suomeksi.</p>",
                "en": "<p>Helsinki aims to be carbon-neutral in 2035 - in practise this means a huge energy transition in coming years! The change requires appropriate data in order to understand consumption habits, make changes and create sustainable solutions. Helsinki has lots of useful data, e.g. buildings and energy consumption. These are also available for you as open data via hri.fi service.</p><p>But which kind of energy and environmental data is available? And how to utilise this data e.g. in data analytics or in creating digital services for housing companies, decision-makers etc.? Helsinki encourages you to create solutions and get benefits out of open data!</p><p>Welcome to Helsinki Loves Developers event to learn more, network, contribute and co-create solutions to boost energy transition!</p><p>A program and speakers will be published soon.</p><p>This event is open for everyone and free of charge. The event will be held in English but some presentations and discussions can also be held in Finnish if needed.</p><p>Venue: Helsinki City Hall, the entrance lobby (Tapahtumatori)</p><p>This event is also at Facebook and Meetup: https://www.facebook.com/events/345294636334326/<br>https://www.meetup.com/Open-Data-Finland/events/260668131/</p>"
            },
            "location_extra_info": {
                "fi": "Helsingin kaupungintalon ala-aulan Tapahtumatori",
                "en": "Venue: Helsinki City Hall, the entrance lobby (Tapahtumatori)"
            },
            "info_url": {
                "fi": "https://hri.fi/fi/helsinki-loves-developers-energiarenessanssi-helsingissa/",
                "en": "https://hri.fi/en_gb/helsinki-loves-developers-boosting-energy-transition/"
            },
            "name": {
                "fi": "Helsinki Loves Developers: Energiarenessanssi Helsingissä",
                "en": "Helsinki Loves Developers: Boosting energy transition in Helsinki"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afvctvbxkq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afr5se67ou",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p725/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p755/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-06-07T07:09:08.341989Z",
            "last_modified_time": "2018-06-07T07:09:08.350004Z",
            "date_published": null,
            "start_time": "2018-06-15T14:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Tribute to La Cumparsita",
                "en": "Tribute to La Cumparsita"
            },
            "provider": {
                "fi": "Uruguayn Suurlähetystö",
                "en": "Embassy of Uruguay"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Roberto Firpon orkesteri soitti La Cumparsitan ensimmäistä kertaa vuonna 1917 Café la Giraldassa, Uruguayn pääkaupungissa Montevideossa.</p><p>Alkuperäisen musiikin on säveltänyt nuori arkkitehti Gerardo Matos Rodriguez. Carlos Gardel levytti sen ensimmäistä kertaa vasta vuonna 1924, kun Pascual Contursi oli kirjoittanut siihen sanat.</p><p>La Cumparsitasta on muotoutunut yksi kaikkien aikojen tunnetuimmista ja suosituimmista tangoista.</p><p>Musiikki:<br/>Carlos Gardel and Gerardo Matos Rodriguez</p><p>Sodre's Chamber Music Orchestra</p><p>Sodre´s Escuela Nacional de Danza</p><p>Kaupungintalo, juhlasali</p>",
                "en": "<p>A Tribute to La Cumparsita </p><p>In 1917, Roberto Firpo's Orchestra played La Cumparsita for the first time at the Café la Giralda in the City of Montevideo. </p><p>The original music was composed by a young architect, Gerardo Matos Rodriguez. But, it was not until the year 1924 when Carlos Gardel first recorded it as a song with lyrics written by Pascual Contursi. </p><p>The discovery converted this tango as an emblematic piece of music worldwide.</p><p>Music:<br/>Carlos Gardel and Gerardo Matos Rodriguez</p><p>Interpreted by the Sodre's Chamber Music Orchestra</p><p>Dancers from Sodre´s Escuela Nacional de Danza</p><p>Helsinki City Hall, Ballroom<br/></p>"
            },
            "location_extra_info": null,
            "info_url": null,
            "name": {
                "fi": "Suite Gardel",
                "en": "Suite Gardel"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afr5se67ou/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afr3jnx5sm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7765/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/283522962186595/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-05-31T05:41:21.427163Z",
            "last_modified_time": "2018-05-31T09:44:09.759290Z",
            "date_published": null,
            "start_time": "2018-06-06T13:00:00Z",
            "end_time": "2018-06-06T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Sosiaalisiin innovaatioihin, muotoiluun, aktivismiin ja julkisen sektorin monimutkaisiin kysymyksiin keskittyvä kahden tunnin seminaari",
                "en": "How can we adopt promote this type of thinking here in Finland and especially in the City of Helsinki? "
            },
            "provider": {
                "fi": "Social Innovation for Systems Change Finland",
                "en": "Social Innovation for Systems Change Finland"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sosiaalisiin innovaatioihin, muotoiluun, aktivismiin ja julkisen sektorin monimutkaisiin kysymyksiin keskittyvä kahden tunnin seminaari kutsuu kaikki mukaan keskustelemaan muotoilun merkityksestä yhteiskunnassa. </p><p>Vapaa pääsy, ennakkoilmoittautuminen:&lt;br&gt;https://www.eventbrite.com/e/participation-design-in-the-city-of-helsinki-tickets-46060373818</p>",
                "en": "<p>How can we adopt promote this type of thinking here in Finland and especially in the City of Helsinki? The event is made possible by the city designers and participation planners of the City of Helsinki and it’s a great opportunity to meet them and exchange ideas. </p><p>Social innovator, designer, activist, public official or other world changer  are all invited to an evening of conversation around responding to complex social challenges.</p><p>The intention is to bring together people who want to apply design methods, systems thinking and collaborative approaches to systems change. Whether you've already done that successfully or keep bumping into obstacles, come deepen your network, share your experiences and talk about how we might collectively become more effective at changing the systems we want to see flourish.</p><p>16:00 Getting to know each other <br/>16:10 Mikael Seppälä/Social Innovation for Systems Change Finland: Combining Design & Communities for Social Innovation<br/> 16:20 Possible second talk<br/> 16:35 Open Space -discussions & meeting the City of Helsinki Designers and Participation folks <br/> 18:00 Event Ends</p><p>Free entry, pre-booking: https://www.eventbrite.com/e/participation-design-in-the-city-of-helsinki-tickets-46060373818</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/events/283522962186595/",
                "en": "https://www.facebook.com/events/283522962186595/"
            },
            "name": {
                "fi": "Participation & Design in the City of Helsinki",
                "en": "Participation & Design in the City of Helsinki"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afr3jnx5sm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afrqmedtiu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7765/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/Kaupunkioletsina/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "Ilmainen"
                    },
                    "info_url": {
                        "fi": ""
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:02100",
            "sub_events": [],
            "images": [
                {
                    "id": 43906,
                    "license": "cc_by",
                    "created_time": "2018-04-27T07:47:51.734257Z",
                    "last_modified_time": "2018-04-27T07:47:51.734276Z",
                    "name": "be9e1.jpg",
                    "url": "http://i63.tinypic.com/be9e1.jpg",
                    "cropping": "",
                    "photographer_name": "Eetu Ahanen / Helsinki Marketing",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:02100",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43906/?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": "2018-04-27T07:45:31.461264Z",
            "last_modified_time": "2018-05-18T17:51:39.841460Z",
            "date_published": null,
            "start_time": "2018-05-31T06:00:00Z",
            "end_time": "2018-05-31T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Valitettavasti seminaari on täynnä. Helsingin osallisuusmalli potkaistaan nyt käyntiin. Tule keskustelemaan osallisuudesta ja kaupungin rakentamisesta yhdessä."
            },
            "provider": {
                "en": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helsingin kaupungin tuore osallisuus- ja vuorovaikutusmalli potkaistaan käyntiin kevään 2018 aikana. Kaupunkilaisille uudistus näkyy entistä monipuolisempina vaikuttamismahdollisuuksina.</p><p>Potkua osallisuuteen – Helsingin osallisuusmallin kick off -seminaari torstaina 31.5. kutsuu yhteen kaupunkien työntekijät, osallisuuden asiantuntijat ja aktiiviset kaupunkilaiset. Seminaarissa kuulemme kiinnostavia näkökulmia osallistuvasta budjetoinnista sekä keskustelemme osallisuuden uusista muodoista ja siitä, miten parempaa kaupunkia rakennetaan yhdessä.</p><p>Tilaisuuden avaa apulaispormestari Nasima Razmyar, ja kansainvälistä näkökulmaa aiheeseen tuo Cities of Service -verkoston johtaja ja kaupunkiosallistumisen asiantuntija Myung J. Lee. Seminaarin juontaa tutkija Johannes Anttila ajatushautomo Demos Helsingistä.</p><p>Seminaariin ilmoittautuminen on päättynyt.</p><p>Seminaaria voi seurata Helsinki-kanavalla https://www.helsinkikanava.fi/kanava/fi.</p><p><br/>Ohjelma</p><p>8.30 Ilmoittautuminen ja aamukahvit<br/>9.00 Seminaarin avaus, apulaispormestari Nasima Razmyar<br/>9.15 Helsingin osallisuusmallin periaatteet, kulttuurin ja vapaa-ajan toimialajohtaja Tommi Laitio<br/>10.00 Government and its People, Executive Director Myung J. Lee<br/>11.00 Lounas<br/>12.00 Osallistuva budjetointi kaupunkilaisten silmin<br/>12.15 Tehdään toimiva kaupunki yhdessä – Helsingin osallistuva budjetointi<br/>Kehittämispäällikkö Kirsi Verkka ja projektipäällikkö Katja Henttonen<br/>12.45 Kommenttipuheenvuorot ja keskustelua osallistuvasta<br/>budjetoinnista<br/>Kaupunkiaktivisti Jaakko Blomberg, tutkijatohtori Titi Ertiö ja<br/>aluepäällikkö Katri Kairimo<br/>13.30 Osallisuuden työpajat tutuksi<br/>13.40 Kahvitauko<br/>14.10 Työpajat<br/>16.00 Työpajojen yhteenveto<br/>16.30 Seminaari päättyy</p><p><br/>Työpajat</p><p>1. Alueiden äänet esiin<br/>Kaikille Helsingin asuinalueille on nimetty alueellinen työntekijä eli stadiluotsi, joka auttaa viemään eteenpäin asukkaiden aloitteita ja kehittämisehdotuksia<br/>sekä edistää eri väestöryhmien välistä dialogia. Tule muotoilemaan yhteistyön ja alueellisen osallisuuden seuraavia askelia yhdessä stadiluotsien kanssa.</p><p>2. Osallisuus kuuluu kaikille – yhdenvertainen osallistuva budjetointi<br/>Osallisuus rakentuu yhdenvertaisuudelle. Kuinka osallistuvan budjetoinnin avulla kaikki kaupunkilaiset saavat äänensä kuuluviin ja ideansa esiin? Tervetuloa keskustelemaan ja etsimään parhaita käytäntöjä.</p><p>3. Budjetti pelissä – osallistuvan budjetoinnin pelillistäminen<br/>Tervetuloa ideoimaan osallistuvan budjetoinnin peliä palvelumuotoilutoimisto Hellonin kanssa. Kerromme pelillistämisestä sekä pohdimme yhdessä, miten<br/>osallistuvan budjetoinnin hankeideoita voi kehitellä pelin avulla ja luomme konkreettisen ehdotuksen pelistä.</p><p>4. Osallistu.hel.fi – ikkuna osallistuvaan budjetointiin<br/>Osallistu.hel.fi-palvelussa asukkaat voivat ehdottaa, kehittää ja äänestää ideoita kaupungin hyväksi. Työpajassa avaamme verkkopalvelun toiminnallisia tavoitteita ja käyttäjälähtöistä suunnittelua.</p><p>5. Opitaan osallisuutta pelaamalla<br/>Helsingin osallisuuspeli on niittänyt mainetta maailmalla, ja kaupungin työntekijät ovat oppineet osallisuudesta ja rakentaneet konkreettisia osallisuussuunnitelmia jo sadoissa pelituokioissa. Tule pelaamaan osallisuuspeliä kokeneiden fasilitaattoreiden johdolla!</p><p><br/>Lisätiedot seminaarista:</p><p>Ella Tanskanen<br/>ella.tanskanen (a) hel.fi</p>"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "info_url": {
                "fi": "https://www.hel.fi/helsinki/fi/kaupunki-ja-hallinto/osallistu-ja-vaikuta/vaikuttamiskanavat/osallisuus-ja-vuorovaikutusmalli/"
            },
            "name": {
                "fi": "TÄYNNÄ Potkua osallisuuteen - Helsingin osallisuusmallin kick off",
                "en": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afrqmedtiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hko:14306",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "https://www.hel.fi/kanslia/virka-fi"
                    },
                    "description": null
                }
            ],
            "data_source": "hko",
            "publisher": "ahjo:46104",
            "sub_events": [],
            "images": [
                {
                    "id": 42235,
                    "license": "event_only",
                    "created_time": "2018-02-02T12:15:27.699165Z",
                    "last_modified_time": "2018-02-02T12:15:27.699186Z",
                    "name": "kaupungintalo14-03-09001.jpg",
                    "url": "http://helsinginkaupunginorkesteri.fi/sites/default/files/images/concert/73efb9f8-eb6a-4a3f-b02b-a1ef7678cc57/kaupungintalo14-03-09001.jpg",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunginorkesteri",
                    "alt_text": null,
                    "data_source": "hko",
                    "publisher": "ahjo:46104",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2018-02-02T12:15:28.001929Z",
            "last_modified_time": "2018-05-12T07:00:10.212977Z",
            "date_published": null,
            "start_time": "2018-05-12T11:00:00Z",
            "end_time": "2018-05-12T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Kamarimusiikkikonsertti kaupungintalolla",
                "sv": "Kammarmusikkonsert i Helsingfors stadshus",
                "en": "Chamber music concert at Helsinki City Hall "
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kamarimusiikkikonsertti kaupungintalolla</p>HKO:n muusikoiden kamarimusiikkikonsertit kaupungintalon juhlasalissa kolmena keväisenä lauantaina. Konserttiin on vapaa pääsy, lippuja ei voi varata etukäteen. Tervetuloa!",
                "sv": "<p>Kammarmusikkonsert i Helsingfors stadshus</p><p>Fritt inträde.</p>",
                "en": "<p>Chamber music concert at Helsinki City Hall </p>Free entrance!"
            },
            "location_extra_info": {
                "fi": "Kaupungintalo",
                "sv": "Stadshuset",
                "en": "City Hall"
            },
            "info_url": {
                "fi": "http://helsinginkaupunginorkesteri.fi/fi/node/14306",
                "sv": "http://helsinginkaupunginorkesteri.fi/sv/node/14306",
                "en": "http://helsinginkaupunginorkesteri.fi/en/node/14306"
            },
            "name": {
                "fi": "Kamarimusiikkia kaupungintalolla",
                "sv": "Kammarmusik i stadshuset ",
                "en": "Chamber music at City Hall"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/hko:14306/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}