-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_3.ttl
4158 lines (3311 loc) · 300 KB
/
output_3.ttl
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
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/C-E-> skosxl:literalForm "C.E."@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/CE> skosxl:literalForm "CE"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/ICT> skosxl:literalForm "ICT"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/Mgmt-> skosxl:literalForm "Mgmt."@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/Mk-> skosxl:literalForm "Mk."@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/acceptance> skosxl:literalForm "acceptance"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/active> skosxl:literalForm "active"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/activity> skosxl:literalForm "activity"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/adjust> skosxl:literalForm "adjust"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/adopt> skosxl:literalForm "adopt"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/agreement> skosxl:literalForm "agreement"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/agreements> skosxl:literalForm "agreements"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/all> skosxl:literalForm "all"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/allocation> skosxl:literalForm "allocation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/animal> skosxl:literalForm "animal"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/application> skosxl:literalForm "application"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/apply> skosxl:literalForm "apply"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/archived> skosxl:literalForm "archived"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/arrangement> skosxl:literalForm "arrangement"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/ascertain> skosxl:literalForm "ascertain"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/assist> skosxl:literalForm "assist"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/assurance> skosxl:literalForm "assurance"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/authentication> skosxl:literalForm "authentication"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/authorisation> skosxl:literalForm "authorisation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/authority> skosxl:literalForm "authority"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/autonomy> skosxl:literalForm "autonomy"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/bear> skosxl:literalForm "bear"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/benefit> skosxl:literalForm "benefit"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/brand> skosxl:literalForm "brand"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/branding> skosxl:literalForm "branding"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/build> skosxl:literalForm "build"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/business> skosxl:literalForm "business"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/capacity> skosxl:literalForm "capacity"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/capital> skosxl:literalForm "capital"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/cash> skosxl:literalForm "cash"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/central> skosxl:literalForm "central"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/chassis> skosxl:literalForm "chassis"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/child> skosxl:literalForm "child"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/clause> skosxl:literalForm "clause"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/clear> skosxl:literalForm "clear"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/client> skosxl:literalForm "client"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/closing> skosxl:literalForm "closing"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/collection> skosxl:literalForm "collection"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/come> skosxl:literalForm "come"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/common> skosxl:literalForm "common"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/communicate> skosxl:literalForm "communicate"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/communication> skosxl:literalForm "communication"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/company> skosxl:literalForm "company"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/component> skosxl:literalForm "component"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/computer> skosxl:literalForm "computer"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/conditions> skosxl:literalForm "conditions"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/confidence> skosxl:literalForm "confidence"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/conflict> skosxl:literalForm "conflict"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/conformity> skosxl:literalForm "conformity"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/constitution> skosxl:literalForm "constitution"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/consumers> skosxl:literalForm "consumers"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/contact> skosxl:literalForm "contact"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/context> skosxl:literalForm "context"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/contribution> skosxl:literalForm "contribution"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/cost> skosxl:literalForm "cost"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/cover> skosxl:literalForm "cover"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/create> skosxl:literalForm "create"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/cross> skosxl:literalForm "cross"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/cybersecurity> skosxl:literalForm "cybersecurity"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/danger> skosxl:literalForm "danger"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/date> skosxl:literalForm "date"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/deal> skosxl:literalForm "deal"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/death> skosxl:literalForm "death"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/decision> skosxl:literalForm "decision"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/declare> skosxl:literalForm "declare"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/deliver> skosxl:literalForm "deliver"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/delivery> skosxl:literalForm "delivery"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/designing> skosxl:literalForm "designing"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/destination> skosxl:literalForm "destination"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/determine> skosxl:literalForm "determine"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/disposal> skosxl:literalForm "disposal"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/distribution> skosxl:literalForm "distribution"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/division> skosxl:literalForm "division"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/divorce> skosxl:literalForm "divorce"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/do> skosxl:literalForm "do"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/documentation> skosxl:literalForm "documentation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/domicile> skosxl:literalForm "domicile"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/down> skosxl:literalForm "down"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/draft> skosxl:literalForm "draft"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/draw> skosxl:literalForm "draw"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/driving> skosxl:literalForm "driving"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/economic> skosxl:literalForm "economic"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/economy> skosxl:literalForm "economy"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/effect> skosxl:literalForm "effect"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/efficiency> skosxl:literalForm "efficiency"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/element> skosxl:literalForm "element"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/employers> skosxl:literalForm "employers"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/energy> skosxl:literalForm "energy"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/enjoyment> skosxl:literalForm "enjoyment"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/enquiry> skosxl:literalForm "enquiry"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/ensure> skosxl:literalForm "ensure"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/estate> skosxl:literalForm "estate"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/examination> skosxl:literalForm "examination"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exchange> skosxl:literalForm "exchange"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exchanged> skosxl:literalForm "exchanged"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/expert> skosxl:literalForm "expert"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/explanation> skosxl:literalForm "explanation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/extend> skosxl:literalForm "extend"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/extension> skosxl:literalForm "extension"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/f-> skosxl:literalForm "f."@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/facility> skosxl:literalForm "facility"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/fact> skosxl:literalForm "fact"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/fair> skosxl:literalForm "fair"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/foreign> skosxl:literalForm "foreign"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/formation> skosxl:literalForm "formation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/full> skosxl:literalForm "full"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/functional> skosxl:literalForm "functional"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/functioning> skosxl:literalForm "functioning"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/gender> skosxl:literalForm "gender"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/general> skosxl:literalForm "general"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/good> skosxl:literalForm "good"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/goods> skosxl:literalForm "goods"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/government> skosxl:literalForm "government"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/grounds> skosxl:literalForm "grounds"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/guidance> skosxl:literalForm "guidance"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/guide> skosxl:literalForm "guide"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/handle> skosxl:literalForm "handle"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/health> skosxl:literalForm "health"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/history> skosxl:literalForm "history"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/hold> skosxl:literalForm "hold"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/identity> skosxl:literalForm "identity"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/impose> skosxl:literalForm "impose"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/imposition> skosxl:literalForm "imposition"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/independence> skosxl:literalForm "independence"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/independent> skosxl:literalForm "independent"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/indirect> skosxl:literalForm "indirect"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/inquiry> skosxl:literalForm "inquiry"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/installation> skosxl:literalForm "installation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/institute> skosxl:literalForm "institute"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/institution> skosxl:literalForm "institution"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/instrument> skosxl:literalForm "instrument"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/insurance> skosxl:literalForm "insurance"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/interference> skosxl:literalForm "interference"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/investigation> skosxl:literalForm "investigation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/involvement> skosxl:literalForm "involvement"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/label> skosxl:literalForm "label"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/labelling> skosxl:literalForm "labelling"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/laws> skosxl:literalForm "laws"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/lawyer> skosxl:literalForm "lawyer"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/legislative> skosxl:literalForm "legislative"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/legitimate> skosxl:literalForm "legitimate"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/length> skosxl:literalForm "length"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/licence> skosxl:literalForm "licence"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/list> skosxl:literalForm "list"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/machine> skosxl:literalForm "machine"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/main> skosxl:literalForm "main"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marking> skosxl:literalForm "marking"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/measuring> skosxl:literalForm "measuring"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/medical> skosxl:literalForm "medical"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/medicine> skosxl:literalForm "medicine"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/membership> skosxl:literalForm "membership"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/messages> skosxl:literalForm "messages"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/mgmt-> skosxl:literalForm "mgmt."@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/mode> skosxl:literalForm "mode"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/money> skosxl:literalForm "money"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/moving> skosxl:literalForm "moving"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/municipalities> skosxl:literalForm "municipalities"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/name> skosxl:literalForm "name"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/national> skosxl:literalForm "national"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/off> skosxl:literalForm "off"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/open> skosxl:literalForm "open"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/opening> skosxl:literalForm "opening"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/origin> skosxl:literalForm "origin"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/package> skosxl:literalForm "package"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/parliaments> skosxl:literalForm "parliaments"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/participation> skosxl:literalForm "participation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/past> skosxl:literalForm "past"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/payments> skosxl:literalForm "payments"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/people> skosxl:literalForm "people"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/permanent> skosxl:literalForm "permanent"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/permission> skosxl:literalForm "permission"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/permits> skosxl:literalForm "permits"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/planning> skosxl:literalForm "planning"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/play> skosxl:literalForm "play"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/post> skosxl:literalForm "post"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/power> skosxl:literalForm "power"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/practical> skosxl:literalForm "practical"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/prescription> skosxl:literalForm "prescription"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/present> skosxl:literalForm "present"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/presented> skosxl:literalForm "presented"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/preservation> skosxl:literalForm "preservation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/preventative> skosxl:literalForm "preventative"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/prevention> skosxl:literalForm "prevention"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/private> skosxl:literalForm "private"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/proceedings> skosxl:literalForm "proceedings"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/procurement> skosxl:literalForm "procurement"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/public> skosxl:literalForm "public"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/pursuit> skosxl:literalForm "pursuit"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/qualified> skosxl:literalForm "qualified"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/r-d> skosxl:literalForm "r&d"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/raise> skosxl:literalForm "raise"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reach> skosxl:literalForm "reach"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reaction> skosxl:literalForm "reaction"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reason> skosxl:literalForm "reason"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/recommendation> skosxl:literalForm "recommendation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/refer> skosxl:literalForm "refer"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/regime> skosxl:literalForm "regime"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/region> skosxl:literalForm "region"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/register> skosxl:literalForm "register"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/regulating> skosxl:literalForm "regulating"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/regulations> skosxl:literalForm "regulations"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/relation> skosxl:literalForm "relation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/remedy> skosxl:literalForm "remedy"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/remove> skosxl:literalForm "remove"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/rental> skosxl:literalForm "rental"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/replace> skosxl:literalForm "replace"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reply> skosxl:literalForm "reply"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/representative> skosxl:literalForm "representative"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/resolving> skosxl:literalForm "resolving"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/resource> skosxl:literalForm "resource"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/rest> skosxl:literalForm "rest"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reviews> skosxl:literalForm "reviews"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reviving> skosxl:literalForm "reviving"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/right> skosxl:literalForm "right"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/risk> skosxl:literalForm "risk"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sale> skosxl:literalForm "sale"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/second> skosxl:literalForm "second"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/section> skosxl:literalForm "section"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/secure> skosxl:literalForm "secure"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/see> skosxl:literalForm "see"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/separation> skosxl:literalForm "separation"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sequence> skosxl:literalForm "sequence"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/set> skosxl:literalForm "set"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/setting> skosxl:literalForm "setting"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sign> skosxl:literalForm "sign"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/solution> skosxl:literalForm "solution"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/solving> skosxl:literalForm "solving"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sound> skosxl:literalForm "sound"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/specific> skosxl:literalForm "specific"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/specifications> skosxl:literalForm "specifications"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/specified> skosxl:literalForm "specified"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/spot> skosxl:literalForm "spot"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/stake> skosxl:literalForm "stake"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/strengthen> skosxl:literalForm "strengthen"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/stringent> skosxl:literalForm "stringent"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/temporary> skosxl:literalForm "temporary"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/tenders> skosxl:literalForm "tenders"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/termination> skosxl:literalForm "termination"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/terms> skosxl:literalForm "terms"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/time> skosxl:literalForm "time"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/toll> skosxl:literalForm "toll"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/train> skosxl:literalForm "train"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/traineeship> skosxl:literalForm "traineeship"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/transmission> skosxl:literalForm "transmission"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/treaty> skosxl:literalForm "treaty"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/uncertainty> skosxl:literalForm "uncertainty"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/universal> skosxl:literalForm "universal"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/used> skosxl:literalForm "used"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/user> skosxl:literalForm "user"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/var-> skosxl:literalForm "var."@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/vary> skosxl:literalForm "vary"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/visa> skosxl:literalForm "visa"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/voice> skosxl:literalForm "voice"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/voluntary> skosxl:literalForm "voluntary"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/voting> skosxl:literalForm "voting"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/withdrawal> skosxl:literalForm "withdrawal"@en .
<http://publications.europa.eu/resource/authority/publicservice-theme/label/works> skosxl:literalForm "works"@en .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A> a skos:Concept ;
dct:identifier "A" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/journey>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/journeys>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/movement>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/tour>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/traffic>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/travelling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/travels>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/visa> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/A-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A-label--0> a skosxl:Label ;
skosxl:literalForm "Travel within the Union" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A1> a skos:Concept ;
dct:identifier "A1" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/board>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/child>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/free>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/full>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/home>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/household>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/margin>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/notice>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/posting>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/recommendation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/treaty> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/A1-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A1-label--0> a skosxl:Label ;
skosxl:literalForm "documents required of Union citizens, their family members who are not Union citizens, minors travelling alone and non-Union citizens when travelling across borders within the Union (ID card, visa, passport)" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A2> a skos:Concept ;
dct:identifier "A2" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/agreement>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/commitment>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/constitution>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/duty>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/journey>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/journeys>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/movement>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/organisation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/responsibility>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/software>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/system>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/tour>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/trade>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/traffic>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/travelling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/travels> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/A2-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A2-label--0> a skosxl:Label ;
skosxl:literalForm "rights and obligations of travellers by plane, train, ship, bus in and from the Union, and of those who buy travel packages or linked travel arrangements" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A3> a skos:Concept ;
dct:identifier "A3" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/aid>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/assist>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/cause>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/character>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/event>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/example>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/guide>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/help>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/instance>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reach>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/service>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/subject>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/type> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/A3-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A3-label--0> a skosxl:Label ;
skosxl:literalForm "assistance in case of reduced mobility when travelling in and from the Union" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A4> a skos:Concept ;
dct:identifier "A4" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/animal>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/medium>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/moving>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/take>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/transfer>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/works> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/A4-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A4-label--0> a skosxl:Label ;
skosxl:literalForm "transport of animals, plants, alcohol, tobacco, cigarettes and other goods when travelling in the Union" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A5> a skos:Concept ;
dct:identifier "A5" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/communication>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/contact>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/content>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/gender>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/information>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/part>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/representative>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/substance>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/transmission> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/A5-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/A5-label--0> a skosxl:Label ;
skosxl:literalForm "voice calling and sending and receiving electronic messages and electronic data within the Union" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B> a skos:Concept ;
dct:identifier "B" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/employment>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/privacy>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/study>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/workplace> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B-label--0> a skosxl:Label ;
skosxl:literalForm "Work and retirement within the Union" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B1> a skos:Concept ;
dct:identifier "B1" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/employed>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exercise>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/use>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/work> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B1-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B1-label--0> a skosxl:Label ;
skosxl:literalForm "seeking employment in another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B2> a skos:Concept ;
dct:identifier "B2" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exchanged>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exercise>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/occupation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/use>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/work> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B2-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B2-label--0> a skosxl:Label ;
skosxl:literalForm "taking up employment in another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B3> a skos:Concept ;
dct:identifier "B3" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/acknowledgement>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/credit>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exercise>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/identification>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/making>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/out>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/realisation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reference>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reservation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/use>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/work> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B3-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B3-label--0> a skosxl:Label ;
skosxl:literalForm "recognition of qualifications with a view to employment in another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B4> a skos:Concept ;
dct:identifier "B4" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/duties>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/others>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/tax>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/taxes> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B4-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B4-label--0> a skosxl:Label ;
skosxl:literalForm "taxation in another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B5> a skos:Concept ;
dct:identifier "B5" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exercise>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/law>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/normal>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/obligation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/policy>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/principle>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/regulation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/residency>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/service>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/services>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/use>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/work> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B5-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B5-label--0> a skosxl:Label ;
skosxl:literalForm "rules on liability and mandatory insurance linked to residence or employment in another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B6> a skos:Concept ;
dct:identifier "B6" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/border>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/call>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/close>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/commitment>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/conclusion>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/condition>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/confirmation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/consequence>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/consideration>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/contract>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/data>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/declaration>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/discharge>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/dismissal>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/duty>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/employment>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/end>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exercise>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/expiry>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/h>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/hindrance>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/limit>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/outcome>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/police>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/responsibility>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/result>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/retirement>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/return>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/status>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/stay>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/stop>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/study>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/term>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/time>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/tool>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/use>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/vacation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/verification>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/work>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/workplace> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B6-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B6-label--0> a skosxl:Label ;
skosxl:literalForm "terms and conditions of employment, including for posted workers, as stipulated by law or statutory instrument (including information on working hours, paid leave, holiday entitlements, rights and obligations regarding overtime work, health checks, termination of contracts, dismissal and redundancies)" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B7> a skos:Concept ;
dct:identifier "B7" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/declaration>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/discussion>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exercise>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/handling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/intervention>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/law>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/man>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/normal>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/principle>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/regulation>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/remuneration>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/staff>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/use>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/work> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B7-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B7-label--0> a skosxl:Label ;
skosxl:literalForm "equal treatment (rules prohibiting discrimination in the workplace, rules on equal pay for men and women and on equal pay for employees on fixed-term or permanent employment contracts)" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B8> a skos:Concept ;
dct:identifier "B8" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/action>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/case>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/character>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/commitment>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/duty>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/group>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/kind>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/nature>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/responsibility>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/return>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/safe>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/security> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B8-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B8-label--0> a skosxl:Label ;
skosxl:literalForm "health and safety obligations in relation to different types of activity" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B9> a skos:Concept ;
dct:identifier "B9" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/benefit>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/certificate>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/commitment>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/duty>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/family>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/guarantee>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/hotel>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/protection>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/responsibility>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/right>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/safety>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/society>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/B9-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/B9-label--0> a skosxl:Label ;
skosxl:literalForm "social security rights and obligations in the Union including those related to getting pensions" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C> a skos:Concept ;
dct:identifier "C" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/combination>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/coupling>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marriage>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/mobile>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/sum> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/C-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C-label--0> a skosxl:Label ;
skosxl:literalForm "Vehicles in the Union" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C1> a skos:Concept ;
dct:identifier "C1" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/action>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/car>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/engine>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/lay>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/leave>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/second> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/C1-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C1-label--0> a skosxl:Label ;
skosxl:literalForm "taking a motor vehicle temporarily or permanently to another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C2> a skos:Concept ;
dct:identifier "C2" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/cause>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/clear>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/direction>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/driving>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/effort>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/exploit>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/getting>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/guidance>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/instrument>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/movement>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/permit>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/permits>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/reviving>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/travel>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/travelling> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/C2-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C2-label--0> a skosxl:Label ;
skosxl:literalForm "acquiring and renewing a driving licence" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C3> a skos:Concept ;
dct:identifier "C3" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/action>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/car>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/carry>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/draw>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/engine>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/insurers>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/issue>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/mandate>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/policy>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/return> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/C3-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C3-label--0> a skosxl:Label ;
skosxl:literalForm "taking out mandatory motor vehicle insurance" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C4> a skos:Concept ;
dct:identifier "C4" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/car>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/commerce>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/country>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/engine>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/land>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/marketing>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/purchasing> ;
skosxl:prefLabel <http://webgate.ec.europa.eu/youreurope/sdg/annexI/C4-label--0> .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C4-label--0> a skosxl:Label ;
skosxl:literalForm "buying and selling a motor vehicle in another Member State" .
<http://webgate.ec.europa.eu/youreurope/sdg/annexI/C5> a skos:Concept ;
dct:identifier "C5" ;
skos:inScheme <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skos:topConceptOf <http://webgate.ec.europa.eu/youreurope/sdg/annexI> ;
skosxl:altLabel <http://publications.europa.eu/resource/authority/publicservice-theme/label/bearing>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/care>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/complaint>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/condition>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/demand>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/direction>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/discharge>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/essential>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/mission>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/necessary>,
<http://publications.europa.eu/resource/authority/publicservice-theme/label/necessity>,