Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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=helsinki
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
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
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
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
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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 /v1/event/?format=api&page=511&publisher_ancestor=ahjo%3A00001
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=512&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=510&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:61370", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6038, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-15T14:13:51.235304Z", "last_modified_time": "2024-02-06T13:22:42.436166Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727609.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6038/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-15T14:13:51.176883Z", "last_modified_time": "2024-02-06T13:22:42.480908Z", "date_published": null, "start_time": "2023-11-23", "end_time": "2023-12-16", "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, "provider_contact_info": null, "short_description": { "fi": "Narratiivinen maalausnäyttely käsittelee tarinankerrontaa, maalaustaidetta ja sitä, miten tarinat auttavat meitä kehystämään kokemuksiamme.", "sv": "Narrativ måleriserie om berättande målning och hur historier hjälper oss att förstå erfarenheter.", "en": "Narrative painting exhibition about storytelling, painting, and how stories help us frame our experience." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/48A754687DB831EE05A4743968126D93/Anneli_Holmstrom_HORSE_MONKEYSHADOW_CLIFF_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/48A754687DB831EE05A4743968126D93/Anneli_Holmstrom_HORSE_MONKEYSHADOW_CLIFF_", "en": "http://www.malmitalo.fi/en/events/event/48A754687DB831EE05A4743968126D93/Anneli_Holmstrom_HORSE_MONKEYSHADOW_CLIFF_" }, "location_extra_info": null, "name": { "fi": "Anneli Holmstrom: HORSE.MONKEYSHADOW.CLIFF – Helsingin taiteilijaseura", "sv": "Anneli Holmstrom: HORSE.MONKEYSHADOW.CLIFF", "en": "Anneli Holmstrom: HORSE.MONKEYSHADOW.CLIFF" }, "description": { "fi": "<p>Narratiivinen maalausnäyttely käsittelee tarinankerrontaa, maalaustaidetta ja sitä, miten tarinat auttavat meitä kehystämään kokemuksiamme.</p><p>Esillä olevat teokset ovat valikoima vuonna 2021 alkaneesta laajemmasta samannimisestä, yhä kehittyvästä sarjasta. Maalaussarja kartoittaa neljä tarinalankaa, jotka näyttelyssä järjestetään ja kudotaan uudelleen uusiksi tarinaketjuiksi. Teossarjassa kiinnitetään erityistä huomiota \"visuaaliseen verkostoon\" sekä yksittäisten maalausten sisällä, että koko kuvasarjassa. Toisin kuin tyypillisissä kuvituksissa, näiden maalausten tarinat ovat itseään synnyttäviä, ja kuvamotiivit, hahmot ja maisemat muodostavat jatkuvasti uusia runollisia suhteita.<br> <br>Kuten satunnainen katkelma kirjasta – tai katkennut unijakso – jokainen maalaus on visuaalinen fragmentti, joka pyrkii laajempaan kertomukseen oman kehyksensä ulkopuolella. Tämä muuttuvuuden tunne ulottuu myös maalausten hahmojen nestemäiseen tilaan, joka voi helposti siirtyä ei-inhimillisestä inhimilliseen muotoon. Toisin kuin lineaarisemmissa tarinoissa, näiden maalausten tarinoita ei ole ankkuroitu keskeisiin päähenkilöihin tai ruumiinmuotoihin – sen sijaan niille on annettu vapaus liikkua vaivattomasti eläimellisten, mineraalisten, kodin esineistön tai orgaanisten muotojen välillä.<br>Näyttely pyrkii siis tarjoamaan monikerroksisen tarinankerronnan paikan, joka kutsuu katsojan aktiiviseksi lukijaksi kuvien keräämiseen ja yhdistämiseen.<br> <br>Näyttelyä ovat tukeneet TAIKE Konst Samfundet, Svenska Kulturfonden ja Helsingin Taiteilijaseura.<br> <br>Anneli Holmström (s. 1985) on skotlantilais-suomalainen kuvataiteilija, joka asuu tällä hetkellä Pietarsaaressa.<br> <br>Valmistuttuaan maisteriksi Edinburgh College of Art:sta hän on pitänyt lukuisia yksityis- ja ryhmänäyttelyitä sekä kotimaissaan Suomessa ja Skotlannissa, että muualla ulkomailla. Hänen taiteellinen ilmaisunsa lähtee liikkeelle maalaustaiteen laajennetusta lähestymistavasta ja yhdistää maalaustaiteellisia menetelmiä veistoksellisiin, performatiivisiin sekä yhteisötaiteellisiin näkökohtiin. Hänen estetiikkansa omaksuu monitulkintaisuuden ja avoimuuden – näkemys, joka luottaa visuaaliseen tarinankerrontaan välineenä artikuloida esisanallisia tunteita ja tietoa.</p><p>Avajaiset pidetään Malmitalolla 22.11. klo 17–20.<br>Tervetuloa!</p>", "sv": "<p>Narrativ måleriserie om berättande målning och hur historier hjälper oss att förstå erfarenheter.</p><p>De visade verken i denna show är ett urval av en större och utvecklande serie med samma namn påbörjad år 2021. Som titeln antyder så följer serien fyra berättelsetrådar vilka kan ordnas och vävas igen för varje utställning för att skapa en ny historia. Serien ger speciell uppmärksamhet åt det 'visuella nätverket' inom enskilda målningar och även tvärs över de olika bildsekvenserna. Till skillnad från typiska illustrationer så är berättelserna i dessa målningar självformande med bildliga motiv, karaktärer och landskap vilka kontinuerligt omarbetas för att skapa nya poetiska sammanhang.<br> <br>Liksom en lösryckt passage från en bok - eller som ett uppvaknande mitt i en dröm - så representerar varje målning ett isolerat fragment som söker ett större narrativ utöver sitt eget. Denna känsla av föränderlighet är likaså reflekterad i de flytande former som karaktärerna har i målningarna med skiften mellan mänskliga och icke-mänskliga former. I motsats till mera linjära berättelser så är narrativen i dessa målningar inte ankrade av centrala aktörer eller kroppsliga former men har istället frihet att skifta mellan djur, mineral, domestiska föremål och organiska varelser.<br> <br>Vad denna utställning därför syftar till att erbjuda är ett mångbottnat berättarställe - ett som inbjuder åskådaren till en aktiv del i samlandet och överförandet av bildverken.<br> <br>Denna utställning är understödd av bidrag från TAIKE, Konstsamfundet och Svenska Kulturfonden i Helsinki Artist Association.<br> <br>------<br> <br>Anneli Holmström (f.1985) är en Skotsk- Finländsk visuell konstnär för närvarande bosatt och verksam i Jakobstad, Finland.<br> <br>Efter att ha erhållit sin Masters of Art grad från Edinburgh College of Art 2009 så har Anneli haft solo- och grupputställningar både i sina två hemländer och utomlands. Med utgång från en utvidgad målarinsikt så kombinerar hon regelbundet traditionella målningsmetoder med skulpturala inslag, uppförande konst och kollektiva projekt. Annelis estetik omfattar en tvetydighet och öppenhet där en tilltro till ett visuellt berättande är ett verktyg för att kunna beskriva pre-verbala tankar och kunskap.</p>", "en": "<p>Narrative painting exhibition about storytelling, painting, and how stories help us frame our experience.</p><p>The works on show are a selection of a larger evolving series with the same name begun in 2021. As the title of the show indicates, the painting series charts four story threads that within the exhibition are reordered and re-woven to form fresh story chains. Across the series, close attention is paid to the 'visual network' both within singular paintings and across an image sequence. Unlike in typical illustrations, the stories in these paintings are<br>self-generative with pictorial motifs, characters and landscapes continually re-mined to form new poetic relationships.<br> <br>Like a random passage from a book - or a broken dream sequence - each painting is a visual fragment that aspires to a larger narrative beyond its own frame. This sense of mutability is<br>likewise extended to the fluid state of the characters in the paintings which can readily shift between non-human and human forms. Unlike in more linear stories, the narratives in these paintings are not anchored by central protagonists or bodily forms - instead they are granted freedom to move effortlessly between animal, mineral, domestic or organic shapes.<br> <br>What this exhibition therefore aims to offer is a multilayered storytelling site - one that invites the viewer as an active reader in the gathering and bridging of the imagery.<br> <br>The exhibition has been supported by TAIKE, Konstsamfundet, Svenska Kulturfonden and the Helsinki Artist association.</p><p>Anneli Holmström (b. 1985) is a Scottish-Finnish visual artist currently living and working in Jakobstad, Finland.<br> <br>Since graduating with her Masters degree from Edinburgh College of Art in 2009, she has exhibited widely in solo and group exhibitions in both her home countries of Finland and Scotland, and elsewhere abroad. Starting from an expanded painting approach, Anneli's work often combines painting methods with sculptural, performative and collaborative aspects. Her aesthetics is one which embraces ambiguity and open-endedness - a take that puts faith in visual storytelling as a tool for articulating pre-verbal feeling and knowledge.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61370/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx4az33m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:42:37.681938Z", "last_modified_time": "2024-02-06T10:42:37.681964Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma luokittelu 2", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx4az33m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3zr22y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:10:56.864913Z", "last_modified_time": "2024-02-06T10:10:56.864932Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma luokittelu", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3zr22y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3zhpga", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:09:31.964381Z", "last_modified_time": "2024-02-06T10:09:31.964401Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma kohderymät", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3zhpga/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3s55p4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T09:42:00.846965Z", "last_modified_time": "2024-02-06T09:42:00.846998Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma 103", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3s55p4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxse4gvi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46153/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T11:42:19.317755Z", "last_modified_time": "2024-02-05T11:42:19.317775Z", "date_published": "2024-02-05T11:41:27Z", "start_time": "2024-02-05T13:50:00Z", "end_time": "2024-02-09T15:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "test" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471" }, "location_extra_info": null, "name": { "fi": "Alaeventti" }, "description": { "fi": "<div><div>test</div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxse4gvi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxsawsky", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T11:24:04.582590Z", "last_modified_time": "2024-02-05T11:24:04.582623Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma 102", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxsawsky/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqmkcdu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7549, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:35:07.812361Z", "last_modified_time": "2024-02-05T07:35:07.812381Z", "name": "Kuvateksti MKtest 02022024", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T07:35:10.635728Z", "last_modified_time": "2024-02-05T07:35:10.635751Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T07:00:00Z", "end_time": "2024-02-05T07:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T06:00:00+02:00", "enrolment_end_time": "2024-02-02T14:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "location_extra_info": null, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqmkcdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqhazie", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7548, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:12:01.964515Z", "last_modified_time": "2024-02-05T07:12:01.964554Z", "name": "Kuvan Kuvatekstikentän tietoa", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "created_time": "2024-02-05T07:12:03.915920Z", "last_modified_time": "2024-02-05T07:12:03.915942Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "location_extra_info": null, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqhazie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqe3v4e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7547, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:02:36.482383Z", "last_modified_time": "2024-02-05T07:02:36.482403Z", "name": "Kuvan Kuvatekstikentän tietoa", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "created_time": "2024-02-05T07:02:37.804926Z", "last_modified_time": "2024-02-05T07:02:37.804946Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "location_extra_info": null, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqe3v4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqe2zmq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7546, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:02:26.410052Z", "last_modified_time": "2024-02-05T07:02:26.410071Z", "name": "Kuvan Kuvatekstikentän tietoa", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7546/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "created_time": "2024-02-05T07:02:30.513593Z", "last_modified_time": "2024-02-05T07:02:30.513616Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "location_extra_info": null, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqe2zmq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxp4avqq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7545, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T06:23:56.666152Z", "last_modified_time": "2024-02-05T06:23:56.666174Z", "name": "Kuvan Kuvatekstikentän tietoa", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "created_time": "2024-02-05T06:23:59.375193Z", "last_modified_time": "2024-02-05T06:23:59.375215Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "location_extra_info": null, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxp4avqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwtgazxa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7525, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-02T11:33:09.532316Z", "last_modified_time": "2024-02-02T11:33:09.532334Z", "name": "Kuvateksti MKtest 02022024", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-02T11:33:12.259511Z", "last_modified_time": "2024-02-02T11:33:12.259530Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T12:00:00Z", "end_time": "2024-02-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T08:00:00+02:00", "enrolment_end_time": "2024-02-02T16:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "location_extra_info": null, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwtgazxa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwr5yn3m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7515, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-02T08:37:10.591796Z", "last_modified_time": "2024-02-02T08:37:10.591815Z", "name": "Kuvateksti MKtest 02022024", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7515/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-02T08:37:17.927068Z", "last_modified_time": "2024-02-02T08:37:17.927088Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T12:00:00Z", "end_time": "2024-02-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T08:00:00+02:00", "enrolment_end_time": "2024-02-02T16:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "location_extra_info": null, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwr5yn3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwrz6buy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-02T08:20:35.381215Z", "last_modified_time": "2024-02-02T08:20:35.381236Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma 101", "sv": "", "en": "", "ru": "", "zh_hans": "", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwrz6buy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwrzinny", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/131/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/131/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/131/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/131/signup-group/create" }, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-02T08:17:38.169128Z", "last_modified_time": "2024-02-02T08:17:38.169150Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T05:00:00Z", "end_time": "2024-09-24T01:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma 100", "sv": "", "en": "", "ru": "", "zh_hans": "", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwrzinny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggv6ptusy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-01-31T11:19:05.124025Z", "last_modified_time": "2024-01-31T11:19:05.124046Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T08:00:00Z", "end_time": "2024-09-24T04:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma 99", "sv": "", "en": "", "ru": "", "zh_hans": "", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggv6ptusy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggvuvalxy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7245/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://www.MKtest_linkkilipunmyyntiin.tv", "sv": "https://www.MKtest_linkkilipunmyyntiin.tv", "en": "https://www.MKtest_linkkilipunmyyntiin.tv", "ru": "https://www.MKtest_linkkilipunmyyntiin.tv", "zh_hans": "https://www.MKtest_linkkilipunmyyntiin.tv", "ar": "https://www.MKtest_linkkilipunmyyntiin.tv" }, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7430, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-30T12:24:31.236943Z", "last_modified_time": "2024-01-30T12:24:31.236964Z", "name": "Kuvan Kuvatekstikentän tietoa talvisesta Helsingistä", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=dd667cd4-8724-4176-a01b-9595a60aedfc&Timestamp=638422140215660977", "cropping": "", "photographer_name": "Ratikka Matti", "alt_text": "Kuvan alt-tekstikentän tietoa talvisesta Helsingistä", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "created_time": "2024-01-30T12:24:33.995068Z", "last_modified_time": "2024-01-30T12:24:33.995098Z", "date_published": "2024-01-30T12:16:07Z", "start_time": "2024-02-01T09:00:00Z", "end_time": "2024-02-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 25, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 25000, "minimum_attendee_capacity": 100, "enrolment_start_time": "2024-01-30T08:00:00+02:00", "enrolment_end_time": "2024-01-31T16:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 300120241415 D365 to LE 8 SHORT DESC FI", "en": "MKtest 300120241415 D365 to LE 8 SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_300120241415_D365_to_LE_83106649368", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_300120241415_D365_to_LE_83106649368", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_300120241415_D365_to_LE_83106649368", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_300120241415_D365_to_LE_83106649368", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_300120241415_D365_to_LE_83106649368", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_300120241415_D365_to_LE_83106649368" }, "location_extra_info": null, "name": { "fi": "MKtest 300120241415 D365 to LE 8", "sv": "", "en": "MKtest 300120241415 D365 to LE 8 en", "ru": "", "zh_hans": "", "ar": "" }, "description": { "fi": "<div><div>MKtest 300120241415 D365 to LE 8 LONG DESC FI</div></div>", "en": "<div><div>MKtest 300120241415 D365 to LE 8 LONG DESC en</div></div>" }, "provider": { "fi": "Business Helsinki FI", "en": "Business Helsinki EN" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggvuvalxy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggvuclhtu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "55€" }, "description": { "fi": "Hintatieto" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "name": "coolpicturename", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-01-30T11:03:02.311738Z", "last_modified_time": "2024-01-30T11:03:02.311759Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T08:00:00Z", "end_time": "2024-09-24T04:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "location_extra_info": null, "name": { "fi": "Outin testitapahtuma 98", "sv": "", "en": "", "ru": "", "zh_hans": "", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggvuclhtu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggvtwjcvu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:60186/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7427, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-30T10:10:15.663234Z", "last_modified_time": "2024-01-30T10:10:15.663253Z", "name": "Kuvan Kuvatekstikentän tietoa tietoa Senaatintorista ja suurkirkosta", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=babce951-5f7f-4764-bcc2-bd6709aa98c4&Timestamp=638422056670287739", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7427/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2024-01-30T10:10:18.937601Z", "last_modified_time": "2024-01-30T10:10:18.937633Z", "date_published": "2024-01-30T09:59:22Z", "start_time": "2024-02-01T12:00:00Z", "end_time": "2024-02-01T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 32, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": 15, "enrolment_start_time": "2024-01-30T08:00:00+02:00", "enrolment_end_time": "2024-01-31T12:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 300120241200 D365 to LE 7 SHORT DESC FI", "sv": "MKtest 300120241200 D365 to LE 7 SHORT DESC SV", "en": "MKtest 300120241200 D365 to LE 7 SHORT DESC EN", "ru": "MKtest 300120241200 D365 to LE 7 SHORT DESC RUS руски" }, "info_url": null, "location_extra_info": null, "name": { "fi": "MKtest 300120241200 D365 to LE 7", "sv": "MKtest 300120241200 D365 to LE 7 SV", "en": "MKtest 300120241200 D365 to LE 7 EN", "ru": "MKtest 300120241200 D365 to LE 7 RUS рускии", "zh_hans": "", "ar": "" }, "description": { "fi": "<div><div>MKtest 300120241200 D365 to LE 7 LONG DESC FI</div>\n<div> </div>\n<div><h2 style=\"background-color:#ffffff; color:#000000; font-family:DauphinPlain; font-size:24px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; line-height:24px; margin-bottom:10px; margin-left:0; margin-right:0; margin-top:0; padding:0px; text-align:left; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px\">What is Lorem Ipsum?</h2>\n<p><strong>Lorem Ipsum</strong><span> </span>is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div></div>", "sv": "<div><div>MKtest 300120241200 D365 to LE 7 LONG DESC FI</div>\n<div> </div>\n<div><h2 style=\"background-color:#ffffff; color:#000000; font-family:DauphinPlain; font-size:24px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; line-height:24px; margin-bottom:10px; margin-left:0; margin-right:0; margin-top:0; padding:0px; text-align:left; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px\">What is Lorem Ipsum?</h2>\n<p><strong>Lorem Ipsum</strong><span> </span>is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div></div>", "en": "<div><div>MKtest 300120241200 D365 to LE 7 LONG DESC FI</div>\n<div> </div>\n<div><h2 style=\"background-color:#ffffff; color:#000000; font-family:DauphinPlain; font-size:24px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; line-height:24px; margin-bottom:10px; margin-left:0; margin-right:0; margin-top:0; padding:0px; text-align:left; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; white-space:normal; word-spacing:0px\">What is Lorem Ipsum?</h2>\n<p><strong>Lorem Ipsum</strong><span> </span>is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div></div>", "ru": "<div><div>MKtest 300120241200 D365 to LE 7 LONG DESC FI <span style=\"font-size:12pt\"><strong>рускии</strong></span></div>\n<div> <pre class=\"tw-data-text tw-ta tw-text-large\" dir=\"ltr\" id=\"tw-target-text\" style=\"background-color:#f8f9fa; border-color:initial; border-image-outset:initial; border-image-slice:initial; border-style:none; border-width:initial; color:#202124; font-family:inherit; font-size:28px; font-style:normal; font-variant-caps:normal; font-weight:400; letter-spacing:normal; line-height:36px; margin-bottom:-2px; margin-left:0; margin-right:0; margin-top:-2px; overflow:hidden; padding:2px 0.14em 2px 0px; position:relative; text-align:left; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; text-wrap:wrap; unicode-bidi:isolate; width:270px; word-spacing:0px\"><span class=\"Y2IQFc\" lang=\"ru\">Это проверка. <strong>Зима </strong>лучшее время года.</span></pre></div>\n<div><h2 style=\"background-color:#ffffff; color:#000000; font-family:DauphinPlain; font-size:24px; font-style:normal; font-weight:400; letter-spacing:normal; line-height:24px; margin-bottom:10px; margin-left:0; margin-right:0; margin-top:0; padding:0px; text-align:left; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; text-wrap:wrap; word-spacing:0px\"> </h2>\n<h2 style=\"background-color:#ffffff; color:#000000; font-family:DauphinPlain; font-size:24px; font-style:normal; font-weight:400; letter-spacing:normal; line-height:24px; margin-bottom:10px; margin-left:0; margin-right:0; margin-top:0; padding:0px; text-align:left; text-decoration-color:initial; text-decoration-style:initial; text-decoration-thickness:initial; text-indent:0px; text-transform:none; text-wrap:wrap; word-spacing:0px\">What is Lorem Ipsum?</h2>\n<p><strong>Lorem Ipsum</strong><span> </span>is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></div></div>" }, "provider": { "fi": "Business Helsinki FI", "sv": "Business Helsinki SV", "en": "Business Helsinki EN", "ru": "Business Helsinki RUS рускии" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggvtwjcvu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 10295, "next": "