-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcat2.jsonld
executable file
·3923 lines (3923 loc) · 204 KB
/
dcat2.jsonld
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
{
"@graph" : [ {
"@id" : "_:b0",
"homepage" : "http://stfc.ac.uk",
"foaf:name" : "Science and Technology Facilities Council, UK"
}, {
"@id" : "_:b11",
"homepage" : "http://www.asahi-net.or.jp/~ax2s-kmtn/",
"foaf:name" : "Shuji Kamitsuna"
}, {
"@id" : "_:b12",
"seeAlso" : "http://fadmaa.me/foaf.ttl",
"foaf:name" : "Fadi Maali"
}, {
"@id" : "_:b13",
"foaf:name" : "Marios Meimaris"
}, {
"@id" : "_:b14",
"seeAlso" : "http://www.eurecom.fr/~atemezin/gatemezing-foaf.rdf",
"foaf:name" : "Ghislain Auguste Atemezing"
}, {
"@id" : "_:b15",
"seeAlso" : "http://makxdekkers.com/makxdekkers.rdf#me",
"homepage" : "http://makxdekkers.com/",
"foaf:name" : "Makx Dekkers"
}, {
"@id" : "_:b16",
"foaf:name" : "Richard Cyganiak"
}, {
"@id" : "_:b17",
"homepage" : "http://okfn.org",
"foaf:name" : "Open Knowledge Foundation"
}, {
"@id" : "_:b18",
"affiliation" : "_:b17",
"foaf:name" : "Rufus Pollock"
}, {
"@id" : "_:b19",
"foaf:name" : "John Erickson"
}, {
"@id" : "_:b2",
"seeAlso" : "https://orcid.org/0000-0001-5648-2713",
"homepage" : [ "https://w3id.org/people/ralbertoni/", "http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni" ],
"foaf:name" : "Riccardo Albertoni"
}, {
"@id" : "_:b20",
"foaf:name" : "Boris Villazón-Terrazas"
}, {
"@id" : "_:b21",
"affiliation" : "http://www.w3.org/data#W3C",
"seeAlso" : "http://philarcher.org/foaf.rdf#me",
"homepage" : "http://www.w3.org/People/all#phila",
"foaf:name" : "Phil Archer"
}, {
"@id" : "_:b22",
"seeAlso" : "https://jakub.klímek.com/#me",
"homepage" : "https://jakub.klímek.com/",
"foaf:name" : "Jakub Klímek"
}, {
"@id" : "_:b23",
"homepage" : "http://www.w3.org/2011/gld/",
"foaf:name" : "Government Linked Data WG"
}, {
"@id" : "_:b24",
"affiliation" : "_:b0",
"seeAlso" : "https://orcid.org/0000-0003-3499-8262",
"homepage" : "https://agbeltran.github.io",
"foaf:name" : "Alejandra Gonzalez-Beltran"
}, {
"@id" : "_:b25",
"affiliation" : "_:b4",
"foaf:name" : "Vassilios Peristeras"
}, {
"@id" : "_:b26",
"affiliation" : "_:b29",
"foaf:name" : "David Browning"
}, {
"@id" : "_:b28",
"@type" : "owl:Restriction",
"cardinality" : "1",
"onProperty" : "foaf:primaryTopic"
}, {
"@id" : "_:b29",
"homepage" : "http://www.refinitiv.com",
"foaf:name" : "Refinitiv"
}, {
"@id" : "_:b3",
"foaf:name" : "Martin Alvarez-Espinar"
}, {
"@id" : "_:b30",
"@type" : "owl:Restriction",
"allValuesFrom" : "dcat:Resource",
"onProperty" : "foaf:primaryTopic"
}, {
"@id" : "_:b4",
"homepage" : "http://ec.europa.eu/dgs/informatics/",
"foaf:name" : "European Commission, DG DIGIT"
}, {
"@id" : "_:b5",
"@type" : "foaf:Person",
"affiliation" : "_:b6",
"seeAlso" : "https://orcid.org/0000-0002-3884-3420",
"foaf:name" : "Simon J D Cox",
"workInfoHomepage" : "http://people.csiro.au/Simon-Cox"
}, {
"@id" : "_:b6",
"homepage" : "https://csiro.au",
"foaf:name" : "Commonwealth Scientific and Industrial Research Organisation"
}, {
"@id" : "_:b7",
"seeAlso" : "https://orcid.org/0000-0001-9300-2694",
"homepage" : "http://www.andrea-perego.name/foaf/#me",
"foaf:name" : "Andrea Perego"
}, {
"@id" : "_:b8",
"@type" : "owl:Class",
"unionOf" : {
"@list" : [ "prov:Attribution", "dcat:Relationship" ]
}
}, {
"@id" : "http://www.w3.org/ns/dcat",
"@type" : "owl:Ontology",
"contributor" : [ "_:b11", "_:b13", "_:b7", "_:b5", "_:b3", "_:b20", "_:b18", "_:b21", "_:b22", "_:b2", "_:b14", "_:b24", "_:b25", "_:b15", "_:b26", "_:b16" ],
"creator" : [ "_:b19", "_:b12" ],
"license" : "https://creativecommons.org/licenses/by/4.0/",
"modified" : [ "2020-11-30", "2012-04-24", "2017-12-19", "2013-09-20", "2013-11-28", "2021-09-14" ],
"dct:modified" : "2019",
"rdfs:comment" : [ {
"@language" : "da",
"@value" : "DCAT er et RDF-vokabular som har til formål at understøtte interoperabilitet mellem datakataloger udgivet på nettet. Ved at anvende DCAT til at beskrive datasæt i datakataloger, kan udgivere øge findbarhed og gøre det gøre det lettere for applikationer at anvende metadata fra forskellige kataloger. Derudover understøttes decentraliseret udstilling af kataloger og fødererede datasætsøgninger på tværs af websider. Aggregerede DCAT-metadata kan fungere som fortegnelsesfiler der kan understøtte digital bevaring. DCAT er defineret på http://www.w3.org/TR/vocab-dcat/. Enhver forskel mellem det normative dokument og dette schema er en fejl i dette schema."
}, {
"@language" : "fr",
"@value" : "DCAT est un vocabulaire développé pour faciliter l'interopérabilité entre les jeux de données publiées sur le Web. En utilisant DCAT pour décrire les jeux de données dans les catalogues de données, les fournisseurs de données augmentent leur découverte et permettent que les applications facilement les métadonnées de plusieurs catalogues. Il permet en plus la publication décentralisée des catalogues et facilitent la recherche fédérée des données entre plusieurs sites. Les métadonnées DCAT aggrégées peuvent servir comme un manifeste pour faciliter la préservation digitale des ressources. DCAT est définie à l'adresse http://www.w3.org/TR/vocab-dcat/. Une quelconque version de ce document normatif et ce vocabulaire est une erreur dans ce vocabulaire."
}, {
"@language" : "cs",
"@value" : "DCAT je RDF slovník navržený pro zprostředkování interoperability mezi datovými katalogy publikovanými na Webu. Poskytovatelé dat používáním slovníku DCAT pro popis datových sad v datových katalozích zvyšují jejich dohledatelnost a umožňují aplikacím konzumovat metadata z více katalogů. Dále je umožňena decentralizovaná publikace katalogů a federované dotazování na datové sady napříč katalogy. Agregovaná DCAT metadata mohou také sloužit jako průvodka umožňující digitální uchování informace. DCAT je definován na http://www.w3.org/TR/vocab-dcat/. Jakýkoliv nesoulad mezi odkazovaným dokumentem a tímto schématem je chybou v tomto schématu."
}, {
"@language" : "ar",
"@value" : "هي أنطولوجية تسهل تبادل البيانات بين مختلف الفهارس على الوب. استخدام هذه الأنطولوجية يساعد على اكتشاف قوائم البيانات المنشورة على الوب و يمكن التطبيقات المختلفة من الاستفادة أتوماتيكيا من البيانات المتاحة من مختلف الفهارس."
}, {
"@language" : "ja",
"@value" : "DCATは、ウェブ上で公開されたデータ・カタログ間の相互運用性の促進を目的とするRDFの語彙です。このドキュメントでは、その利用のために、スキーマを定義し、例を提供します。データ・カタログ内のデータセットを記述するためにDCATを用いると、公開者が、発見可能性を増加させ、アプリケーションが複数のカタログのメタデータを容易に利用できるようになります。さらに、カタログの分散公開を可能にし、複数のサイトにまたがるデータセットの統合検索を促進します。集約されたDCATメタデータは、ディジタル保存を促進するためのマニフェスト・ファイルとして使用できます。"
}, {
"@language" : "en",
"@value" : "DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web. By using DCAT to describe datasets in data catalogs, publishers increase discoverability and enable applications easily to consume metadata from multiple catalogs. It further enables decentralized publishing of catalogs and facilitates federated dataset search across sites. Aggregated DCAT metadata can serve as a manifest file to facilitate digital preservation. DCAT is defined at http://www.w3.org/TR/vocab-dcat/. Any variance between that normative document and this schema is an error in this schema."
}, {
"@language" : "es",
"@value" : "DCAT es un vocabulario RDF diseñado para facilitar la interoperabilidad entre catálogos de datos publicados en la Web. Utilizando DCAT para describir datos disponibles en catálogos se aumenta la posibilidad de que sean descubiertos y se permite que las aplicaciones consuman fácilmente los metadatos de varios catálogos."
}, {
"@language" : "el",
"@value" : "Το DCAT είναι ένα RDF λεξιλόγιο που σχεδιάσθηκε για να κάνει εφικτή τη διαλειτουργικότητα μεταξύ καταλόγων δεδομένων στον Παγκόσμιο Ιστό. Χρησιμοποιώντας το DCAT για την περιγραφή συνόλων δεδομένων, οι εκδότες αυτών αυξάνουν την ανακαλυψιμότητα και επιτρέπουν στις εφαρμογές την εύκολη κατανάλωση μεταδεδομένων από πολλαπλούς καταλόγους. Επιπλέον, δίνει τη δυνατότητα για αποκεντρωμένη έκδοση και διάθεση καταλόγων και επιτρέπει δυνατότητες ενοποιημένης αναζήτησης μεταξύ διαφορετικών πηγών. Συγκεντρωτικά μεταδεδομένα που έχουν περιγραφεί με το DCAT μπορούν να χρησιμοποιηθούν σαν ένα δηλωτικό αρχείο (manifest file) ώστε να διευκολύνουν την ψηφιακή συντήρηση."
}, {
"@language" : "it",
"@value" : "DCAT è un vocabolario RDF progettato per facilitare l'interoperabilità tra i cataloghi di dati pubblicati nel Web. Utilizzando DCAT per descrivere i dataset nei cataloghi di dati, i fornitori migliorano la capacità di individuazione dei dati e abilitano le applicazioni al consumo di dati provenienti da cataloghi differenti. DCAT permette di decentralizzare la pubblicazione di cataloghi e facilita la ricerca federata dei dataset. L'aggregazione dei metadati federati può fungere da file manifesto per facilitare la conservazione digitale. DCAT è definito all'indirizzo http://www.w3.org/TR/vocab-dcat/. Qualsiasi scostamento tra tale definizione normativa e questo schema è da considerarsi un errore di questo schema."
} ],
"rdfs:label" : [ {
"@language" : "cs",
"@value" : "Slovník pro datové katalogy"
}, {
"@language" : "it",
"@value" : "Il vocabolario del catalogo dei dati"
}, {
"@language" : "fr",
"@value" : "Le vocabulaire des jeux de données"
}, {
"@language" : "es",
"@value" : "El vocabulario de catálogo de datos"
}, {
"@language" : "da",
"@value" : "Datakatalogvokabular"
}, {
"@language" : "ar",
"@value" : "أنطولوجية فهارس قوائم البيانات"
}, {
"@language" : "el",
"@value" : "Το λεξιλόγιο των καταλόγων δεδομένων"
}, {
"@language" : "ja",
"@value" : "データ・カタログ語彙(DCAT)"
}, {
"@language" : "en",
"@value" : "The data catalog vocabulary"
} ],
"imports" : [ "http://www.w3.org/2004/02/skos/core", "http://www.w3.org/ns/prov-o#", "http://purl.org/dc/terms/" ],
"owl:versionInfo" : [ {
"@language" : "en",
"@value" : "Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl"
}, {
"@language" : "en",
"@value" : "This is an updated copy of v2.0 of the DCAT vocabulary, taken from https://www.w3.org/ns/dcat.ttl"
}, {
"@language" : "es",
"@value" : "Esta es una copia del vocabulario DCAT v2.0 disponible en https://www.w3.org/ns/dcat.ttl"
}, {
"@language" : "da",
"@value" : "Dette er en opdateret kopi af DCAT v. 2.0 som er tilgænglig på https://www.w3.org/ns/dcat.ttl"
}, {
"@language" : "cs",
"@value" : "Toto je aktualizovaná kopie slovníku DCAT verze 2.0, převzatá z https://www.w3.org/ns/dcat.ttl"
} ],
"skos:editorialNote" : {
"@language" : "en",
"@value" : "English language definitions updated in this revision in line with ED. Multilingual text unevenly updated."
},
"maker" : "_:b23"
}, {
"@id" : "dcat:Catalog",
"@type" : [ "rdfs:Class", "owl:Class" ],
"rdfs:comment" : [ {
"@language" : "en",
"@value" : "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog)."
}, {
"@language" : "it",
"@value" : "Una raccolta curata di metadati sulle risorse (ad es. sui dataset e relativi servizi nel contesto di cataloghi di dati)."
}, {
"@language" : "cs",
"@value" : "Řízená kolekce metadat o datových sadách a datových službách"
}, {
"@language" : "es",
"@value" : "Una colección curada de metadatos sobre recursos (por ejemplo, conjuntos de datos y servicios de datos en el contexto de un catálogo de datos)."
}, {
"@language" : "el",
"@value" : "Μια επιμελημένη συλλογή μεταδεδομένων περί συνόλων δεδομένων"
}, {
"@language" : "fr",
"@value" : "Une collection élaborée de métadonnées sur les jeux de données"
}, {
"@language" : "ar",
"@value" : "مجموعة من توصيفات قوائم البيانات"
}, {
"@language" : "da",
"@value" : "En udvalgt og arrangeret samling af metadata om ressourcer (fx datasæt og datatjenester i kontekst af et datakatalog). "
}, {
"@language" : "ja",
"@value" : "データ・カタログは、データセットに関するキュレートされたメタデータの集合です。"
} ],
"isDefinedBy" : "http://www.w3.org/TR/vocab-dcat/",
"rdfs:label" : [ {
"@language" : "da",
"@value" : "Katalog"
}, {
"@language" : "cs",
"@value" : "Katalog"
}, {
"@language" : "el",
"@value" : "Κατάλογος"
}, {
"@language" : "it",
"@value" : "Catalogo"
}, {
"@language" : "ar",
"@value" : "فهرس قوائم البيانات"
}, {
"@language" : "ja",
"@value" : "カタログ"
}, {
"@language" : "es",
"@value" : "Catálogo"
}, {
"@language" : "en",
"@value" : "Catalog"
}, {
"@language" : "fr",
"@value" : "Catalogue"
} ],
"subClassOf" : "dcat:Dataset",
"skos:definition" : [ {
"@language" : "ja",
"@value" : "データ・カタログは、データセットに関するキュレートされたメタデータの集合です。"
}, {
"@language" : "cs",
"@value" : "Řízená kolekce metadat o datových sadách a datových službách."
}, {
"@language" : "it",
"@value" : "Una raccolta curata di metadati sulle risorse (ad es. sui dataset e relativi servizi nel contesto di cataloghi di dati)."
}, {
"@language" : "ar",
"@value" : "مجموعة من توصيفات قوائم البيانات"
}, {
"@language" : "es",
"@value" : "Una colección curada de metadatos sobre recursos (por ejemplo, conjuntos de datos y servicios de datos en el contexto de un catálogo de datos)."
}, {
"@language" : "el",
"@value" : "Μια επιμελημένη συλλογή μεταδεδομένων περί συνόλων δεδομένων."
}, {
"@language" : "fr",
"@value" : "Une collection élaborée de métadonnées sur les jeux de données."
}, {
"@language" : "da",
"@value" : "En samling af metadata om ressourcer (fx datasæt og datatjenester i kontekst af et datakatalog)."
}, {
"@language" : "en",
"@value" : "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog)."
} ],
"skos:editorialNote" : {
"@language" : "en",
"@value" : "English, Italian, Spanish definitions updated in this revision. Multilingual text not yet updated."
},
"skos:scopeNote" : [ {
"@language" : "es",
"@value" : "Normalmente, un catálogo de datos disponible en la web se representa como una única instancia de esta clase."
}, {
"@language" : "da",
"@value" : "Et webbaseret datakatalog repræsenteres typisk ved en enkelt instans af denne klasse."
}, {
"@language" : "el",
"@value" : "Συνήθως, ένας κατάλογος δεδομένων στον Παγκόσμιο Ιστό αναπαρίσταται ως ένα στιγμιότυπο αυτής της κλάσης."
}, {
"@language" : "cs",
"@value" : "Webový datový katalog je typicky reprezentován jako jedna instance této třídy."
}, {
"@language" : "en",
"@value" : "A web-based data catalog is typically represented as a single instance of this class."
}, {
"@language" : "it",
"@value" : "Normalmente, un catalogo di dati nel web viene rappresentato come una singola istanza di questa classe."
}, {
"@language" : "ja",
"@value" : "通常、ウェブ・ベースのデータ・カタログは、このクラスの1つのインスタンスとして表わされます。"
} ]
}, {
"@id" : "dcat:CatalogRecord",
"@type" : [ "owl:Class", "rdfs:Class" ],
"rdfs:comment" : [ {
"@language" : "en",
"@value" : "A record in a data catalog, describing the registration of a single dataset or data service."
}, {
"@language" : "ja",
"@value" : "1つのデータセットを記述したデータ・カタログ内のレコード。"
}, {
"@language" : "da",
"@value" : "En post i et datakatalog der beskriver registreringen af et enkelt datasæt eller en datatjeneste."
}, {
"@language" : "cs",
"@value" : "Záznam v datovém katalogu popisující jednu datovou sadu či datovou službu."
}, {
"@language" : "fr",
"@value" : "Un registre du catalogue ou une entrée du catalogue, décrivant un seul jeu de données."
}, {
"@language" : "el",
"@value" : "Μία καταγραφή ενός καταλόγου, η οποία περιγράφει ένα συγκεκριμένο σύνολο δεδομένων."
}, {
"@language" : "it",
"@value" : "Un record in un catalogo di dati che descrive un singolo dataset o servizio di dati."
}, {
"@language" : "es",
"@value" : "Un registro en un catálogo de datos que describe un solo conjunto de datos o un servicio de datos."
} ],
"isDefinedBy" : "http://www.w3.org/TR/vocab-dcat/",
"rdfs:label" : [ {
"@language" : "ja",
"@value" : "カタログ・レコード"
}, {
"@language" : "el",
"@value" : "Καταγραφή καταλόγου"
}, {
"@language" : "ar",
"@value" : "سجل"
}, {
"@language" : "es",
"@value" : "Registro del catálogo"
}, {
"@language" : "it",
"@value" : "Record di catalogo"
}, {
"@language" : "en",
"@value" : "Catalog Record"
}, {
"@language" : "da",
"@value" : "Katalogpost"
}, {
"@language" : "cs",
"@value" : "Katalogizační záznam"
}, {
"@language" : "fr",
"@value" : "Registre du catalogue"
} ],
"subClassOf" : [ "_:b28", "_:b30" ],
"skos:definition" : [ {
"@language" : "it",
"@value" : "Un record in un catalogo di dati che descrive un singolo dataset o servizio di dati."
}, {
"@language" : "cs",
"@value" : "Záznam v datovém katalogu popisující jednu datovou sadu či datovou službu."
}, {
"@language" : "es",
"@value" : "Un registro en un catálogo de datos que describe un solo conjunto de datos o un servicio de datos."
}, {
"@language" : "da",
"@value" : "En post i et datakatalog der beskriver registreringen af et enkelt datasæt eller en datatjeneste."
}, {
"@language" : "ja",
"@value" : "1つのデータセットを記述したデータ・カタログ内のレコード。"
}, {
"@language" : "el",
"@value" : "Μία καταγραφή ενός καταλόγου, η οποία περιγράφει ένα συγκεκριμένο σύνολο δεδομένων."
}, {
"@language" : "fr",
"@value" : "Un registre du catalogue ou une entrée du catalogue, décrivant un seul jeu de données."
}, {
"@language" : "en",
"@value" : "A record in a data catalog, describing the registration of a single dataset or data service."
} ],
"skos:editorialNote" : {
"@language" : "en",
"@value" : "English definition updated in this revision. Multilingual text not yet updated except the Spanish one and the Czech one and Italian one."
},
"skos:scopeNote" : [ {
"@language" : "ja",
"@value" : "このクラスはオプションで、すべてのカタログがそれを用いるとは限りません。これは、データセットに関するメタデータとカタログ内のデータセットのエントリーに関するメタデータとで区別が行われるカタログのために存在しています。例えば、データセットの公開日プロパティーは、公開機関が情報を最初に利用可能とした日付を示しますが、カタログ・レコードの公開日は、データセットがカタログに追加された日付です。両方の日付が異っていたり、後者だけが分かっている場合は、カタログ・レコードに対してのみ公開日を指定すべきです。W3CのPROVオントロジー[prov-o]を用いれば、データセットに対する特定の変更に関連するプロセスやエージェントの詳細などの、さらに詳しい来歴情報の記述が可能となることに注意してください。"
}, {
"@language" : "it",
"@value" : "Questa classe è opzionale e non tutti i cataloghi la utilizzeranno. Esiste per cataloghi in cui si opera una distinzione tra i metadati relativi al dataset ed i metadati relativi alla gestione del dataset nel catalogo. Ad esempio, la proprietà per indicare la data di pubblicazione del dataset rifletterà la data in cui l'informazione è stata originariamente messa a disposizione dalla casa editrice, mentre la data di pubblicazione per il record nel catalogo rifletterà la data in cui il dataset è stato aggiunto al catalogo. Nei casi dove solo quest'ultima sia nota, si utilizzerà esclusivamente la data di pubblicazione relativa al record del catalogo. Si noti che l'Ontologia W3C PROV permette di descrivere ulteriori informazioni sulla provenienza, quali i dettagli del processo, la procedura e l'agente coinvolto in una particolare modifica di un dataset."
}, {
"@language" : "cs",
"@value" : "Tato třída je volitelná a ne všechny katalogy ji využijí. Existuje pro katalogy, ve kterých se rozlišují metadata datové sady či datové služby a metadata o záznamu o datové sadě či datové službě v katalogu. Například datum publikace datové sady odráží datum, kdy byla datová sada původně zveřejněna poskytovatelem dat, zatímco datum publikace katalogizačního záznamu je datum zanesení datové sady do katalogu. V případech kdy se obě data liší, nebo je známo jen to druhé, by mělo být specifikováno jen datum publikace katalogizačního záznamu. Všimněte si, že ontologie W3C PROV umožňuje popsat další informace o původu jako například podrobnosti o procesu konkrétní změny datové sady a jeho účastnících."
}, {
"@language" : "es",
"@value" : "Esta clase es opcional y no todos los catálogos la utilizarán. Esta clase existe para catálogos que hacen una distinción entre los metadatos acerca de un conjunto de datos o un servicio de datos y los metadatos acerca de una entrada en ese conjunto de datos en el catálogo. Por ejemplo, la propiedad sobre la fecha de la publicación de los datos refleja la fecha en que la información fue originalmente publicada, mientras que la fecha de publicación del registro del catálogo es la fecha en que los datos se agregaron al mismo. En caso en que ambas fechas fueran diferentes, o en que sólo la fecha de publicación del registro del catálogo estuviera disponible, sólo debe especificarse en el registro del catálogo. Tengan en cuenta que la ontología PROV de W3C permite describir otra información sobre la proveniencia de los datos, como por ejemplo detalles del proceso y de los agentes involucrados en algún cambio específico a los datos."
}, {
"@language" : "en",
"@value" : "This class is optional and not all catalogs will use it. It exists for catalogs where a distinction is made between metadata about a dataset or data service and metadata about the entry for the dataset or data service in the catalog. For example, the publication date property of the dataset reflects the date when the information was originally made available by the publishing agency, while the publication date of the catalog record is the date when the dataset was added to the catalog. In cases where both dates differ, or where only the latter is known, the publication date should only be specified for the catalog record. Notice that the W3C PROV Ontology allows describing further provenance information such as the details of the process and the agent involved in a particular change to a dataset."
}, {
"@language" : "el",
"@value" : "Αυτή η κλάση είναι προαιρετική και δεν χρησιμοποιείται από όλους τους καταλόγους. Υπάρχει για τις περιπτώσεις καταλόγων όπου γίνεται διαχωρισμός μεταξύ των μεταδεδομένων για το σύνολο των δεδομένων και των μεταδεδομένων για την καταγραφή του συνόλου δεδομένων εντός του καταλόγου. Για παράδειγμα, η ιδιότητα της ημερομηνίας δημοσίευσης του συνόλου δεδομένων δείχνει την ημερομηνία κατά την οποία οι πληροφορίες έγιναν διαθέσιμες από τον φορέα δημοσίευσης, ενώ η ημερομηνία δημοσίευσης της καταγραφής του καταλόγου δείχνει την ημερομηνία που το σύνολο δεδομένων προστέθηκε στον κατάλογο. Σε περιπτώσεις που οι δύο ημερομηνίες διαφέρουν, ή που μόνο η τελευταία είναι γνωστή, η ημερομηνία δημοσίευσης θα πρέπει να δίνεται για την καταγραφή του καταλόγου. Να σημειωθεί πως η οντολογία W3C PROV επιτρέπει την περιγραφή επιπλέον πληροφοριών ιστορικού όπως λεπτομέρειες για τη διαδικασία και τον δράστη που εμπλέκονται σε μία συγκεκριμένη αλλαγή εντός του συνόλου δεδομένων."
}, {
"@language" : "da",
"@value" : "Denne klasse er valgfri og ikke alle kataloger vil anvende denne klasse. Den kan anvendes i de kataloger hvor der skelnes mellem metadata om datasættet eller datatjenesten og metadata om selve posten til registreringen af datasættet eller datatjenesten i kataloget. Udgivelsesdatoen for datasættet afspejler for eksempel den dato hvor informationerne oprindeligt blev gjort tilgængelige af udgiveren, hvorimod udgivelsesdatoen for katalogposten er den dato hvor datasættet blev føjet til kataloget. I de tilfælde hvor de to datoer er forskellige eller hvor blot sidstnævnte er kendt, bør udgivelsesdatoen kun angives for katalogposten. Bemærk at W3Cs PROV ontologi gør til muligt at tilføje yderligere proveniensoplysninger eksempelvis om processen eller aktøren involveret i en given ændring af datasættet."
}, {
"@language" : "fr",
"@value" : "C'est une classe facultative et tous les catalogues ne l'utiliseront pas. Cette classe existe pour les catalogues\tayant une distinction entre les métadonnées sur le jeu de données et les métadonnées sur une entrée du jeu de données dans le catalogue."
} ]
}, {
"@id" : "dcat:DataService",
"@type" : "owl:Class",
"rdfs:comment" : [ {
"@language" : "en",
"@value" : "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources."
}, {
"@language" : "cs",
"@value" : "Umístění či přístupový bod poskytující operace související s hledáním, přistupem k, či výkonem funkcí na datech či souvisejících zdrojích."
}, {
"@language" : "da",
"@value" : "Et websted eller endpoint der udstiller operationer relateret til opdagelse af, adgang til eller behandlende funktioner på data eller relaterede ressourcer."
}, {
"@language" : "es",
"@value" : "Un sitio o end-point que provee operaciones relacionadas a funciones de descubrimiento, acceso, o procesamiento de datos o recursos relacionados."
}, {
"@language" : "it",
"@value" : "Un sito o end-point che fornisce operazioni relative alla scoperta, all'accesso o all'elaborazione di funzioni su dati o risorse correlate."
} ],
"rdfs:label" : [ {
"@language" : "it",
"@value" : "Servizio di dati"
}, {
"@language" : "en",
"@value" : "Data service"
}, {
"@language" : "es",
"@value" : "Servicio de datos"
}, {
"@language" : "da",
"@value" : "Datatjeneste"
} ],
"subClassOf" : [ "dctype:Service", "dcat:Resource" ],
"skos:altLabel" : {
"@language" : "da",
"@value" : "Dataservice"
},
"skos:changeNote" : [ {
"@language" : "en",
"@value" : "New class added in DCAT 2.0."
}, {
"@language" : "cs",
"@value" : "Nová třída přidaná ve verzi DCAT 2.0."
}, {
"@language" : "da",
"@value" : "Ny klasse tilføjet i DCAT 2.0."
}, {
"@language" : "es",
"@value" : "Nueva clase añadida en DCAT 2.0."
}, {
"@language" : "it",
"@value" : "Nuova classe aggiunta in DCAT 2.0."
} ],
"skos:definition" : [ {
"@language" : "es",
"@value" : "Un sitio o end-point que provee operaciones relacionadas a funciones de descubrimiento, acceso, o procesamiento de datos o recursos relacionados."
}, {
"@language" : "cs",
"@value" : "Umístění či přístupový bod poskytující operace související s hledáním, přistupem k, či výkonem funkcí na datech či souvisejících zdrojích."
}, {
"@language" : "en",
"@value" : "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources."
}, {
"@language" : "da",
"@value" : "Et site eller endpoint der udstiller operationer relateret til opdagelse af, adgang til eller behandlende funktioner på data eller relaterede ressourcer."
}, {
"@language" : "it",
"@value" : "Un sito o end-point che fornisce operazioni relative alla scoperta, all'accesso o all'elaborazione di funzioni su dati o risorse correlate."
} ],
"skos:scopeNote" : [ {
"@language" : "cs",
"@value" : "Pokud je dcat:DataService navázána na jednu či více Datových sad, jsou tyto indikovány vlstností dcat:servesDataset."
}, {
"@language" : "es",
"@value" : "El tipo de servicio puede indicarse usando la propiedad dct:type. Su valor puede provenir de un vocabulario controlado, como por ejemplo el vocabulario de servicios de datos espaciales de INSPIRE."
}, {
"@language" : "da",
"@value" : "Hvis en dcat:DataService er bundet til en eller flere specifikke datasæt kan dette indikeres ved hjælp af egenskaben dcat:servesDataset. "
}, {
"@language" : "cs",
"@value" : "Druh služby může být indikován vlastností dct:type. Její hodnota může být z řízeného slovníku, kterým je například slovník typů prostorových datových služeb INSPIRE."
}, {
"@language" : "en",
"@value" : "If a dcat:DataService is bound to one or more specified Datasets, they are indicated by the dcat:servesDataset property."
}, {
"@language" : "es",
"@value" : "Si un dcat:DataService está asociado con uno o más conjuntos de datos especificados, dichos conjuntos de datos pueden indicarse con la propiedad dcat:servesDataset."
}, {
"@language" : "it",
"@value" : "Il tipo di servizio può essere indicato usando la proprietà dct:type. Il suo valore può essere preso da un vocabolario controllato come il vocabolario dei tipi di servizi per dati spaziali di INSPIRE."
}, {
"@language" : "da",
"@value" : "Datatjenestetypen kan indikeres ved hjælp af egenskaben dct:type. Værdien kan tages fra kontrollerede udfaldsrum såsom INSPIRE spatial data service vocabulary."
}, {
"@language" : "en",
"@value" : "The kind of service can be indicated using the dct:type property. Its value may be taken from a controlled vocabulary such as the INSPIRE spatial data service type vocabulary."
}, {
"@language" : "it",
"@value" : "Se un dcat:DataService è associato a uno o più Dataset specificati, questi sono indicati dalla proprietà dcat:serveDataset."
} ]
}, {
"@id" : "dcat:Dataset",
"@type" : [ "rdfs:Class", "owl:Class" ],
"rdfs:comment" : [ {
"@language" : "ja",
"@value" : "1つのエージェントによって公開またはキュレートされ、1つ以上の形式でアクセスまたはダウンロードできるデータの集合。"
}, {
"@language" : "it",
"@value" : "Raccolta di dati, pubblicati o curati da un'unica fonte, disponibili per l'accesso o il download in uno o più formati."
}, {
"@language" : "el",
"@value" : "Μία συλλογή από δεδομένα, δημοσιευμένη ή επιμελημένη από μία και μόνο πηγή, διαθέσιμη δε προς πρόσβαση ή μεταφόρτωση σε μία ή περισσότερες μορφές."
}, {
"@language" : "ar",
"@value" : "قائمة بيانات منشورة أو مجموعة من قبل مصدر ما و متاح الوصول إليها أو تحميلها"
}, {
"@language" : "en",
"@value" : "A collection of data, published or curated by a single source, and available for access or download in one or more representations."
}, {
"@language" : "fr",
"@value" : "Une collection de données, publiée ou élaborée par une seule source, et disponible pour accès ou téléchargement dans un ou plusieurs formats."
}, {
"@language" : "cs",
"@value" : "Kolekce dat poskytovaná či řízená jedním zdrojem, která je k dispozici pro přístup či stažení v jednom či více formátech."
}, {
"@language" : "es",
"@value" : "Una colección de datos, publicados o conservados por una única fuente, y disponibles para ser accedidos o descargados en uno o más formatos."
}, {
"@language" : "da",
"@value" : "En samling af data, udgivet eller udvalgt og arrangeret af en enkelt kilde og som er til råde for adgang til eller download af i en eller flere repræsentationer."
} ],
"isDefinedBy" : "http://www.w3.org/TR/vocab-dcat/",
"rdfs:label" : [ {
"@language" : "ja",
"@value" : "データセット"
}, {
"@language" : "en",
"@value" : "Dataset"
}, {
"@language" : "it",
"@value" : "Dataset"
}, {
"@language" : "ar",
"@value" : "قائمة بيانات"
}, {
"@language" : "es",
"@value" : "Conjunto de datos"
}, {
"@language" : "el",
"@value" : "Σύνολο Δεδομένων"
}, {
"@language" : "fr",
"@value" : "Jeu de données"
}, {
"@language" : "cs",
"@value" : "Datová sada"
}, {
"@language" : "da",
"@value" : "Datasæt"
} ],
"subClassOf" : "dcat:Resource",
"skos:altLabel" : {
"@language" : "da",
"@value" : "Datasamling"
},
"skos:changeNote" : [ {
"@language" : "da",
"@value" : "2018-02 - subklasse af dctype:Dataset fjernet da scope af dcat:Dataset omfatter flere forskellige typer fra dctype-vokabularet."
}, {
"@language" : "cs",
"@value" : "2018-02 - odstraněno tvrzení o podtřídě dctype:Dataset, jelikož rozsah dcat:Dataset zahrnuje několik dalších typů ze slovníku dctype."
}, {
"@language" : "en",
"@value" : "2018-02 - subclass of dctype:Dataset removed because scope of dcat:Dataset includes several other types from the dctype vocabulary."
}, {
"@language" : "es",
"@value" : "2018-02 - se eliminó el axioma de subclase con dctype:Dataset porque el alcance de dcat:Dataset incluye muchos otros tipos del vocabulario dctype."
}, {
"@language" : "it",
"@value" : "2018-02 - sottoclasse di dctype:Dataset rimosso perché l'ambito di dcat:Dataset include diversi altri tipi dal vocabolario dctype."
} ],
"skos:definition" : [ {
"@language" : "fr",
"@value" : "Une collection de données, publiée ou élaborée par une seule source, et disponible pour accès ou téléchargement dans un ou plusieurs formats."
}, {
"@language" : "ar",
"@value" : "قائمة بيانات منشورة أو مجموعة من قبل مصدر ما و متاح الوصول إليها أو تحميلها"
}, {
"@language" : "es",
"@value" : "Una colección de datos, publicados o conservados por una única fuente, y disponibles para ser accedidos o descargados en uno o más formatos."
}, {
"@language" : "it",
"@value" : "Raccolta di dati, pubblicati o curati da un'unica fonte, disponibili per l'accesso o il download in uno o più formati."
}, {
"@language" : "cs",
"@value" : "Kolekce dat poskytovaná či řízená jedním zdrojem, která je k dispozici pro přístup či stažení v jednom či více formátech."
}, {
"@language" : "da",
"@value" : "En samling a data, udgivet eller udvalgt og arrangeret af en enkelt kilde og som der er adgang til i en eller flere repræsentationer."
}, {
"@language" : "ja",
"@value" : "1つのエージェントによって公開またはキュレートされ、1つ以上の形式でアクセスまたはダウンロードできるデータの集合。"
}, {
"@language" : "el",
"@value" : "Μία συλλογή από δεδομένα, δημοσιευμένη ή επιμελημένη από μία και μόνο πηγή, διαθέσιμη δε προς πρόσβαση ή μεταφόρτωση σε μία ή περισσότερες μορφές."
}, {
"@language" : "en",
"@value" : "A collection of data, published or curated by a single source, and available for access or download in one or more represenations."
} ],
"skos:editorialNote" : {
"@language" : "en",
"@value" : "2020-03-16 A new scopenote added and need to be translated"
},
"skos:scopeNote" : [ {
"@language" : "it",
"@value" : "Questa classe rappresenta il dataset come pubblicato dall’editore. Nel caso in cui sia necessario operare una distinzione fra i metadati originali del dataset e il record dei metadati ad esso associato nel catalogo (ad esempio, per distinguere la data di modifica del dataset da quella del dataset nel catalogo) si può impiegare la classe catalog record."
}, {
"@language" : "fr",
"@value" : "Cette classe représente le jeu de données publié par le fournisseur de données. Dans les cas où une distinction est nécessaire entre le jeu de donénes et son entrée dans le catalogue, la classe registre de données peut être utilisée pour ce dernier."
}, {
"@language" : "es",
"@value" : "Esta clase representa el conjunto de datos publicados. En los casos donde es necesario distinguir entre el conjunto de datos y su entrada en el catálogo de datos, se debe utilizar la clase 'registro del catálogo'."
}, {
"@language" : "el",
"@value" : "Η κλάση αυτή αναπαριστά το σύνολο δεδομένων αυτό καθ'εαυτό, όπως έχει δημοσιευθεί από τον εκδότη. Σε περιπτώσεις όπου είναι απαραίτητος ο διαχωρισμός μεταξύ του συνόλου δεδομένων και της καταγραφής αυτού στον κατάλογο (γιατί μεταδεδομένα όπως η ημερομηνία αλλαγής και ο συντηρητής μπορεί να διαφέρουν) η κλάση της καταγραφής καταλόγου μπορεί να χρησιμοποιηθεί για το τελευταίο."
}, {
"@language" : "en",
"@value" : "This class represents the actual dataset as published by the dataset provider. In cases where a distinction between the actual dataset and its entry in the catalog is necessary (because metadata such as modification date and maintainer might differ), the catalog record class can be used for the latter."
}, {
"@language" : "cs",
"@value" : "Tato třída reprezentuje datovou sadu tak, jak je publikována poskytovatelem dat. V případě potřeby rozlišení datové sady a jejího katalogizačního záznamu (jelikož metadata jako datum modifikace se mohou lišit) pro něj může být použita třída \"katalogizační záznam\"."
}, {
"@language" : "it",
"@value" : "Questa classe descrive il dataset dal punto di vista concettuale. Possono essere disponibili una o più rappresentazioni, con diversi layout e formati schematici o serializzazioni."
}, {
"@language" : "en",
"@value" : "This class describes the conceptual dataset. One or more representations might be available, with differing schematic layouts and formats or serializations."
}, {
"@language" : "ja",
"@value" : "このクラスは、データセットの公開者が公開する実際のデータセットを表わします。カタログ内の実際のデータセットとそのエントリーとの区別が必要な場合(修正日と維持者などのメタデータが異なるかもしれないので)は、後者にcatalog recordというクラスを使用できます。"
}, {
"@language" : "en",
"@value" : "The notion of dataset in DCAT is broad and inclusive, with the intention of accommodating resource types arising from all communities. Data comes in many forms including numbers, text, pixels, imagery, sound and other multi-media, and potentially other types, any of which might be collected into a dataset."
}, {
"@language" : "da",
"@value" : "Denne klasse beskriver det konceptuelle datasæt. En eller flere repræsentationer kan være tilgængelige med forskellige skematiske opsætninger, formater eller serialiseringer."
}, {
"@language" : "da",
"@value" : "Denne klasse repræsenterer det konkrete datasæt som det udgives af datasætleverandøren. I de tilfælde hvor det er nødvendigt at skelne mellem det konkrete datasæt og dets registrering i kataloget (fordi metadata såsom ændringsdato og vedligeholder er forskellige), så kan klassen katalogpost anvendes. "
} ]
}, {
"@id" : "dcat:Distribution",
"@type" : [ "owl:Class", "rdfs:Class" ],
"rdfs:comment" : [ {
"@language" : "da",
"@value" : "En specifik repræsentation af et datasæt. Et datasæt kan være tilgængelig i mange serialiseringer der kan variere på forskellige vis, herunder sprog, medietype eller format, systemorganisering, tidslig- og geografisk opløsning, detaljeringsniveau eller profiler (der kan specificere en eller flere af ovenstående)."
}, {
"@language" : "fr",
"@value" : "Représente une forme spécifique d'un jeu de données. Caque jeu de données peut être disponible sous différentes formes, celles-ci pouvant représenter différents formats du jeu de données ou différents endpoint. Des exemples de distribution sont des fichirs CSV, des API ou des flux RSS."
}, {
"@language" : "el",
"@value" : "Αναπαριστά μία συγκεκριμένη διαθέσιμη μορφή ενός συνόλου δεδομένων. Κάθε σύνολο δεδομενων μπορεί να είναι διαθέσιμο σε διαφορετικές μορφές, οι μορφές αυτές μπορεί να αναπαριστούν διαφορετικές μορφές αρχείων ή διαφορετικά σημεία διάθεσης. Παραδείγματα διανομών συμπεριλαμβάνουν ένα μεταφορτώσιμο αρχείο μορφής CSV, ένα API ή ένα RSS feed."
}, {
"@language" : "ar",
"@value" : "شكل محدد لقائمة البيانات يمكن الوصول إليه. قائمة بيانات ما يمكن أن تكون متاحه باشكال و أنواع متعددة. ملف يمكن تحميله أو واجهة برمجية يمكن من خلالها الوصول إلى البيانات هي أمثلة على ذلك."
}, {
"@language" : "cs",
"@value" : "Konkrétní reprezentace datové sady. Datová sada může být dostupná v různých serializacích, které se mohou navzájem lišit různými způsoby, mimo jiné přirozeným jazykem, media-typem či formátem, schematickou organizací, časovým a prostorovým rozlišením, úrovní detailu či profily (které mohou specifikovat některé či všechny tyto rozdíly)."
}, {
"@language" : "ja",
"@value" : "データセットの特定の利用可能な形式を表わします。各データセットは、異なる形式で利用できることがあり、これらの形式は、データセットの異なる形式や、異なるエンドポイントを表わす可能性があります。配信の例には、ダウンロード可能なCSVファイル、API、RSSフィードが含まれます。"
}, {
"@language" : "it",
"@value" : "Rappresenta una forma disponibile e specifica del dataset. Ciascun dataset può essere disponibile in forme differenti, che possono rappresentare formati diversi o diversi punti di accesso per un dataset. Esempi di distribuzioni sono un file CSV scaricabile, una API o un RSS feed."
}, {
"@language" : "en",
"@value" : "A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above)."
}, {
"@language" : "es",
"@value" : "Una representación específica de los datos. Cada conjunto de datos puede estar disponible en formas diferentes, las cuáles pueden variar en distintas formas, incluyendo el idioma, 'media-type' o formato, organización esquemática, resolución temporal y espacial, nivel de detalle o perfiles (que pueden especificar cualquiera o todas las diferencias anteriores)."
} ],
"isDefinedBy" : "http://www.w3.org/TR/vocab-dcat/",
"rdfs:label" : [ {
"@language" : "ar",
"@value" : "التوزيع"
}, {
"@language" : "el",
"@value" : "Διανομή"
}, {
"@language" : "cs",
"@value" : "Distribuce"
}, {
"@language" : "it",
"@value" : "Distribuzione"
}, {
"@language" : "ja",
"@value" : "配信"
}, {
"@language" : "en",
"@value" : "Distribution"
}, {
"@language" : "fr",
"@value" : "Distribution"
}, {
"@language" : "da",
"@value" : "Distribution"
}, {
"@language" : "es",
"@value" : "Distribución"
} ],
"skos:altLabel" : [ {
"@language" : "da",
"@value" : "Datamanifestation"
}, {
"@language" : "da",
"@value" : "Datarepræsentation"
}, {
"@language" : "da",
"@value" : "Dataudstilling"
}, {
"@language" : "da",
"@value" : "Datadistribution"
} ],
"skos:definition" : [ {
"@language" : "cs",
"@value" : "Konkrétní reprezentace datové sady. Datová sada může být dostupná v různých serializacích, které se mohou navzájem lišit různými způsoby, mimo jiné přirozeným jazykem, media-typem či formátem, schematickou organizací, časovým a prostorovým rozlišením, úrovní detailu či profily (které mohou specifikovat některé či všechny tyto rozdíly)."
}, {
"@language" : "it",
"@value" : "Rappresenta una forma disponibile e specifica del dataset. Ciascun dataset può essere disponibile in forme differenti, che possono rappresentare formati diversi o diversi punti di accesso per un dataset. Esempi di distribuzioni sono un file CSV scaricabile, una API o un RSS feed."
}, {
"@language" : "es",
"@value" : "Una representación específica de los datos. Cada conjunto de datos puede estar disponible en formas diferentes, las cuáles pueden variar en distintas formas, incluyendo el idioma, 'media-type' o formato, organización esquemática, resolución temporal y espacial, nivel de detalle o perfiles (que pueden especificar cualquiera o todas las diferencias anteriores)."
}, {
"@language" : "fr",
"@value" : "Représente une forme spécifique d'un jeu de données. Caque jeu de données peut être disponible sous différentes formes, celles-ci pouvant représenter différents formats du jeu de données ou différents endpoint. Des exemples de distribution sont des fichirs CSV, des API ou des flux RSS."
}, {
"@language" : "en",
"@value" : "A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above)."
}, {
"@language" : "el",
"@value" : "Αναπαριστά μία συγκεκριμένη διαθέσιμη μορφή ενός συνόλου δεδομένων. Κάθε σύνολο δεδομενων μπορεί να είναι διαθέσιμο σε διαφορετικές μορφές, οι μορφές αυτές μπορεί να αναπαριστούν διαφορετικές μορφές αρχείων ή διαφορετικά σημεία διάθεσης. Παραδείγματα διανομών συμπεριλαμβάνουν ένα μεταφορτώσιμο αρχείο μορφής CSV, ένα API ή ένα RSS feed."
}, {
"@language" : "ja",
"@value" : "データセットの特定の利用可能な形式を表わします。各データセットは、異なる形式で利用できることがあり、これらの形式は、データセットの異なる形式や、異なるエンドポイントを表わす可能性があります。配信の例には、ダウンロード可能なCSVファイル、API、RSSフィードが含まれます。"
}, {
"@language" : "ar",
"@value" : "شكل محدد لقائمة البيانات يمكن الوصول إليه. قائمة بيانات ما يمكن أن تكون متاحه باشكال و أنواع متعددة. ملف يمكن تحميله أو واجهة برمجية يمكن من خلالها الوصول إلى البيانات هي أمثلة على ذلك."
}, {
"@language" : "da",
"@value" : "En specifik repræsentation af et datasæt. Et datasæt kan være tilgængelig i mange serialiseringer der kan variere på forskellige vis, herunder sprog, medietype eller format, systemorganisering, tidslig- og geografisk opløsning, detaljeringsniveau eller profiler (der kan specificere en eller flere af ovenstående)."
} ],
"skos:scopeNote" : [ {
"@language" : "es",
"@value" : "Esta clase representa una disponibilidad general de un conjunto de datos, e implica que no existe información acerca del método de acceso real a los datos, i.e., si es un enlace de descarga directa o a través de una página Web."
}, {
"@language" : "ja",
"@value" : "これは、データセットの一般的な利用可能性を表わし、データの実際のアクセス方式に関する情報(つまり、直接ダウンロードなのか、APIなのか、ウェブページを介したものなのか)を意味しません。dcat:downloadURLプロパティーの使用は、直接ダウンロード可能な配信を意味します。"
}, {
"@language" : "fr",
"@value" : "Ceci représente une disponibilité générale du jeu de données, et implique qu'il n'existe pas d'information sur la méthode d'accès réelle des données, par exple, si c'est un lien de téléchargement direct ou à travers une page Web."
}, {
"@language" : "da",
"@value" : "Denne klasse repræsenterer datasættets overordnede tilgængelighed og giver ikke oplysninger om hvilken metode der kan anvendes til at få adgang til data, dvs. om adgang til datasættet realiseres ved direkte download, API eller via et websted. Anvendelsen af egenskaben dcat:downloadURL indikerer at distributionen kan downloades direkte."
}, {
"@language" : "el",
"@value" : "Αυτό αναπαριστά μία γενική διαθεσιμότητα ενός συνόλου δεδομένων και δεν υπονοεί τίποτα περί του πραγματικού τρόπου πρόσβασης στα δεδομένα, αν είναι άμεσα μεταφορτώσιμα, μέσω API ή μέσω μίας ιστοσελίδας. Η χρήση της ιδιότητας dcat:downloadURL δείχνει μόνο άμεσα μεταφορτώσιμες διανομές."
}, {
"@language" : "en",
"@value" : "This represents a general availability of a dataset it implies no information about the actual access method of the data, i.e. whether by direct download, API, or through a Web page. The use of dcat:downloadURL property indicates directly downloadable distributions."
}, {
"@language" : "cs",
"@value" : "Toto popisuje obecnou dostupnost datové sady. Neimplikuje žádnou informaci o skutečné metodě přístupu k datům, tj. zda jsou přímo ke stažení, skrze API či přes webovou stránku. Použití vlastnosti dcat:downloadURL indikuje přímo stažitelné distribuce."
}, {
"@language" : "it",
"@value" : "Questa classe rappresenta una disponibilità generale di un dataset e non implica alcuna informazione sul metodo di accesso effettivo ai dati, ad esempio se si tratta di un accesso a download diretto, API, o attraverso una pagina Web. L'utilizzo della proprietà dcat:downloadURL indica distribuzioni direttamente scaricabili."
} ]
}, {
"@id" : "dcat:Relationship",
"@type" : "owl:Class",
"rdfs:comment" : [ {
"@language" : "es",
"@value" : "Una clase de asociación para adjuntar información adicional a una relación entre recursos DCAT."
}, {
"@language" : "cs",
"@value" : "Asociační třída pro připojení dodatečných informací ke vztahu mezi zdroji DCAT."
}, {
"@language" : "en",
"@value" : "An association class for attaching additional information to a relationship between DCAT Resources."
}, {
"@language" : "da",
"@value" : "En associationsklasse til brug for tilknytning af yderligere information til en relation mellem DCAT-ressourcer."
}, {
"@language" : "it",
"@value" : "Una classe di associazione per il collegamento di informazioni aggiuntive a una relazione tra le risorse DCAT."
} ],
"rdfs:label" : [ {
"@language" : "it",
"@value" : "Relazione"
}, {
"@language" : "da",
"@value" : "Relation"
}, {
"@language" : "cs",
"@value" : "Vztah"
}, {
"@language" : "es",
"@value" : "Relación"
}, {
"@language" : "en",
"@value" : "Relationship"
} ],
"skos:changeNote" : [ {
"@language" : "it",
"@value" : "Nuova classe aggiunta in DCAT 2.0."
}, {
"@language" : "es",
"@value" : "Nueva clase añadida en DCAT 2.0."
}, {
"@language" : "cs",
"@value" : "Nová třída přidaná ve verzi DCAT 2.0."
}, {
"@language" : "en",
"@value" : "New class added in DCAT 2.0."
}, {
"@language" : "da",
"@value" : "Ny klasse i DCAT 2.0."
} ],
"skos:definition" : [ {
"@language" : "en",
"@value" : "An association class for attaching additional information to a relationship between DCAT Resources."
}, {
"@language" : "it",
"@value" : "Una classe di associazione per il collegamento di informazioni aggiuntive a una relazione tra le risorse DCAT."
}, {
"@language" : "da",
"@value" : "En associationsklasse til brug for tilknytning af yderligere information til en relation mellem DCAT-ressourcer."
}, {
"@language" : "cs",
"@value" : "Asociační třída pro připojení dodatečných informací ke vztahu mezi zdroji DCAT."
}, {
"@language" : "es",
"@value" : "Una clase de asociación para adjuntar información adicional a una relación entre recursos DCAT."
} ],
"skos:scopeNote" : [ {
"@language" : "es",
"@value" : "Se usa para caracterizar la relación entre conjuntos de datos, y potencialmente otros recursos, donde la naturaleza de la relación se conoce pero no está caracterizada adecuadamente con propiedades del estándar 'Dublin Core' (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf)."
}, {
"@language" : "en",
"@value" : "Use to characterize a relationship between datasets, and potentially other resources, where the nature of the relationship is known but is not adequately characterized by the standard Dublin Core properties (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf)."
}, {
"@language" : "da",
"@value" : "Anvendes til at karakterisere en relation mellem datasæt, og potentielt andre ressourcer, hvor relationen er kendt men ikke tilstrækkeligt beskrevet af de standardiserede egenskaber i Dublin Core (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) eller PROV-O-egenskaber (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf)."
}, {
"@language" : "cs",
"@value" : "Používá se pro charakterizaci vztahu mezi datovými sadami a případně i jinými zdroji, kde druh vztahu je sice znám, ale není přiměřeně charakterizován standardními vlastnostmi slovníku Dublin Core (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) či vlastnostmi slovníku PROV-O (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf)."
}, {
"@language" : "it",
"@value" : "Viene utilizzato per caratterizzare la relazione tra insiemi di dati, e potenzialmente altri tipi di risorse, nei casi in cui la natura della relazione è nota ma non adeguatamente caratterizzata dalle proprietà dello standard 'Dublin Core' (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:require, dct:isRequiredBy) o dalle propietà fornite da PROV-O (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov: hadPrimarySource, prov:alternateOf, prov:specializationOf)."
} ]
}, {
"@id" : "dcat:Resource",
"@type" : "owl:Class",
"rdfs:comment" : [ {
"@language" : "da",
"@value" : "Ressource udgivet eller udvalgt og arrangeret af en enkelt aktør."
}, {
"@language" : "es",
"@value" : "Recurso publicado o curado por un agente único."
}, {
"@language" : "it",
"@value" : "Risorsa pubblicata o curata da un singolo agente."
}, {
"@language" : "cs",
"@value" : "Zdroj publikovaný či řízený jediným činitelem."
}, {
"@language" : "en",
"@value" : "Resource published or curated by a single agent."
} ],
"rdfs:label" : [ {
"@language" : "cs",
"@value" : "Katalogizovaný zdroj"
}, {
"@language" : "es",
"@value" : "Recurso catalogado"
}, {
"@language" : "it",
"@value" : "Risorsa catalogata"
}, {
"@language" : "da",
"@value" : "Katalogiseret ressource"
}, {
"@language" : "en",
"@value" : "Catalogued resource"
} ],
"skos:changeNote" : [ {
"@language" : "en",
"@value" : "New class added in DCAT 2.0."
}, {
"@language" : "it",
"@value" : "Nuova classe aggiunta in DCAT 2.0."
}, {
"@language" : "da",
"@value" : "Ny klasse i DCAT 2.0."
}, {
"@language" : "cs",
"@value" : "Nová třída přidaná ve verzi DCAT 2.0."
}, {
"@language" : "es",
"@value" : "Nueva clase agregada en DCAT 2.0."
} ],
"skos:definition" : [ {
"@language" : "en",
"@value" : "Resource published or curated by a single agent."
}, {
"@language" : "it",
"@value" : "Risorsa pubblicata o curata da un singolo agente."
}, {
"@language" : "da",
"@value" : "Ressource udgivet eller udvalgt og arrangeret af en enkelt aktør."
}, {
"@language" : "es",
"@value" : "Recurso publicado o curado por un agente único."
}, {
"@language" : "cs",
"@value" : "Zdroj publikovaný či řízený jediným činitelem."
} ],
"skos:scopeNote" : [ {
"@language" : "es",
"@value" : "dcat:Resource es un punto de extensión que permite la definición de cualquier tipo de catálogo. Se pueden definir subclases adicionales en perfil de DCAT o una aplicación para catálogos de otro tipo de recursos."
}, {
"@language" : "cs",
"@value" : "dcat:Resource je bod pro rozšíření umožňující definici různých druhů katalogů. Další podtřídy lze definovat v profilech DCAT či aplikacích pro katalogy zdrojů jiných druhů."
}, {
"@language" : "da",
"@value" : "Klassen for alle katalogiserede ressourcer, den overordnede klasse for dcat:Dataset, dcat:DataService, dcat:Catalog og enhvert medlem af et dcat:Catalog. Denne klasse bærer egenskaber der gælder alle katalogiserede ressourcer, herunder dataset og datatjenester. Det anbefales kraftigt at mere specifikke subklasser oprettes. Når der beskrives ressourcer der ikke er dcat:Dataset eller dcat:DataService, anbefales det at oprette passende subklasser af dcat:Resource eller at dcat:Resource anvendes sammen med egenskaben dct:type til opmærkning med en specifik typeangivelse."
}, {
"@language" : "cs",
"@value" : "Třída všech katalogizovaných zdrojů, nadtřída dcat:Dataset, dcat:DataService, dcat:Catalog a všech ostatních členů dcat:Catalog. Tato třída nese vlastnosti společné všem katalogizovaným zdrojům včetně datových sad a datových služeb. Je silně doporučeno používat specifičtější podtřídy, pokud je to možné. Při popisu zdroje, který není ani dcat:Dataset, ani dcat:DataService se doporučuje vytvořit odpovídající podtřídu dcat:Resrouce a nebo použít dcat:Resource s vlastností dct:type pro určení konkrétního typu."
}, {
"@language" : "it",
"@value" : "dcat:Resource è un punto di estensione che consente la definizione di qualsiasi tipo di catalogo. Sottoclassi aggiuntive possono essere definite in un profilo DCAT o in un'applicazione per cataloghi di altri tipi di risorse."
}, {
"@language" : "it",
"@value" : "La classe di tutte le risorse catalogate, la Superclasse di dcat:Dataset, dcat:DataService, dcat:Catalog e qualsiasi altro membro di dcat:Catalog. Questa classe porta proprietà comuni a tutte le risorse catalogate, inclusi set di dati e servizi dati. Si raccomanda vivamente di utilizzare una sottoclasse più specifica. Quando si descrive una risorsa che non è un dcat:Dataset o dcat:DataService, si raccomanda di creare una sottoclasse di dcat:Resource appropriata, o utilizzare dcat:Resource con la proprietà dct:type per indicare il tipo specifico."
}, {
"@language" : "en",
"@value" : "The class of all catalogued resources, the Superclass of dcat:Dataset, dcat:DataService, dcat:Catalog and any other member of a dcat:Catalog. This class carries properties common to all catalogued resources, including datasets and data services. It is strongly recommended to use a more specific sub-class. When describing a resource which is not a dcat:Dataset or dcat:DataService, it is recommended to create a suitable sub-class of dcat:Resource, or use dcat:Resource with the dct:type property to indicate the specific type."
}, {
"@language" : "es",
"@value" : "La clase de todos los recursos catalogados, la superclase de dcat:Dataset, dcat:DataService, dcat:Catalog y cualquier otro miembro de un dcat:Catalog. Esta clase tiene propiedades comunes a todos los recursos catalogados, incluyendo conjuntos de datos y servicios de datos. Se recomienda fuertemente que se use una clase más específica. Cuando se describe un recurso que no es un dcat:Dataset o dcat:DataService, se recomienda crear una sub-clase apropiada de dcat:Resource, o usar dcat:Resource con la propiedad dct:type to indicar el tipo específico."
}, {
"@language" : "da",
"@value" : "dcat:Resource er et udvidelsespunkt der tillader oprettelsen af enhver type af kataloger. Yderligere subklasser kan defineres i en DCAT-profil eller i en applikation til kataloger med andre typer af ressourcer."
}, {
"@language" : "en",
"@value" : "dcat:Resource is an extension point that enables the definition of any kind of catalog. Additional subclasses may be defined in a DCAT profile or application for catalogs of other kinds of resources."
} ]
}, {
"@id" : "dcat:Role",
"@type" : "owl:Class",
"rdfs:comment" : [ {
"@language" : "cs",
"@value" : "Role je funkce zdroje či agenta ve vztahu k jinému zdroji, v kontextu přiřazení zdrojů či vztahů mezi zdroji."
}, {
"@language" : "es",
"@value" : "Un rol es la función de un recurso o agente con respecto a otro recuros, en el contexto de atribución del recurso o de las relaciones entre recursos."
}, {
"@language" : "en",