-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
10914 lines (8157 loc) · 490 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta charset="utf-8" />
<title>STR Application Profile (STR-AP)</title>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer></script>
<script class="remove">
// All config options at https://respec.org/docs/
var myeditors = [
{
name: "Emidio Stani",
}
]
var myauthors = [
]
function quickreference() {
$('#table-quickoverview').DataTable();
};
var shaclfilepath = "./shacl/strap-SHACL.ttl" ;
var respecConfig = {
postProcess: [quickreference],
edDraftURI: "https://semiceu.github.io/STR-AP/releases/1.0.1",
latestVersion: "https://semiceu.github.io/STR-AP/releases/1.0.0/",
specStatus: "LD",
publishDate: "2024-07-10",
editors: myeditors,
authors: myauthors,
github: "SEMICeu/STR-AP",
shortName: "STR Application Profile (STR-AP)",
xref: "web-platform",
doJsonLd: true,
logos: [{
src: "./html/DG-Grow.jpg",
url: "https://single-market-economy.ec.europa.eu/index_en",
alt: "DG GROW",
width: 154,
height: 154,
id: "grow-logo",
},],
generatedSubtitle: "",
additionalCopyrightHolders: "",
localBiblio: {
"ISA2":{
"href":"https://ec.europa.eu/isa2/",
"title":"Interoperability solutions for public administrations, businesses and citizens (ISA²)",
"publisher":"European Commission"
},
"SEMIC":{
"href":"https://joinup.ec.europa.eu/collection/semic-support-centre",
"title":"SEMIC Support Centre",
"publisher":"European Commission"
},
"2019/1150":{
"href":"http://data.europa.eu/eli/reg/2019/1150/oj",
"title":"Regulation (EU) 2019/1150 of the European Parliament and of the Council of 20 June 2019 on promoting fairness and transparency for business users of online intermediation services",
"publisher":"European Union"
},
"2022/2065":{
"href":"https://eur-lex.europa.eu/eli/reg/2022/2065/oj",
"title":"Regulation (EU) 2022/2065 of the European Parliament and of the Council of 19 October 2022 on a Single Market For Digital Services and amending Directive 2000/31/EC (Digital Services Act)",
"publisher":"European Union"
},
"2022/1925":{
"href":"http://data.europa.eu/eli/reg/2022/1925/oj",
"title":"Regulation (EU) 2022/1925 of the European Parliament and of the Council of 14 September 2022 on contestable and fair markets in the digital sector and amending Directives (EU) 2019/1937 and (EU) 2020/1828 (Digital Markets Act)",
"publisher":"European Union"
},
"2000/31/EC":{
"href":"https://eur-lex.europa.eu/eli/dir/2000/31/oj",
"title":"Directive 2000/31/EC of the European Parliament and of the Council of 8 June 2000 on certain legal aspects of information society services, in particular electronic commerce, in the Internal Market ('Directive on electronic commerce')",
"publisher":"European Union"
},
"2006/123/EC":{
"href":"http://data.europa.eu/eli/dir/2006/123/oj",
"title":"Directive 2006/123/EC of the European Parliament and of the Council of 12 December 2006 on services in the internal market",
"publisher":"European Union"
},
"2015/1535":{
"href":"http://data.europa.eu/eli/dir/2015/1535/oj",
"title":"Directive (EU) 2015/1535 of the European Parliament and of the Council of 9 September 2015 laying down a procedure for the provision of information in the field of technical regulations and of rules on Information Society services (codification)",
"publisher":"European Union"
},
"2010/24/EU":{
"href":"http://data.europa.eu/eli/dir/2010/24/oj",
"title":"Council Directive 2010/24/EU of 16 March 2010 concerning mutual assistance for the recovery of claims relating to taxes, duties and other measures",
"publisher":"European Union"
},
"2011/16/EU":{
"href":"http://data.europa.eu/eli/dir/2011/16/oj",
"title":"Council Directive 2011/16/EU of 15 February 2011 on administrative cooperation in the field of taxation and repealing Directive 77/799/EEC",
"publisher":"European Union"
}
}
};
</script>
<style>
.figure img, .sidefigure img, figure img, .figure object, .sidefigure object, figure object, img, .img {
max-width: 100%;
margin: auto;
height: auto;
}
</style>
<p class="copyright">
Copyright © 2024
</p>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="msapplication-TileColor" content="#7ED956" />
</head>
<body>
<!-- Start page content -->
<section id="abstract">
<h2>Abstract</h2>
The STR-AP (Short Term Rental Application Profile) is a data model that captures the concepts expressed in the current proposed Regulation on short-term accommodation rental services.
</section>
<section id="specintro">
<h2>
Introduction
</h2>
On 7 November 2022, the Commission submitted to the European Parliament and to the
Council a proposal for a Regulation on data collection and sharing relating to short-term
accommodation rental services and amending Regulation (EU) 2018/1724, accompanied by
an impact assessment.
</p>
<p>The proposal seeks to harmonise and streamline the framework for data generation and data sharing on short-term accommodation rental services across the EU.
<p>
More specifically, the proposal seeks to establish:
<ul>
<li>a harmonised approach to registration schemes for hosts, with an obligation for public authorities to maintain appropriately designed registration schemes if they want to obtain data for policymaking and enforcement purposes;</li>
<li>obligations for online platforms to enable hosts to display registration numbers and to share specific data about hosts’ activities and their listings with public authorities, and</li>
<li>specific tools and procedures to ensure that data sharing is safe, compliant with the General Data Protection Regulation, and cost-effective for all parties involved.</li>
</ul>
</p>
<p>
This Regulation is without prejudice to the rules laid down by other Union legal acts regulating other aspects of the provision of services by online short-term rental platforms and the provision of short-term accommodation rental services, in particular:
<ul>
<li>Regulation [[2019/1150]] ;</li>
<li>Regulation [[2022/2065]] ;</li>
<li>Regulation [[2022/1925]] ;</li>
<li>Directive [[2000/31/EC]] ;</li>
<li>Directive [[2006/123/EC]] ;</li>
<li>Directive [[2015/1535]] ;</li>
<li>Directive [[2010/24/EU]] ; and</li>
<li>Directive [[2011/16/EU]].</li>
</ul>
<p>
This Application Profile specifies a semantic data model and it consists of terms with their constraints. </p>
<p>The specification is based on the [[ISA2]] [[SEMIC]] Core Vocabularies and Application Profiles, in particular:
<ul>
<li><a href="https://semiceu.github.io/Core-Location-Vocabulary/releases/2.1.0/">Core Location Vocabulary 2.1.0</a> including Address, Geometry and Location</li>
<li><a href="https://semiceu.github.io/Core-Person-Vocabulary/releases/2.1.1/">Core Person Vocabulary 2.1.1</a> including Person with its Address, Identifier and Contact Point</li>
<li><a href="https://semiceu.github.io/Core-Business-Vocabulary/releases/2.2.0/">Core Business Vocabulary 2.2.0</a> including Legal Entity with its Address, Identifier and Contact Point</li>
<li><a href="https://semiceu.github.io/CPOV/releases/2.1.1/">Core Public Organisation Vocabulary 2.1.1</a> including Public Organisation, Address</li>
<li><a href="https://semiceu.github.io/CPSV-AP/releases/3.2.0/">Core Public Service Application Profile (CPSV-AP) 3.2.0</a> including Public Service, Evidence and Output</li>
<li><a href="https://semiceu.github.io/uri.semic.eu-generated/BRegDCAT-AP/releases/3.0.0/">BregDCAT-AP 3.0.0</a> including Public Service, Dataset, Distribution, Catalogue and Data Service</li>
</ul>
</p>
</section>
<!-- should support https://www.w3.org/2021/Process-20211102/, mostly like https://www.w3.org/2021/Process-20211102/#maturity-levels -->
<section id="specstatus">
<h2>Status</h2>
<p>
This Application Profile has the status Working Draft published at 2024-07-10.
</p>
<p>
Information about the process and the decisions involved in the creation of this specification are consultable at the <a href="https://github.com/SEMICeu/STR-AP/blob/master/releases/1.0.1/Changelog.md">Changelog</a>.
</p>
</section>
<section id="speclicence">
<h2>
License
</h2>
<p>
<!--
<span rel="dct:type"
property="dct:title"
href="http://purl.org/dc/dcmitype/Text"
xmlns:dct="http://purl.org/dc/terms/">
This specification </span> of <a rel="cc:attributionURL" property="cc:attributionName" href="ORGANISATION" xmlns:cc="http://creativecommons.org/ns#">ORGANISATION </a>
is published under <a href="https://creativecommons.org/licenses/by/4.0/" rel="license">"CC0"</a>.
-->
Copyright © 2024 European Union. All material in this repository is published under the license CC-BY 4.0, unless explicitly otherwise mentioned.
</p>
</section>
<section id="conformance" class="informative">
</section>
<section id="specterminology">
<h2>
Terminology
</h2>
<p>
An Application Profile is a data specification aimed to facilitate the data exchange in a well-defined application context. It re-uses concepts from one or more semantic data specifications, while adding more specificity, by identifying mandatory, recommended, and optional elements, addressing particular application needs, and providing recommendations for controlled vocabularies to be used.
More information can be found on the <a href="https://semiceu.github.io/style-guide/1.0.0/terminological-clarifications.html#sec:what-is-an-ap-specification">SEMIC Style Guide</a>.
</p>
This specification uses the following prefixes to shorten the URIs for readibility.
<table id="table-namespaces" class="simple">
<thead><tr><th>Prefix</th><th>Namespace IRI</th></tr></thead>
<tbody>
<tr><td><code>adms</code></td><td><code>http://www.w3.org/ns/adms#</code></td></tr>
<tr><td><code>cpsv</code></td><td><code>http://purl.org/vocab/cpsv#</code></td></tr>
<tr><td><code>cv</code></td><td><code>http://data.europa.eu/m8g/</code></td></tr>
<tr><td><code>dcat</code></td><td><code>http://www.w3.org/ns/dcat#</code></td></tr>
<tr><td><code>dct</code></td><td><code>http://purl.org/dc/terms/</code></td></tr>
<tr><td><code>foaf</code></td><td><code>http://xmlns.com/foaf/0.1/</code></td></tr>
<tr><td><code>legal</code></td><td><code>http://www.w3.org/ns/legal#</code></td></tr>
<tr><td><code>locn</code></td><td><code>http://www.w3.org/ns/locn#</code></td></tr>
<tr><td><code>org</code></td><td><code>http://www.w3.org/ns/org#</code></td></tr>
<tr><td><code>person</code></td><td><code>http://www.w3.org/ns/person#</code></td></tr>
<tr><td><code>rdf</code></td><td><code>http://www.w3.org/1999/02/22-rdf-syntax-ns#</code></td></tr>
<tr><td><code>rdfs</code></td><td><code>http://www.w3.org/2000/01/rdf-schema#</code></td></tr>
<tr><td><code>schema</code></td><td><code>https://schema.org/</code></td></tr>
<tr><td><code>skos</code></td><td><code>http://www.w3.org/2004/02/skos/core#</code></td></tr>
<tr><td><code>str</code></td><td><code>https://w3id.org/str/</code></td></tr>
<tr><td><code>time</code></td><td><code>http://www.w3.org/2006/time#</code></td></tr>
<tr><td><code>xsd</code></td><td><code>http://www.w3.org/2001/XMLSchema#</code></td></tr>
</tbody>
</table>
</section>
<section id="specoverview">
<h2>Overview</h2>
<div id="overview">
<p>
This document describes the usage of the following main entities for a correct usage of the Core Vocabulary:
<br />
|
<a href="#ActivityData">Activity Data</a> |
<a href="#Evidence">Evidence</a> |
<a href="#LegalEntity">Legal Entity</a> |
<a href="#OnlineShortTermRentalPlatform">Online Short Term Rental Platform</a> |
<a href="#Order">Order</a> |
<a href="#Person">Person</a> |
<a href="#PublicOrganisation">Public Organisation</a> |
<a href="#RegistrationNumber">Registration Number</a> |
<a href="#RegistrationProcedure">Registration Procedure</a> |
<a href="#ShortTermAccomodationRentalService">Short Term Accomodation Rental Service</a> |
<a href="#SingleDigitalEntryPoint">Single Digital Entry Point</a> |
<a href="#Unit">Unit</a> |
</p>
<p>
The main entities are supported by:
<br />
|
<a href="#Address">Address</a> |
<a href="#Catalogue">Catalogue</a> |
<a href="#CatalogueRecord">Catalogue Record</a> |
<a href="#CataloguedResource">Catalogued Resource</a> |
<a href="#Concept">Concept</a> |
<a href="#ContactPoint">Contact Point</a> |
<a href="#CoordinationGroup">Coordination Group</a> |
<a href="#Cost">Cost</a> |
<a href="#DataService">Data Service</a> |
<a href="#Dataset">Dataset</a> |
<a href="#Distribution">Distribution</a> |
<a href="#Document">Document</a> |
<a href="#Geometry">Geometry</a> |
<a href="#Group">Group</a> |
<a href="#Identifier">Identifier</a> |
<a href="#Literal">Literal</a> |
<a href="#Location">Location</a> |
<a href="#Output">Output</a> |
<a href="#Periodoftime">Period of time</a> |
<a href="#PublicRegistryService">Public Registry Service</a> |
</p>
<p>
And supported by these datatypes:
<br />
| <a href="#Boolean">Boolean</a> | <a href="#DateTime">DateTime</a> | <a href="#Double">Double</a> | <a href="#Integer">Integer</a> | <a href="#langString">langString</a> | <a href="#String">String</a> | <a href="#TemporalLiteral">Temporal Literal</a> | <a href="#Timeinstant">Time instant</a> | <a href="#URL">URL</a> |
</p>
</div>
<div>
<a href="https://semiceu.github.io/STR-AP/releases/1.0.1/html/overview.jpg"
target="_blank">
<img src="https://semiceu.github.io/STR-AP/releases/1.0.1/html/overview.jpg"/>
</a>
</div>
</section>
<section>
<h2>
Main Entities
</h2>
The main entities are those that form the core of the Core Vocabulary.
<section>
<h3 id="ActivityData">
<a href="https://w3id.org/str/ActivityData"
data-toggle="tooltip"
data-content="https://w3id.org/str/ActivityData"
data-placement="right">Activity Data</a>
</h3>
<!-- XXX an image in the h3 will break the rendering of the Table Of Contents of Respec -->
<!-- outcomment github feedback possibility
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20ActivityData&body=Explain%20your%20issue"}}>
<img src="html/callout.png" loading="lazy" alt="(create issue)" width="20" height="20"/>
</a>
-->
<dl>
<dt>
Definition
</dt>
<dd>
The number of nights for which a unit is rented and the number of guests that the unit was rented to per night, and their country of residence, in accordance with <a href="https://eur-lex.europa.eu/eli/reg/2011/692/oj">Regulation (EU) 692/2011</a>.
</dd>
<dt>
Properties
</dt>
<dd>
For this entity the following properties are defined: <a href="#ActivityData.activityrecordID">activity record ID</a>
, <a href="#ActivityData.countryoftheguests">country of the guests</a>
, <a href="#ActivityData.isabout">is about</a>
, <a href="#ActivityData.numberofguests">number of guests</a>
, <a href="#ActivityData.temporal">temporal</a>
.
</dd>
</dl>
</div>
<div class="u-table-overflow">
<table class="data-table simple" id="table-mandatory-classes">
<thead>
<tr class="data-table__header">
<th class="data-table__header-title--sortable" style="width:6%">
</th>
<th class="data-table__header-title--sortable data-table__header-title--sortable-active" style="width:14%">
Property
</th>
<th class="data-table__header-title--sortable" style="width:14%">
Range
</th>
<th class="data-table__header-title--sortable" style="width:6%">
Card
</th>
<th class="data-table__header-title--sortable" style="width:25%">
Definition
</th>
<th class="data-table__header-title--sortable" style="width:25%">
Usage
</th>
<!--
<th class="data-table__header-title--sortable" style="width:3%">
Codelist
</th>
-->
<th class="data-table__header-title--sortable" style="width:10%">
User Story
</th>
</tr>
</thead>
<tbody class="supertype">
<tr id="ActivityData.activityrecordID"
typeof="rdfs:Property"
resource="https://w3id.org/str/activityRecordID"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20activity record ID%20in%20Activity Data&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23ActivityData.activityrecordID" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="https://w3id.org/str/activityRecordID"
data-toggle="tooltip"
data-content="https://w3id.org/str/activityRecordID"
data-placement="right">
activity record ID</a>
</td>
<td>
<a href="#Literal" data-placement="right">Literal</a>
</td>
<td>
1
</td>
<td property="rdfs:comment">
The record number that uniquely identifies the activity data
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory3.1">US 3.1</a>
</td>
</tr>
<tr id="ActivityData.countryoftheguests"
typeof="rdfs:Property"
resource="https://w3id.org/str/countryOfGuests"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20country of the guests%20in%20Activity Data&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23ActivityData.countryoftheguests" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="https://w3id.org/str/countryOfGuests"
data-toggle="tooltip"
data-content="https://w3id.org/str/countryOfGuests"
data-placement="right">
country of the guests</a>
</td>
<td>
<a href="#Concept" data-placement="right">Concept</a>
</td>
<td>
1..*
</td>
<td property="rdfs:comment">
The country of residence of the guests.
</td>
<td property="skos:scopeNote">
The recommended values are those from the <a href="https://op.europa.eu/en/web/eu-vocabularies/concept-scheme/-/resource?uri=http://publications.europa.eu/resource/authority/country">Country authority table</a> of the Publications Office.
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory3.1">US 3.1</a>
</td>
</tr>
<tr id="ActivityData.isabout"
typeof="rdfs:Property"
resource="https://w3id.org/str/isAbout"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20is about%20in%20Activity Data&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23ActivityData.isabout" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="https://w3id.org/str/isAbout"
data-toggle="tooltip"
data-content="https://w3id.org/str/isAbout"
data-placement="right">
is about</a>
</td>
<td>
<a href="#Unit" data-placement="right">Unit</a>
</td>
<td>
1
</td>
<td property="rdfs:comment">
The Unit associated to the activity data.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory3.1">US 3.1</a>
</td>
</tr>
<tr id="ActivityData.numberofguests"
typeof="rdfs:Property"
resource="https://w3id.org/str/numberOfGuests"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20number of guests%20in%20Activity Data&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23ActivityData.numberofguests" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="https://w3id.org/str/numberOfGuests"
data-toggle="tooltip"
data-content="https://w3id.org/str/numberOfGuests"
data-placement="right">
number of guests</a>
</td>
<td>
<a href="#Integer" data-placement="right">Integer</a>
</td>
<td>
1
</td>
<td property="rdfs:comment">
The number of guest that the unit was rented to per night.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory3.1">US 3.1</a>
</td>
</tr>
<tr id="ActivityData.temporal"
typeof="rdfs:Property"
resource="http://purl.org/dc/terms/temporal"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20temporal%20in%20Activity Data&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23ActivityData.temporal" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="http://purl.org/dc/terms/temporal"
data-toggle="tooltip"
data-content="http://purl.org/dc/terms/temporal"
data-placement="right">
temporal</a>
</td>
<td>
<a href="#Periodoftime" data-placement="right">Period of time</a>
</td>
<td>
1
</td>
<td property="rdfs:comment">
It indicates the period of time associated.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory3.1">US 3.1</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section>
<h3 id="Evidence">
<a href="http://data.europa.eu/m8g/Evidence"
data-toggle="tooltip"
data-content="http://data.europa.eu/m8g/Evidence"
data-placement="right">Evidence</a>
</h3>
<!-- XXX an image in the h3 will break the rendering of the Table Of Contents of Respec -->
<!-- outcomment github feedback possibility
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20Evidence&body=Explain%20your%20issue"}}>
<img src="html/callout.png" loading="lazy" alt="(create issue)" width="20" height="20"/>
</a>
-->
<dl>
<dt>
Definition
</dt>
<dd>
Proof that a Requirement is met.
</dd>
<dt>
Usage Note
</dt>
<dd>
Evidence can be any resource - document, artefact - anything needed for executing the Public Service. In the context of Public Services, Evidence is usually administrative documents or completed application forms. A specific Public Service may require the presence of certain Evidence or combinations of Evidence in order to be delivered. In some cases, the Output of one service will be Evidence for another service. Such relationships should be described in the associated Rule(s).
</dd>
<dt>
Properties
</dt>
<dd>
For this entity the following properties are defined: <a href="#Evidence.describes">describes</a>
, <a href="#Evidence.identifier">identifier</a>
, <a href="#Evidence.name">name</a>
, <a href="#Evidence.relateddocumentation">related documentation</a>
, <a href="#Evidence.submissiondate">submission date</a>
, <a href="#Evidence.updatedate">update date</a>
, <a href="#Evidence.validityperiod">validity period</a>
.
</dd>
</dl>
</div>
<div class="u-table-overflow">
<table class="data-table simple" id="table-mandatory-classes">
<thead>
<tr class="data-table__header">
<th class="data-table__header-title--sortable" style="width:6%">
</th>
<th class="data-table__header-title--sortable data-table__header-title--sortable-active" style="width:14%">
Property
</th>
<th class="data-table__header-title--sortable" style="width:14%">
Range
</th>
<th class="data-table__header-title--sortable" style="width:6%">
Card
</th>
<th class="data-table__header-title--sortable" style="width:25%">
Definition
</th>
<th class="data-table__header-title--sortable" style="width:25%">
Usage
</th>
<!--
<th class="data-table__header-title--sortable" style="width:3%">
Codelist
</th>
-->
<th class="data-table__header-title--sortable" style="width:10%">
User Story
</th>
</tr>
</thead>
<tbody class="supertype">
<tr id="Evidence.describes"
typeof="rdfs:Property"
resource="https://w3id.org/str/describes"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20describes%20in%20Evidence&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23Evidence.describes" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="https://w3id.org/str/describes"
data-toggle="tooltip"
data-content="https://w3id.org/str/describes"
data-placement="right">
describes</a>
</td>
<td>
<a href="#Unit" data-placement="right">Unit</a>
</td>
<td>
0..1
</td>
<td property="rdfs:comment">
It indicates the Unit described.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory1.1">US 1.1</a>
</td>
</tr>
<tr id="Evidence.identifier"
typeof="rdfs:Property"
resource="http://purl.org/dc/terms/identifier"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20identifier%20in%20Evidence&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23Evidence.identifier" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="http://purl.org/dc/terms/identifier"
data-toggle="tooltip"
data-content="http://purl.org/dc/terms/identifier"
data-placement="right">
identifier</a>
</td>
<td>
<a href="#Literal" data-placement="right">Literal</a>
</td>
<td>
1
</td>
<td property="rdfs:comment">
An Identifier for the piece of Evidence.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory1.1">US 1.1</a>
</td>
</tr>
<tr id="Evidence.name"
typeof="rdfs:Property"
resource="http://purl.org/dc/terms/title"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20name%20in%20Evidence&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23Evidence.name" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="http://purl.org/dc/terms/title"
data-toggle="tooltip"
data-content="http://purl.org/dc/terms/title"
data-placement="right">
name</a>
</td>
<td>
<a href="#langString" data-placement="right">langString</a>
</td>
<td>
1..*
</td>
<td property="rdfs:comment">
The official Name of the piece of Evidence.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory1.1">US 1.1</a>
</td>
</tr>
<tr id="Evidence.relateddocumentation"
typeof="rdfs:Property"
resource="http://xmlns.com/foaf/0.1/page"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20related documentation%20in%20Evidence&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23Evidence.relateddocumentation" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="http://xmlns.com/foaf/0.1/page"
data-toggle="tooltip"
data-content="http://xmlns.com/foaf/0.1/page"
data-placement="right">
related documentation</a>
</td>
<td>
<a href="#Document" data-placement="right">Document</a>
</td>
<td>
0..*
</td>
<td property="rdfs:comment">
The documentation that contains information.
</td>
<td property="skos:scopeNote">
For instance, a particular template for an administrative document, an application or a guide on formatting the Evidence.
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory1.1">US 1.1</a>
</td>
</tr>
<tr id="Evidence.submissiondate"
typeof="rdfs:Property"
resource="https://w3id.org/str/submissionDate"
class="class mandatory">
<td>
<a href="https://github.com/SEMICeu/STR-AP/issues/new?title=Issue%20for%20submission date%20in%20Evidence&body=Explain%20your%20issue%20for%20https://semiceu.github.io/STR-AP/releases/1.0.1%23Evidence.submissiondate" target="_blank" rel="noopener noreferrer" >
<!-- <i class="icon">[o]</i> -->
<img src="html/callout.png" loading="lazy" alt="[o]" width="100" height="100"/>
</a>
</td>
<td>
<a href="https://w3id.org/str/submissionDate"
data-toggle="tooltip"
data-content="https://w3id.org/str/submissionDate"
data-placement="right">
submission date</a>
</td>
<td>
<a href="#DateTime" data-placement="right">DateTime</a>
</td>
<td>
1
</td>
<td property="rdfs:comment">
The date in which the Document has been submitted.
</td>
<td property="skos:scopeNote">
</td>
<!--
<td>
</td>
-->
<td>
<a href="#UserStory1.1">US 1.1</a>
</td>
</tr>