rdf-vocab 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/VERSION +1 -1
  4. data/lib/rdf/vocab/acl.rb +91 -89
  5. data/lib/rdf/vocab/as.rb +624 -622
  6. data/lib/rdf/vocab/bf2.rb +2241 -2239
  7. data/lib/rdf/vocab/bibframe.rb +2241 -2239
  8. data/lib/rdf/vocab/bibo.rb +943 -941
  9. data/lib/rdf/vocab/cc.rb +102 -100
  10. data/lib/rdf/vocab/cert.rb +107 -105
  11. data/lib/rdf/vocab/cnt.rb +92 -90
  12. data/lib/rdf/vocab/crm.rb +1793 -1791
  13. data/lib/rdf/vocab/datacite.rb +261 -263
  14. data/lib/rdf/vocab/dbo.rb +4307 -4305
  15. data/lib/rdf/vocab/dc.rb +665 -663
  16. data/lib/rdf/vocab/dc11.rb +109 -107
  17. data/lib/rdf/vocab/dcat.rb +373 -356
  18. data/lib/rdf/vocab/dcmitype.rb +91 -89
  19. data/lib/rdf/vocab/disco.rb +348 -346
  20. data/lib/rdf/vocab/doap.rb +304 -302
  21. data/lib/rdf/vocab/dwc.rb +2244 -2242
  22. data/lib/rdf/vocab/earl.rb +146 -144
  23. data/lib/rdf/vocab/ebucore.rb +4945 -4941
  24. data/lib/rdf/vocab/edm.rb +310 -308
  25. data/lib/rdf/vocab/exif.rb +777 -775
  26. data/lib/rdf/vocab/extensions.rb +2 -2
  27. data/lib/rdf/vocab/fcrepo4.rb +307 -305
  28. data/lib/rdf/vocab/foaf.rb +525 -523
  29. data/lib/rdf/vocab/geo.rb +34 -32
  30. data/lib/rdf/vocab/geojson.rb +66 -64
  31. data/lib/rdf/vocab/geonames.rb +3656 -3654
  32. data/lib/rdf/vocab/gr.rb +1204 -1202
  33. data/lib/rdf/vocab/gs1.rb +5881 -5879
  34. data/lib/rdf/vocab/ht.rb +194 -192
  35. data/lib/rdf/vocab/hydra.rb +439 -437
  36. data/lib/rdf/vocab/iana.rb +215 -213
  37. data/lib/rdf/vocab/ical.rb +726 -724
  38. data/lib/rdf/vocab/identifiers.rb +219 -217
  39. data/lib/rdf/vocab/iiif.rb +132 -130
  40. data/lib/rdf/vocab/jsonld.rb +205 -203
  41. data/lib/rdf/vocab/ldp.rb +193 -191
  42. data/lib/rdf/vocab/lrmi.rb +188 -186
  43. data/lib/rdf/vocab/ma.rb +318 -316
  44. data/lib/rdf/vocab/mads.rb +670 -668
  45. data/lib/rdf/vocab/marcrelators.rb +543 -541
  46. data/lib/rdf/vocab/mo.rb +1823 -1821
  47. data/lib/rdf/vocab/mods.rb +636 -634
  48. data/lib/rdf/vocab/nfo.rb +482 -480
  49. data/lib/rdf/vocab/oa.rb +333 -331
  50. data/lib/rdf/vocab/og.rb +198 -196
  51. data/lib/rdf/vocab/ogc.rb +43 -41
  52. data/lib/rdf/vocab/ore.rb +79 -77
  53. data/lib/rdf/vocab/org.rb +322 -320
  54. data/lib/rdf/vocab/pcdm.rb +73 -71
  55. data/lib/rdf/vocab/pplan.rb +97 -95
  56. data/lib/rdf/vocab/premis.rb +903 -901
  57. data/lib/rdf/vocab/premiseventtype.rb +143 -141
  58. data/lib/rdf/vocab/prov.rb +1360 -1358
  59. data/lib/rdf/vocab/ptr.rb +147 -145
  60. data/lib/rdf/vocab/rdau.rb +9447 -9438
  61. data/lib/rdf/vocab/rightsstatements.rb +123 -121
  62. data/lib/rdf/vocab/rsa.rb +44 -42
  63. data/lib/rdf/vocab/rss.rb +46 -44
  64. data/lib/rdf/vocab/schema.rb +14700 -14698
  65. data/lib/rdf/vocab/schemas.rb +14700 -14698
  66. data/lib/rdf/vocab/sd.rb +165 -163
  67. data/lib/rdf/vocab/sh.rb +1096 -1094
  68. data/lib/rdf/vocab/sioc.rb +615 -613
  69. data/lib/rdf/vocab/siocservices.rb +49 -47
  70. data/lib/rdf/vocab/sioctypes.rb +224 -222
  71. data/lib/rdf/vocab/skos.rb +202 -200
  72. data/lib/rdf/vocab/skosxl.rb +51 -49
  73. data/lib/rdf/vocab/v.rb +233 -231
  74. data/lib/rdf/vocab/vcard.rb +776 -774
  75. data/lib/rdf/vocab/vmd.rb +233 -231
  76. data/lib/rdf/vocab/void.rb +145 -143
  77. data/lib/rdf/vocab/vs.rb +27 -25
  78. data/lib/rdf/vocab/wdrs.rb +112 -110
  79. data/lib/rdf/vocab/wot.rb +135 -133
  80. data/lib/rdf/vocab/xhtml.rb +4 -2
  81. data/lib/rdf/vocab/xhv.rb +208 -206
  82. data/lib/rdf/vocab/xkos.rb +220 -218
  83. data/lib/rdf/vocab.rb +2 -0
  84. metadata +14 -3
@@ -3,437 +3,454 @@
3
3
  # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/dcat#
4
4
  require 'rdf'
5
5
  module RDF::Vocab
6
+ # Vocabulary for <http://www.w3.org/ns/dcat#>
7
+ # @!visibility private
6
8
  DCAT = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/dcat#")) do
7
9
 
8
10
  # Ontology definition
9
11
  ontology :"http://www.w3.org/ns/dcat#",
10
- comment: "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.".freeze,
11
- editorialNote: "English language definitions updated in this revision in line with ED. Multilingual text unevenly updated.".freeze,
12
+ comment: {en: "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.", ar: "هي أنطولوجية تسهل تبادل البيانات بين مختلف الفهارس على الوب. استخدام هذه الأنطولوجية يساعد على اكتشاف قوائم البيانات المنشورة على الوب و يمكن التطبيقات المختلفة من الاستفادة أتوماتيكيا من البيانات المتاحة من مختلف الفهارس.", cs: "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.", da: "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.", el: "Το DCAT είναι ένα RDF λεξιλόγιο που σχεδιάσθηκε για να κάνει εφικτή τη διαλειτουργικότητα μεταξύ καταλόγων δεδομένων στον Παγκόσμιο Ιστό. Χρησιμοποιώντας το DCAT για την περιγραφή συνόλων δεδομένων, οι εκδότες αυτών αυξάνουν την ανακαλυψιμότητα και επιτρέπουν στις εφαρμογές την εύκολη κατανάλωση μεταδεδομένων από πολλαπλούς καταλόγους. Επιπλέον, δίνει τη δυνατότητα για αποκεντρωμένη έκδοση και διάθεση καταλόγων και επιτρέπει δυνατότητες ενοποιημένης αναζήτησης μεταξύ διαφορετικών πηγών. Συγκεντρωτικά μεταδεδομένα που έχουν περιγραφεί με το DCAT μπορούν να χρησιμοποιηθούν σαν ένα δηλωτικό αρχείο (manifest file) ώστε να διευκολύνουν την ψηφιακή συντήρηση.", es: "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.", fr: "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.", it: "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.", ja: "DCATは、ウェブ上で公開されたデータ・カタログ間の相互運用性の促進を目的とするRDFの語彙です。このドキュメントでは、その利用のために、スキーマを定義し、例を提供します。データ・カタログ内のデータセットを記述するためにDCATを用いると、公開者が、発見可能性を増加させ、アプリケーションが複数のカタログのメタデータを容易に利用できるようになります。さらに、カタログの分散公開を可能にし、複数のサイトにまたがるデータセットの統合検索を促進します。集約されたDCATメタデータは、ディジタル保存を促進するためのマニフェスト・ファイルとして使用できます。"},
13
+ editorialNote: {en: "English language definitions updated in this revision in line with ED. Multilingual text unevenly updated."},
12
14
  "http://purl.org/dc/terms/contributor": [term(
13
- "http://schema.org/affiliation": "http://www.w3.org/data#W3C".freeze,
14
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://philarcher.org/foaf.rdf#me".freeze,
15
- "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/People/all#phila".freeze,
16
- "http://xmlns.com/foaf/0.1/name": "Phil Archer".freeze
15
+ "http://schema.org/affiliation": "http://www.w3.org/data#W3C",
16
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://philarcher.org/foaf.rdf#me",
17
+ "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/People/all#phila",
18
+ "http://xmlns.com/foaf/0.1/name": "Phil Archer"
17
19
  ), term(
18
20
  "http://schema.org/affiliation": term(
19
- "http://xmlns.com/foaf/0.1/homepage": "http://ec.europa.eu/dgs/informatics/".freeze,
20
- "http://xmlns.com/foaf/0.1/name": "European Commission, DG DIGIT".freeze
21
- ).freeze,
22
- "http://xmlns.com/foaf/0.1/name": "Vassilios Peristeras".freeze
21
+ "http://xmlns.com/foaf/0.1/homepage": "http://ec.europa.eu/dgs/informatics/",
22
+ "http://xmlns.com/foaf/0.1/name": "European Commission, DG DIGIT"
23
+ ),
24
+ "http://xmlns.com/foaf/0.1/name": "Vassilios Peristeras"
23
25
  ), term(
24
26
  "http://schema.org/affiliation": term(
25
- "http://xmlns.com/foaf/0.1/homepage": "http://okfn.org".freeze,
26
- "http://xmlns.com/foaf/0.1/name": "Open Knowledge Foundation".freeze
27
- ).freeze,
28
- "http://xmlns.com/foaf/0.1/name": "Rufus Pollock".freeze
27
+ "http://xmlns.com/foaf/0.1/homepage": "http://okfn.org",
28
+ "http://xmlns.com/foaf/0.1/name": "Open Knowledge Foundation"
29
+ ),
30
+ "http://xmlns.com/foaf/0.1/name": "Rufus Pollock"
29
31
  ), term(
30
32
  "http://schema.org/affiliation": term(
31
- "http://xmlns.com/foaf/0.1/homepage": "http://stfc.ac.uk".freeze,
32
- "http://xmlns.com/foaf/0.1/name": "Science and Technology Facilities Council, UK".freeze
33
- ).freeze,
34
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0003-3499-8262".freeze,
35
- "http://xmlns.com/foaf/0.1/homepage": "https://agbeltran.github.io".freeze,
36
- "http://xmlns.com/foaf/0.1/name": "Alejandra Gonzalez-Beltran".freeze
33
+ "http://xmlns.com/foaf/0.1/homepage": "http://stfc.ac.uk",
34
+ "http://xmlns.com/foaf/0.1/name": "Science and Technology Facilities Council, UK"
35
+ ),
36
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0003-3499-8262",
37
+ "http://xmlns.com/foaf/0.1/homepage": "https://agbeltran.github.io",
38
+ "http://xmlns.com/foaf/0.1/name": "Alejandra Gonzalez-Beltran"
37
39
  ), term(
38
40
  "http://schema.org/affiliation": term(
39
- "http://xmlns.com/foaf/0.1/homepage": "http://www.refinitiv.com".freeze,
40
- "http://xmlns.com/foaf/0.1/name": "Refinitiv".freeze
41
- ).freeze,
42
- "http://xmlns.com/foaf/0.1/name": "David Browning".freeze
41
+ "http://xmlns.com/foaf/0.1/homepage": "http://www.refinitiv.com",
42
+ "http://xmlns.com/foaf/0.1/name": "Refinitiv"
43
+ ),
44
+ "http://xmlns.com/foaf/0.1/name": "David Browning"
43
45
  ), term(
44
46
  "http://schema.org/affiliation": term(
45
- "http://xmlns.com/foaf/0.1/homepage": "https://csiro.au".freeze,
46
- "http://xmlns.com/foaf/0.1/name": "Commonwealth Scientific and Industrial Research Organisation".freeze
47
- ).freeze,
48
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0002-3884-3420".freeze,
49
- "http://xmlns.com/foaf/0.1/name": "Simon J D Cox".freeze,
50
- "http://xmlns.com/foaf/0.1/workInfoHomepage": "http://people.csiro.au/Simon-Cox".freeze,
51
- type: "http://xmlns.com/foaf/0.1/Person".freeze
47
+ "http://xmlns.com/foaf/0.1/homepage": "https://csiro.au",
48
+ "http://xmlns.com/foaf/0.1/name": "Commonwealth Scientific and Industrial Research Organisation"
49
+ ),
50
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0002-3884-3420",
51
+ "http://xmlns.com/foaf/0.1/name": "Simon J D Cox",
52
+ "http://xmlns.com/foaf/0.1/workInfoHomepage": "http://people.csiro.au/Simon-Cox",
53
+ type: "http://xmlns.com/foaf/0.1/Person"
52
54
  ), term(
53
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://makxdekkers.com/makxdekkers.rdf#me".freeze,
54
- "http://xmlns.com/foaf/0.1/homepage": "http://makxdekkers.com/".freeze,
55
- "http://xmlns.com/foaf/0.1/name": "Makx Dekkers".freeze
55
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://makxdekkers.com/makxdekkers.rdf#me",
56
+ "http://xmlns.com/foaf/0.1/homepage": "http://makxdekkers.com/",
57
+ "http://xmlns.com/foaf/0.1/name": "Makx Dekkers"
56
58
  ), term(
57
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.eurecom.fr/~atemezin/gatemezing-foaf.rdf".freeze,
58
- "http://xmlns.com/foaf/0.1/name": "Ghislain Auguste Atemezing".freeze
59
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.eurecom.fr/~atemezin/gatemezing-foaf.rdf",
60
+ "http://xmlns.com/foaf/0.1/name": "Ghislain Auguste Atemezing"
59
61
  ), term(
60
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://jakub.klímek.com/#me".freeze,
61
- "http://xmlns.com/foaf/0.1/homepage": "https://jakub.klímek.com/".freeze,
62
- "http://xmlns.com/foaf/0.1/name": "Jakub Klímek".freeze
62
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://jakub.klímek.com/#me",
63
+ "http://xmlns.com/foaf/0.1/homepage": "https://jakub.klímek.com/",
64
+ "http://xmlns.com/foaf/0.1/name": "Jakub Klímek"
63
65
  ), term(
64
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0001-5648-2713".freeze,
65
- "http://xmlns.com/foaf/0.1/homepage": ["http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze,"https://w3id.org/people/ralbertoni/".freeze],
66
- "http://xmlns.com/foaf/0.1/name": "Riccardo Albertoni".freeze
66
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0001-5648-2713",
67
+ "http://xmlns.com/foaf/0.1/homepage": ["http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni","https://w3id.org/people/ralbertoni/"],
68
+ "http://xmlns.com/foaf/0.1/name": "Riccardo Albertoni"
67
69
  ), term(
68
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0001-9300-2694".freeze,
69
- "http://xmlns.com/foaf/0.1/homepage": "http://www.andrea-perego.name/foaf/#me".freeze,
70
- "http://xmlns.com/foaf/0.1/name": "Andrea Perego".freeze
70
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0001-9300-2694",
71
+ "http://xmlns.com/foaf/0.1/homepage": "http://www.andrea-perego.name/foaf/#me",
72
+ "http://xmlns.com/foaf/0.1/name": "Andrea Perego"
71
73
  ), term(
72
- "http://xmlns.com/foaf/0.1/homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/".freeze,
73
- "http://xmlns.com/foaf/0.1/name": "Shuji Kamitsuna".freeze
74
+ "http://xmlns.com/foaf/0.1/homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/",
75
+ "http://xmlns.com/foaf/0.1/name": "Shuji Kamitsuna"
74
76
  ), term(
75
- "http://xmlns.com/foaf/0.1/name": "Boris Villazón-Terrazas".freeze
77
+ "http://xmlns.com/foaf/0.1/name": "Boris Villazón-Terrazas"
76
78
  ), term(
77
- "http://xmlns.com/foaf/0.1/name": "Marios Meimaris".freeze
79
+ "http://xmlns.com/foaf/0.1/name": "Marios Meimaris"
78
80
  ), term(
79
- "http://xmlns.com/foaf/0.1/name": "Martin Alvarez-Espinar".freeze
81
+ "http://xmlns.com/foaf/0.1/name": "Martin Alvarez-Espinar"
80
82
  ), term(
81
- "http://xmlns.com/foaf/0.1/name": "Richard Cyganiak".freeze
83
+ "http://xmlns.com/foaf/0.1/name": "Richard Cyganiak"
82
84
  )],
83
85
  "http://purl.org/dc/terms/creator": [term(
84
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://fadmaa.me/foaf.ttl".freeze,
85
- "http://xmlns.com/foaf/0.1/name": "Fadi Maali".freeze
86
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://fadmaa.me/foaf.ttl",
87
+ "http://xmlns.com/foaf/0.1/name": "Fadi Maali"
86
88
  ), term(
87
- "http://xmlns.com/foaf/0.1/name": "John Erickson".freeze
89
+ "http://xmlns.com/foaf/0.1/name": "John Erickson"
88
90
  )],
89
- "http://purl.org/dc/terms/license": "https://creativecommons.org/licenses/by/4.0/".freeze,
90
- "http://purl.org/dc/terms/modified": ["2012-04-24".freeze, "2013-09-20".freeze, "2013-11-28".freeze, "2017-12-19".freeze, "2019".freeze, "2020-11-30".freeze, "2021-09-14".freeze],
91
- "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/dc/terms/".freeze, "http://www.w3.org/2004/02/skos/core".freeze, "http://www.w3.org/ns/prov-o#".freeze],
92
- "http://www.w3.org/2002/07/owl#versionInfo": ["Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl".freeze, "This is an updated copy of v2.0 of the DCAT vocabulary, taken from https://www.w3.org/ns/dcat.ttl".freeze],
91
+ "http://purl.org/dc/terms/license": "https://creativecommons.org/licenses/by/4.0/",
92
+ "http://purl.org/dc/terms/modified": ["2012-04-24", "2013-09-20", "2013-11-28", "2017-12-19", "2019", "2020-11-30", "2021-09-14"],
93
+ "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/dc/terms/", "http://www.w3.org/2004/02/skos/core", "http://www.w3.org/ns/prov-o#"],
94
+ "http://www.w3.org/2002/07/owl#versionInfo": {en: "Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl", cs: "Toto je aktualizovaná kopie slovníku DCAT verze 2.0, převzatá z https://www.w3.org/ns/dcat.ttl", da: "Dette er en opdateret kopi af DCAT v. 2.0 som er tilgænglig på https://www.w3.org/ns/dcat.ttl", es: "Esta es una copia del vocabulario DCAT v2.0 disponible en https://www.w3.org/ns/dcat.ttl"},
93
95
  "http://xmlns.com/foaf/0.1/maker": term(
94
- "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/2011/gld/".freeze,
95
- "http://xmlns.com/foaf/0.1/name": "Government Linked Data WG".freeze
96
+ "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/2011/gld/",
97
+ "http://xmlns.com/foaf/0.1/name": "Government Linked Data WG"
96
98
  ),
97
- label: "The data catalog vocabulary".freeze,
98
- type: "http://www.w3.org/2002/07/owl#Ontology".freeze
99
+ label: {en: "The data catalog vocabulary", ar: "أنطولوجية فهارس قوائم البيانات", cs: "Slovník pro datové katalogy", da: "Datakatalogvokabular", el: "Το λεξιλόγιο των καταλόγων δεδομένων", es: "El vocabulario de catálogo de datos", fr: "Le vocabulaire des jeux de données", it: "Il vocabolario del catalogo dei dati", ja: "データ・カタログ語彙(DCAT)"},
100
+ type: "http://www.w3.org/2002/07/owl#Ontology"
99
101
 
100
102
  # Class definitions
101
103
  term :Catalog,
102
- comment: "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).".freeze,
103
- definition: "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).".freeze,
104
- editorialNote: "English, Italian, Spanish definitions updated in this revision. Multilingual text not yet updated.".freeze,
105
- "http://www.w3.org/2004/02/skos/core#scopeNote": "A web-based data catalog is typically represented as a single instance of this class.".freeze,
106
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
107
- label: "Catalog".freeze,
108
- subClassOf: "http://www.w3.org/ns/dcat#Dataset".freeze,
109
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
104
+ comment: {en: "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).", ar: "مجموعة من توصيفات قوائم البيانات", cs: "Řízená kolekce metadat o datových sadách a datových službách", da: "En udvalgt og arrangeret samling af metadata om ressourcer (fx datasæt og datatjenester i kontekst af et datakatalog). ", el: "Μια επιμελημένη συλλογή μεταδεδομένων περί συνόλων δεδομένων", es: "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).", fr: "Une collection élaborée de métadonnées sur les jeux de données", it: "Una raccolta curata di metadati sulle risorse (ad es. sui dataset e relativi servizi nel contesto di cataloghi di dati).", ja: "データ・カタログは、データセットに関するキュレートされたメタデータの集合です。"},
105
+ definition: {en: "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).", ar: "مجموعة من توصيفات قوائم البيانات", cs: "Řízená kolekce metadat o datových sadách a datových službách.", da: "En samling af metadata om ressourcer (fx datasæt og datatjenester i kontekst af et datakatalog).", el: "Μια επιμελημένη συλλογή μεταδεδομένων περί συνόλων δεδομένων.", es: "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).", fr: "Une collection élaborée de métadonnées sur les jeux de données.", it: "Una raccolta curata di metadati sulle risorse (ad es. sui dataset e relativi servizi nel contesto di cataloghi di dati).", ja: "データ・カタログは、データセットに関するキュレートされたメタデータの集合です。"},
106
+ editorialNote: {en: "English, Italian, Spanish definitions updated in this revision. Multilingual text not yet updated."},
107
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "A web-based data catalog is typically represented as a single instance of this class.", cs: "Webový datový katalog je typicky reprezentován jako jedna instance této třídy.", da: "Et webbaseret datakatalog repræsenteres typisk ved en enkelt instans af denne klasse.", el: "Συνήθως, ένας κατάλογος δεδομένων στον Παγκόσμιο Ιστό αναπαρίσταται ως ένα στιγμιότυπο αυτής της κλάσης.", es: "Normalmente, un catálogo de datos disponible en la web se representa como una única instancia de esta clase.", it: "Normalmente, un catalogo di dati nel web viene rappresentato come una singola istanza di questa classe.", ja: "通常、ウェブ・ベースのデータ・カタログは、このクラスの1つのインスタンスとして表わされます。"},
108
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
109
+ label: {en: "Catalog", ar: "فهرس قوائم البيانات", cs: "Katalog", da: "Katalog", el: "Κατάλογος", es: "Catálogo", fr: "Catalogue", it: "Catalogo", ja: "カタログ"},
110
+ subClassOf: "http://www.w3.org/ns/dcat#Dataset",
111
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
110
112
  term :CatalogRecord,
111
- comment: "A record in a data catalog, describing the registration of a single dataset or data service.".freeze,
112
- definition: "A record in a data catalog, describing the registration of a single dataset or data service.".freeze,
113
- editorialNote: "English definition updated in this revision. Multilingual text not yet updated except the Spanish one and the Czech one and Italian one.".freeze,
114
- "http://www.w3.org/2004/02/skos/core#scopeNote": "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.".freeze,
115
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
116
- label: "Catalog Record".freeze,
113
+ comment: {en: "A record in a data catalog, describing the registration of a single dataset or data service.", cs: "Záznam v datovém katalogu popisující jednu datovou sadu či datovou službu.", da: "En post i et datakatalog der beskriver registreringen af et enkelt datasæt eller en datatjeneste.", el: "Μία καταγραφή ενός καταλόγου, η οποία περιγράφει ένα συγκεκριμένο σύνολο δεδομένων.", es: "Un registro en un catálogo de datos que describe un solo conjunto de datos o un servicio de datos.", fr: "Un registre du catalogue ou une entrée du catalogue, décrivant un seul jeu de données.", it: "Un record in un catalogo di dati che descrive un singolo dataset o servizio di dati.", ja: "1つのデータセットを記述したデータ・カタログ内のレコード。"},
114
+ definition: {en: "A record in a data catalog, describing the registration of a single dataset or data service.", cs: "Záznam v datovém katalogu popisující jednu datovou sadu či datovou službu.", da: "En post i et datakatalog der beskriver registreringen af et enkelt datasæt eller en datatjeneste.", el: "Μία καταγραφή ενός καταλόγου, η οποία περιγράφει ένα συγκεκριμένο σύνολο δεδομένων.", es: "Un registro en un catálogo de datos que describe un solo conjunto de datos o un servicio de datos.", fr: "Un registre du catalogue ou une entrée du catalogue, décrivant un seul jeu de données.", it: "Un record in un catalogo di dati che descrive un singolo dataset o servizio di dati.", ja: "1つのデータセットを記述したデータ・カタログ内のレコード。"},
115
+ editorialNote: {en: "English definition updated in this revision. Multilingual text not yet updated except the Spanish one and the Czech one and Italian one."},
116
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "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.", cs: "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.", da: "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.", el: "Αυτή η κλάση είναι προαιρετική και δεν χρησιμοποιείται από όλους τους καταλόγους. Υπάρχει για τις περιπτώσεις καταλόγων όπου γίνεται διαχωρισμός μεταξύ των μεταδεδομένων για το σύνολο των δεδομένων και των μεταδεδομένων για την καταγραφή του συνόλου δεδομένων εντός του καταλόγου. Για παράδειγμα, η ιδιότητα της ημερομηνίας δημοσίευσης του συνόλου δεδομένων δείχνει την ημερομηνία κατά την οποία οι πληροφορίες έγιναν διαθέσιμες από τον φορέα δημοσίευσης, ενώ η ημερομηνία δημοσίευσης της καταγραφής του καταλόγου δείχνει την ημερομηνία που το σύνολο δεδομένων προστέθηκε στον κατάλογο. Σε περιπτώσεις που οι δύο ημερομηνίες διαφέρουν, ή που μόνο η τελευταία είναι γνωστή, η ημερομηνία δημοσίευσης θα πρέπει να δίνεται για την καταγραφή του καταλόγου. Να σημειωθεί πως η οντολογία W3C PROV επιτρέπει την περιγραφή επιπλέον πληροφοριών ιστορικού όπως λεπτομέρειες για τη διαδικασία και τον δράστη που εμπλέκονται σε μία συγκεκριμένη αλλαγή εντός του συνόλου δεδομένων.", es: "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.", fr: "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.", it: "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.", ja: "このクラスはオプションで、すべてのカタログがそれを用いるとは限りません。これは、データセットに関するメタデータとカタログ内のデータセットのエントリーに関するメタデータとで区別が行われるカタログのために存在しています。例えば、データセットの公開日プロパティーは、公開機関が情報を最初に利用可能とした日付を示しますが、カタログ・レコードの公開日は、データセットがカタログに追加された日付です。両方の日付が異っていたり、後者だけが分かっている場合は、カタログ・レコードに対してのみ公開日を指定すべきです。W3CのPROVオントロジー[prov-o]を用いれば、データセットに対する特定の変更に関連するプロセスやエージェントの詳細などの、さらに詳しい来歴情報の記述が可能となることに注意してください。"},
117
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
118
+ label: {en: "Catalog Record", ar: "سجل", cs: "Katalogizační záznam", da: "Katalogpost", el: "Καταγραφή καταλόγου", es: "Registro del catálogo", fr: "Registre du catalogue", it: "Record di catalogo", ja: "カタログ・レコード"},
117
119
  subClassOf: [term(
118
- allValuesFrom: "http://www.w3.org/ns/dcat#Resource".freeze,
119
- onProperty: "http://xmlns.com/foaf/0.1/primaryTopic".freeze,
120
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
120
+ allValuesFrom: "http://www.w3.org/ns/dcat#Resource",
121
+ onProperty: "http://xmlns.com/foaf/0.1/primaryTopic",
122
+ type: "http://www.w3.org/2002/07/owl#Restriction"
121
123
  ), term(
122
- cardinality: "1".freeze,
123
- onProperty: "http://xmlns.com/foaf/0.1/primaryTopic".freeze,
124
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
124
+ cardinality: "1",
125
+ onProperty: "http://xmlns.com/foaf/0.1/primaryTopic",
126
+ type: "http://www.w3.org/2002/07/owl#Restriction"
125
127
  )],
126
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
128
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
127
129
  term :DataService,
128
- comment: "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.".freeze,
129
- definition: "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.".freeze,
130
- "http://www.w3.org/2004/02/skos/core#changeNote": "New class added in DCAT 2.0.".freeze,
131
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["If a dcat:DataService is bound to one or more specified Datasets, they are indicated by the dcat:servesDataset property.".freeze, "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.".freeze],
132
- label: "Data service".freeze,
133
- subClassOf: ["http://purl.org/dc/dcmitype/Service".freeze, "http://www.w3.org/ns/dcat#Resource".freeze],
134
- type: "http://www.w3.org/2002/07/owl#Class".freeze
130
+ altLabel: {da: "Dataservice"},
131
+ comment: {en: "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.", cs: "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.", da: "Et websted eller endpoint der udstiller operationer relateret til opdagelse af, adgang til eller behandlende funktioner på data eller relaterede ressourcer.", es: "Un sitio o end-point que provee operaciones relacionadas a funciones de descubrimiento, acceso, o procesamiento de datos o recursos relacionados.", it: "Un sito o end-point che fornisce operazioni relative alla scoperta, all'accesso o all'elaborazione di funzioni su dati o risorse correlate."},
132
+ definition: {en: "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.", cs: "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.", da: "Et site eller endpoint der udstiller operationer relateret til opdagelse af, adgang til eller behandlende funktioner på data eller relaterede ressourcer.", es: "Un sitio o end-point que provee operaciones relacionadas a funciones de descubrimiento, acceso, o procesamiento de datos o recursos relacionados.", it: "Un sito o end-point che fornisce operazioni relative alla scoperta, all'accesso o all'elaborazione di funzioni su dati o risorse correlate."},
133
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New class added in DCAT 2.0.", cs: "Nová třída přidaná ve verzi DCAT 2.0.", da: "Ny klasse tilføjet i DCAT 2.0.", es: "Nueva clase añadida en DCAT 2.0.", it: "Nuova classe aggiunta in DCAT 2.0."},
134
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "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.", cs: "Pokud je dcat:DataService navázána na jednu či více Datových sad, jsou tyto indikovány vlstností dcat:servesDataset.", da: "Hvis en dcat:DataService er bundet til en eller flere specifikke datasæt kan dette indikeres ved hjælp af egenskaben dcat:servesDataset. ", es: "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.", it: "Se un dcat:DataService è associato a uno o più Dataset specificati, questi sono indicati dalla proprietà dcat:serveDataset."},
135
+ label: {en: "Data service", da: "Datatjeneste", es: "Servicio de datos", it: "Servizio di dati"},
136
+ subClassOf: ["http://purl.org/dc/dcmitype/Service", "http://www.w3.org/ns/dcat#Resource"],
137
+ type: "http://www.w3.org/2002/07/owl#Class"
135
138
  term :Dataset,
136
- comment: "A collection of data, published or curated by a single source, and available for access or download in one or more representations.".freeze,
137
- definition: "A collection of data, published or curated by a single source, and available for access or download in one or more represenations.".freeze,
138
- editorialNote: "2020-03-16 A new scopenote added and need to be translated".freeze,
139
- "http://www.w3.org/2004/02/skos/core#changeNote": "2018-02 - subclass of dctype:Dataset removed because scope of dcat:Dataset includes several other types from the dctype vocabulary.".freeze,
140
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["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.".freeze, "This class describes the conceptual dataset. One or more representations might be available, with differing schematic layouts and formats or serializations.".freeze, "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.".freeze],
141
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
142
- label: "Dataset".freeze,
143
- subClassOf: "http://www.w3.org/ns/dcat#Resource".freeze,
144
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
139
+ altLabel: {da: "Datasamling"},
140
+ comment: {en: "A collection of data, published or curated by a single source, and available for access or download in one or more representations.", ar: "قائمة بيانات منشورة أو مجموعة من قبل مصدر ما و متاح الوصول إليها أو تحميلها", cs: "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.", da: "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.", el: "Μία συλλογή από δεδομένα, δημοσιευμένη ή επιμελημένη από μία και μόνο πηγή, διαθέσιμη δε προς πρόσβαση ή μεταφόρτωση σε μία ή περισσότερες μορφές.", es: "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.", fr: "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.", it: "Raccolta di dati, pubblicati o curati da un'unica fonte, disponibili per l'accesso o il download in uno o più formati.", ja: "1つのエージェントによって公開またはキュレートされ、1つ以上の形式でアクセスまたはダウンロードできるデータの集合。"},
141
+ definition: {en: "A collection of data, published or curated by a single source, and available for access or download in one or more represenations.", ar: "قائمة بيانات منشورة أو مجموعة من قبل مصدر ما و متاح الوصول إليها أو تحميلها", cs: "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.", da: "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.", el: "Μία συλλογή από δεδομένα, δημοσιευμένη ή επιμελημένη από μία και μόνο πηγή, διαθέσιμη δε προς πρόσβαση ή μεταφόρτωση σε μία ή περισσότερες μορφές.", es: "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.", fr: "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.", it: "Raccolta di dati, pubblicati o curati da un'unica fonte, disponibili per l'accesso o il download in uno o più formati.", ja: "1つのエージェントによって公開またはキュレートされ、1つ以上の形式でアクセスまたはダウンロードできるデータの集合。"},
142
+ editorialNote: {en: "2020-03-16 A new scopenote added and need to be translated"},
143
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "2018-02 - subclass of dctype:Dataset removed because scope of dcat:Dataset includes several other types from the dctype vocabulary.", cs: "2018-02 - odstraněno tvrzení o podtřídě dctype:Dataset, jelikož rozsah dcat:Dataset zahrnuje několik dalších typů ze slovníku dctype.", da: "2018-02 - subklasse af dctype:Dataset fjernet da scope af dcat:Dataset omfatter flere forskellige typer fra dctype-vokabularet.", es: "2018-02 - se eliminó el axioma de subclase con dctype:Dataset porque el alcance de dcat:Dataset incluye muchos otros tipos del vocabulario dctype.", it: "2018-02 - sottoclasse di dctype:Dataset rimosso perché l'ambito di dcat:Dataset include diversi altri tipi dal vocabolario dctype."},
144
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "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.", cs: "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\".", da: "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.", el: "Η κλάση αυτή αναπαριστά το σύνολο δεδομένων αυτό καθ'εαυτό, όπως έχει δημοσιευθεί από τον εκδότη. Σε περιπτώσεις όπου είναι απαραίτητος ο διαχωρισμός μεταξύ του συνόλου δεδομένων και της καταγραφής αυτού στον κατάλογο (γιατί μεταδεδομένα όπως η ημερομηνία αλλαγής και ο συντηρητής μπορεί να διαφέρουν) η κλάση της καταγραφής καταλόγου μπορεί να χρησιμοποιηθεί για το τελευταίο.", es: "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'.", fr: "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.", it: "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.", ja: "このクラスは、データセットの公開者が公開する実際のデータセットを表わします。カタログ内の実際のデータセットとそのエントリーとの区別が必要な場合(修正日と維持者などのメタデータが異なるかもしれないので)は、後者にcatalog recordというクラスを使用できます。"},
145
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
146
+ label: {en: "Dataset", ar: "قائمة بيانات", cs: "Datová sada", da: "Datasæt", el: "Σύνολο Δεδομένων", es: "Conjunto de datos", fr: "Jeu de données", it: "Dataset", ja: "データセット"},
147
+ subClassOf: "http://www.w3.org/ns/dcat#Resource",
148
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
145
149
  term :Distribution,
146
- comment: "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).".freeze,
147
- definition: "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).".freeze,
148
- "http://www.w3.org/2004/02/skos/core#scopeNote": "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.".freeze,
149
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
150
- label: "Distribution".freeze,
151
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
150
+ altLabel: {da: "Dataudstilling"},
151
+ comment: {en: "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).", ar: "شكل محدد لقائمة البيانات يمكن الوصول إليه. قائمة بيانات ما يمكن أن تكون متاحه باشكال و أنواع متعددة. ملف يمكن تحميله أو واجهة برمجية يمكن من خلالها الوصول إلى البيانات هي أمثلة على ذلك.", cs: "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).", da: "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).", el: "Αναπαριστά μία συγκεκριμένη διαθέσιμη μορφή ενός συνόλου δεδομένων. Κάθε σύνολο δεδομενων μπορεί να είναι διαθέσιμο σε διαφορετικές μορφές, οι μορφές αυτές μπορεί να αναπαριστούν διαφορετικές μορφές αρχείων ή διαφορετικά σημεία διάθεσης. Παραδείγματα διανομών συμπεριλαμβάνουν ένα μεταφορτώσιμο αρχείο μορφής CSV, ένα API ή ένα RSS feed.", es: "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).", fr: "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.", it: "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.", ja: "データセットの特定の利用可能な形式を表わします。各データセットは、異なる形式で利用できることがあり、これらの形式は、データセットの異なる形式や、異なるエンドポイントを表わす可能性があります。配信の例には、ダウンロード可能なCSVファイル、API、RSSフィードが含まれます。"},
152
+ definition: {en: "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).", ar: "شكل محدد لقائمة البيانات يمكن الوصول إليه. قائمة بيانات ما يمكن أن تكون متاحه باشكال و أنواع متعددة. ملف يمكن تحميله أو واجهة برمجية يمكن من خلالها الوصول إلى البيانات هي أمثلة على ذلك.", cs: "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).", da: "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).", el: "Αναπαριστά μία συγκεκριμένη διαθέσιμη μορφή ενός συνόλου δεδομένων. Κάθε σύνολο δεδομενων μπορεί να είναι διαθέσιμο σε διαφορετικές μορφές, οι μορφές αυτές μπορεί να αναπαριστούν διαφορετικές μορφές αρχείων ή διαφορετικά σημεία διάθεσης. Παραδείγματα διανομών συμπεριλαμβάνουν ένα μεταφορτώσιμο αρχείο μορφής CSV, ένα API ή ένα RSS feed.", es: "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).", fr: "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.", it: "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.", ja: "データセットの特定の利用可能な形式を表わします。各データセットは、異なる形式で利用できることがあり、これらの形式は、データセットの異なる形式や、異なるエンドポイントを表わす可能性があります。配信の例には、ダウンロード可能なCSVファイル、API、RSSフィードが含まれます。"},
153
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "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.", cs: "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.", da: "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.", el: "Αυτό αναπαριστά μία γενική διαθεσιμότητα ενός συνόλου δεδομένων και δεν υπονοεί τίποτα περί του πραγματικού τρόπου πρόσβασης στα δεδομένα, αν είναι άμεσα μεταφορτώσιμα, μέσω API ή μέσω μίας ιστοσελίδας. Η χρήση της ιδιότητας dcat:downloadURL δείχνει μόνο άμεσα μεταφορτώσιμες διανομές.", es: "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.", fr: "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.", it: "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.", ja: "これは、データセットの一般的な利用可能性を表わし、データの実際のアクセス方式に関する情報(つまり、直接ダウンロードなのか、APIなのか、ウェブページを介したものなのか)を意味しません。dcat:downloadURLプロパティーの使用は、直接ダウンロード可能な配信を意味します。"},
154
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
155
+ label: {en: "Distribution", ar: "التوزيع", cs: "Distribuce", da: "Distribution", el: "Διανομή", es: "Distribución", fr: "Distribution", it: "Distribuzione", ja: "配信"},
156
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
152
157
  term :Relationship,
153
- comment: "An association class for attaching additional information to a relationship between DCAT Resources.".freeze,
154
- definition: "An association class for attaching additional information to a relationship between DCAT Resources.".freeze,
155
- "http://www.w3.org/2004/02/skos/core#changeNote": "New class added in DCAT 2.0.".freeze,
156
- "http://www.w3.org/2004/02/skos/core#scopeNote": "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).".freeze,
157
- label: "Relationship".freeze,
158
- type: "http://www.w3.org/2002/07/owl#Class".freeze
158
+ comment: {en: "An association class for attaching additional information to a relationship between DCAT Resources.", cs: "Asociační třída pro připojení dodatečných informací ke vztahu mezi zdroji DCAT.", da: "En associationsklasse til brug for tilknytning af yderligere information til en relation mellem DCAT-ressourcer.", es: "Una clase de asociación para adjuntar información adicional a una relación entre recursos DCAT.", it: "Una classe di associazione per il collegamento di informazioni aggiuntive a una relazione tra le risorse DCAT."},
159
+ definition: {en: "An association class for attaching additional information to a relationship between DCAT Resources.", cs: "Asociační třída pro připojení dodatečných informací ke vztahu mezi zdroji DCAT.", da: "En associationsklasse til brug for tilknytning af yderligere information til en relation mellem DCAT-ressourcer.", es: "Una clase de asociación para adjuntar información adicional a una relación entre recursos DCAT.", it: "Una classe di associazione per il collegamento di informazioni aggiuntive a una relazione tra le risorse DCAT."},
160
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New class added in DCAT 2.0.", cs: "Nová třída přidaná ve verzi DCAT 2.0.", da: "Ny klasse i DCAT 2.0.", es: "Nueva clase añadida en DCAT 2.0.", it: "Nuova classe aggiunta in DCAT 2.0."},
161
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "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).", cs: "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).", da: "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).", es: "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).", it: "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)."},
162
+ label: {en: "Relationship", cs: "Vztah", da: "Relation", es: "Relación", it: "Relazione"},
163
+ type: "http://www.w3.org/2002/07/owl#Class"
159
164
  term :Resource,
160
- comment: "Resource published or curated by a single agent.".freeze,
161
- definition: "Resource published or curated by a single agent.".freeze,
162
- "http://www.w3.org/2004/02/skos/core#changeNote": "New class added in DCAT 2.0.".freeze,
163
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["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.".freeze, "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.".freeze],
164
- label: "Catalogued resource".freeze,
165
- type: "http://www.w3.org/2002/07/owl#Class".freeze
165
+ comment: {en: "Resource published or curated by a single agent.", cs: "Zdroj publikovaný či řízený jediným činitelem.", da: "Ressource udgivet eller udvalgt og arrangeret af en enkelt aktør.", es: "Recurso publicado o curado por un agente único.", it: "Risorsa pubblicata o curata da un singolo agente."},
166
+ definition: {en: "Resource published or curated by a single agent.", cs: "Zdroj publikovaný či řízený jediným činitelem.", da: "Ressource udgivet eller udvalgt og arrangeret af en enkelt aktør.", es: "Recurso publicado o curado por un agente único.", it: "Risorsa pubblicata o curata da un singolo agente."},
167
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New class added in DCAT 2.0.", cs: "Nová třída přidaná ve verzi DCAT 2.0.", da: "Ny klasse i DCAT 2.0.", es: "Nueva clase agregada en DCAT 2.0.", it: "Nuova classe aggiunta in DCAT 2.0."},
168
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "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.", cs: "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ů.", da: "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.", es: "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.", it: "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."},
169
+ label: {en: "Catalogued resource", cs: "Katalogizovaný zdroj", da: "Katalogiseret ressource", es: "Recurso catalogado", it: "Risorsa catalogata"},
170
+ type: "http://www.w3.org/2002/07/owl#Class"
166
171
  term :Role,
167
- comment: "A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.".freeze,
168
- definition: "A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.".freeze,
169
- editorialNote: "Introduced into DCAT to complement prov:Role (whose use is limited to roles in the context of an activity, as the range of prov:hadRole).".freeze,
170
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/dcat#hadRole".freeze,
171
- "http://www.w3.org/2004/02/skos/core#changeNote": ["New class added in DCAT 2.0.".freeze, "Ny klasse tilføjet i DCAT 2.0.".freeze],
172
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["Used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the values be managed as a controlled vocabulary of agent roles, such as http://registry.it.csiro.au/def/isotc211/CI_RoleCode.".freeze, "Used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the values be managed as a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.".freeze],
173
- label: "Role".freeze,
174
- subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
175
- type: "http://www.w3.org/2002/07/owl#Class".freeze
172
+ comment: {en: "A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.", cs: "Role je funkce zdroje či agenta ve vztahu k jinému zdroji, v kontextu přiřazení zdrojů či vztahů mezi zdroji.", da: "En rolle er den funktion en ressource eller aktør har i forhold til en anden ressource, i forbindelse med ressourcekreditering eller ressourcerelationer.", es: "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.", it: "Un ruolo è la funzione di una risorsa o di un agente rispetto ad un'altra risorsa, nel contesto dell'attribuzione delle risorse o delle relazioni tra risorse."},
173
+ definition: {en: "A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.", cs: "Role je funkce zdroje či agenta ve vztahu k jinému zdroji, v kontextu přiřazení zdrojů či vztahů mezi zdroji.", da: "En rolle er den funktion en ressource eller aktør har i forhold til en anden ressource, i forbindelse med ressourcekreditering eller ressourcerelationer.", es: "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.", it: "Un ruolo è la funzione di una risorsa o di un agente rispetto ad un'altra risorsa, nel contesto dell'attribuzione delle risorse o delle relazioni tra risorse."},
174
+ editorialNote: {en: "Introduced into DCAT to complement prov:Role (whose use is limited to roles in the context of an activity, as the range of prov:hadRole).", cs: "Přidáno do DCAT pro doplnění třídy prov:Role (jejíž užití je omezeno na role v kontextu aktivit, jakožto obor hodnot vlastnosti prov:hadRole).", da: "Introduceret i DCAT for at supplere prov:Role (hvis anvendelse er begrænset til roller i forbindelse med en aktivitet, som er rækkevidde for prov:hadRole).", es: "Incluída en DCAT para complementar prov:Role (cuyo uso está limitado a roles en el contexto de una actividad, ya que es el rango es prov:hadRole).", it: "Introdotta in DCAT per completare prov:Role (il cui uso è limitato ai ruoli nel contesto di un'attività, in conseguenza alla definizione del codominio di prov:hadRole)."},
175
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/dcat#hadRole",
176
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "Ny klasse tilføjet i DCAT 2.0.", cs: "Nová třída přidaná ve verzi DCAT 2.0.", es: "Nueva clase agregada en DCAT 2.0.", it: "Nuova classe aggiunta in DCAT 2.0."},
177
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "Used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the values be managed as a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.", cs: "Použito v kvalifikovaném vztahu pro specifikaci role Entity ve vztahu k jiné Entitě. Je doporučeno množinu hodnot spravovat jako řízený slovník rolí entit, jako například ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode, IANA Registry of Link Relations https://www.iana.org/assignments/link-relation, DataCite metadata schema, či MARC relators https://id.loc.gov/vocabulary/relators.", da: "Anvendes i forbindelse med kvalificerede relationer til at specificere en entitets rolle i forhold til en anden entitet. Det anbefales at værdierne styres med et kontrolleret udfaldsrum for for entitetsroller såsom: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.", es: "Se usa en una relación cualificada para especificar el rol de una Entidad con respecto a otra Entidad. Se recomienda que los valores se administren como los valores de un vocabulario controlado de roles de entidad como por ejemplo: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; el esquema de metadatos de DataCite; MARC relators https://id.loc.gov/vocabulary/relators.", it: "Utilizzato in una relazione qualificata per specificare il ruolo di un'entità rispetto a un'altra entità. Si raccomanda che il valore sia preso da un vocabolario controllato di ruoli di entità come ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode, IANA Registry of Link Relations https://www.iana.org/assignments/link-relation, DataCite metadata schema, o MARC relators https://id.loc.gov/vocabulary/relators."},
178
+ label: {en: "Role", cs: "Role", da: "Rolle", es: "Rol", it: "Ruolo"},
179
+ subClassOf: "http://www.w3.org/2004/02/skos/core#Concept",
180
+ type: "http://www.w3.org/2002/07/owl#Class"
176
181
 
177
182
  # Property definitions
178
183
  property :accessService,
179
- comment: "A site or end-point that gives access to the distribution of the dataset.".freeze,
180
- definition: "A site or end-point that gives access to the distribution of the dataset.".freeze,
181
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
182
- label: "data access service".freeze,
183
- range: "http://www.w3.org/ns/dcat#DataService".freeze,
184
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
184
+ comment: {en: "A site or end-point that gives access to the distribution of the dataset.", cs: "Umístění či přístupový bod zpřístupňující distribuci datové sady.", da: "Et websted eller endpoint der giver adgang til en repræsentation af datasættet.", es: "Un sitio o end-point que da acceso a la distribución de un conjunto de datos.", it: "Un sito o end-point che dà accesso alla distribuzione del set di dati."},
185
+ definition: {en: "A site or end-point that gives access to the distribution of the dataset.", cs: "Umístění či přístupový bod zpřístupňující distribuci datové sady.", da: "Et websted eller endpoint der giver adgang til en repræsentation af datasættet.", es: "Un sitio o end-point que da acceso a la distribución de un conjunto de datos.", it: "Un sito o end-point che dà accesso alla distribuzione del set di dati."},
186
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
187
+ label: {en: "data access service", cs: "služba pro přístup k datům", da: "dataadgangstjeneste", es: "servicio de acceso de datos", it: "servizio di accesso ai dati"},
188
+ range: "http://www.w3.org/ns/dcat#DataService",
189
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
185
190
  property :accessURL,
186
- comment: "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.".freeze,
187
- definition: "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.".freeze,
188
- domain: "http://www.w3.org/ns/dcat#Distribution".freeze,
189
- editorialNote: ["Status: English Definition text modified by DCAT revision team, updated Italian and Czech translation provided, translations for other languages pending.".freeze, "rdfs:label, rdfs:comment and skos:scopeNote have been modified. Non-english versions except for Italian must be updated.".freeze],
190
- "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/dcat#accessService".freeze, "http://www.w3.org/ns/dcat#endpointURL".freeze),
191
- "http://www.w3.org/2004/02/skos/core#scopeNote": "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.".freeze,
192
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
193
- label: "access address".freeze,
194
- range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
195
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
191
+ altLabel: {da: "adgangsURL"},
192
+ comment: {en: "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.", ar: "أي رابط يتيح الوصول إلى البيانات. إذا كان الرابط هو ربط مباشر لملف يمكن تحميله استخدم الخاصية downloadURL", cs: "URL zdroje, přes které je přístupná distribuce datové sady. Příkladem může být vstupní stránka, RSS kanál či SPARQL endpoint. Použijte ve všech případech kromě URL souboru ke stažení, pro které je lepší použít dcat:downloadURL.", da: "En URL for en ressource som giver adgang til en repræsentation af datsættet. Fx destinationsside, feed, SPARQL-endpoint. Anvendes i alle sammenhænge undtagen til angivelse af et simpelt download link hvor anvendelse af egenskaben downloadURL foretrækkes.", el: "Μπορεί να είναι οποιουδήποτε είδους URL που δίνει πρόσβαση στη διανομή ενός συνόλου δεδομένων. Π.χ. ιστοσελίδα αρχικής πρόσβασης, μεταφόρτωση, feed URL, σημείο διάθεσης SPARQL. Να χρησιμοποιείται όταν ο κατάλογος δεν περιέχει πληροφορίες εαν πρόκειται ή όχι για μεταφορτώσιμο αρχείο.", es: "Puede ser cualquier tipo de URL que de acceso a una distribución del conjunto de datos, e.g., página de destino, descarga, URL feed, punto de acceso SPARQL. Esta propriedad se debe usar cuando su catálogo de datos no tiene información sobre donde está o cuando no se puede descargar.", fr: "Ceci peut être tout type d'URL qui donne accès à une distribution du jeu de données. Par exemple, un lien à une page HTML contenant un lien au jeu de données, un Flux RSS, un point d'accès SPARQL. Utilisez le lorsque votre catalogue ne contient pas d'information sur quoi il est ou quand ce n'est pas téléchargeable.", it: "Un URL di una risorsa che consente di accedere a una distribuzione del set di dati. Per esempio, pagina di destinazione, feed, endpoint SPARQL. Da utilizzare per tutti i casi, tranne quando si tratta di un semplice link per il download nel qual caso è preferito downloadURL.", ja: "データセットの配信にアクセス権を与えるランディング・ページ、フィード、SPARQLエンドポイント、その他の種類の資源。"},
193
+ definition: {en: "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.", ar: "أي رابط يتيح الوصول إلى البيانات. إذا كان الرابط هو ربط مباشر لملف يمكن تحميله استخدم الخاصية downloadURL", cs: "URL zdroje, přes které je přístupná distribuce datové sady. Příkladem může být vstupní stránka, RSS kanál či SPARQL endpoint. Použijte ve všech případech kromě URL souboru ke stažení, pro které je lepší použít dcat:downloadURL.", da: "En URL for en ressource som giver adgang til en repræsentation af datsættet. Fx destinationsside, feed, SPARQL-endpoint. Anvendes i alle sammenhænge undtagen til angivelse af et simpelt download link hvor anvendelse af egenskaben downloadURL foretrækkes.", el: "Μπορεί να είναι οποιουδήποτε είδους URL που δίνει πρόσβαση στη διανομή ενός συνόλου δεδομένων. Π.χ. ιστοσελίδα αρχικής πρόσβασης, μεταφόρτωση, feed URL, σημείο διάθεσης SPARQL. Να χρησιμοποιείται όταν ο κατάλογος δεν περιέχει πληροφορίες εαν πρόκειται ή όχι για μεταφορτώσιμο αρχείο.", es: "Puede ser cualquier tipo de URL que de acceso a una distribución del conjunto de datos, e.g., página de destino, descarga, URL feed, punto de acceso SPARQL. Esta propriedad se debe usar cuando su catálogo de datos no tiene información sobre donde está o cuando no se puede descargar.", fr: "Ceci peut être tout type d'URL qui donne accès à une distribution du jeu de données. Par exemple, un lien à une page HTML contenant un lien au jeu de données, un Flux RSS, un point d'accès SPARQL. Utilisez le lorsque votre catalogue ne contient pas d'information sur quoi il est ou quand ce n'est pas téléchargeable.", it: "Un URL di una risorsa che consente di accedere a una distribuzione del set di dati. Per esempio, pagina di destinazione, feed, endpoint SPARQL. Da utilizzare per tutti i casi, tranne quando si tratta di un semplice link per il download nel qual caso è preferito downloadURL.", ja: "データセットの配信にアクセス権を与えるランディング・ページ、フィード、SPARQLエンドポイント、その他の種類の資源。"},
194
+ domain: "http://www.w3.org/ns/dcat#Distribution",
195
+ editorialNote: {en: "rdfs:label, rdfs:comment and skos:scopeNote have been modified. Non-english versions except for Italian must be updated."},
196
+ "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/dcat#accessService", "http://www.w3.org/ns/dcat#endpointURL"),
197
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.", cs: "Pokud jsou distribuce přístupné pouze přes vstupní stránku (tj. URL pro přímé stažení nejsou známa), pak by URL přístupové stránky mělo být duplikováno ve vlastnosti distribuce accessURL.", da: "Hvis en eller flere distributioner kun er tilgængelige via en destinationsside (dvs. en URL til direkte download er ikke kendt), så bør destinationssidelinket gentages som adgangsadresse for distributionen.", el: "Η τιμή είναι ένα URL. Αν η/οι διανομή/ές είναι προσβάσιμη/ες μόνο μέσω μίας ιστοσελίδας αρχικής πρόσβασης (δηλαδή αν δεν υπάρχουν γνωστές διευθύνσεις άμεσης μεταφόρτωσης), τότε ο σύνδεσμος της ιστοσελίδας αρχικής πρόσβασης πρέπει να αναπαραχθεί ως accessURL σε μία διανομή.", es: "El rango es una URL. Si la distribución es accesible solamente través de una página de destino (es decir, si no se conoce una URL de descarga directa), entonces el enlance a la página de destino debe ser duplicado como accessURL en la distribución.", fr: "La valeur est une URL. Si la distribution est accessible seulement au travers d'une page d'atterrissage (c-à-dire on n'ignore une URL de téléchargement direct), alors le lien à la page d'atterrissage doit être dupliqué comee accessURL sur la distribution.", it: "Se le distribuzioni sono accessibili solo attraverso una pagina web (ad esempio, gli URL per il download diretto non sono noti), allora il link della pagina web deve essere duplicato come accessURL sulla distribuzione.", ja: "確実にダウンロードでない場合や、ダウンロードかどうかが不明である場合は、downloadURLではなく、accessURLを用いてください。ランディング・ページを通じてしか配信にアクセスできない場合(つまり、直接的なダウンロードURLが不明)は、配信におけるaccessURLとしてランディング・ページのリンクをコピーすべきです(SHOULD)。"},
198
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
199
+ label: {en: "access address", ar: "رابط وصول", cs: "přístupová adresa", da: "adgangsadresse", el: "URL πρόσβασης", es: "URL de acceso", fr: "URL d'accès", it: "indirizzo di accesso", ja: "アクセスURL"},
200
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
201
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
196
202
  property :bbox,
197
- definition: "The geographic bounding box of a resource.".freeze,
198
- domain: "http://purl.org/dc/terms/Location".freeze,
199
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
200
- "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).".freeze,
201
- label: "bounding box".freeze,
202
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
203
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
203
+ definition: {en: "The geographic bounding box of a resource.", cs: "Ohraničení geografické oblasti zdroje.", da: "Den geografiske omskrevne firkant af en ressource.", es: "El cuadro delimitador geográfico para un recurso.", it: "Il riquadro di delimitazione geografica di una risorsa."},
204
+ domain: "http://purl.org/dc/terms/Location",
205
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Propiedad nueva agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
206
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).", cs: "Obor hodnot této vlastnosti je úmyslně obecný, aby umožnil různé kódování geometrií. Geometrie by kupříkladu mohla být kódována jako WKT (geosparql:wktLiteral [GeoSPARQL]) či [GML] (geosparql:asGML [GeoSPARQL]).", da: "Rækkevidden for denne egenskab er bevidst generisk defineret med det formål at tillade forskellige kodninger af geometrier. Geometrien kan eksempelvis repræsenteres som WKT (geosparql:asWKT [GeoSPARQL]) eller [GML] (geosparql:asGML [GeoSPARQL]).", es: "El rango de esta propiedad es intencionalmente genérico con el propósito de permitir distintas codificaciones geométricas. Por ejemplo, la geometría puede ser codificada como WKT (geosparql:wktLiteral [GeoSPARQL]) o [GML] (geosparql:asGML [GeoSPARQL]).", it: "Il range di questa proprietà è volutamente generica, con lo scopo di consentire diverse codifiche geometriche. Ad esempio, la geometria potrebbe essere codificata con WKT (geosparql:wktLiteral [GeoSPARQL]) o [GML] (geosparql:asGML [GeoSPARQL])."},
207
+ label: {en: "bounding box", cs: "ohraničení oblasti", da: "bounding box", es: "cuadro delimitador", it: "quadro di delimitazione"},
208
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
209
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
204
210
  property :byteSize,
205
- comment: "The size of a distribution in bytes.".freeze,
206
- definition: "The size of a distribution in bytes.".freeze,
207
- domain: "http://www.w3.org/ns/dcat#Distribution".freeze,
208
- "http://www.w3.org/2004/02/skos/core#scopeNote": "The size in bytes can be approximated when the precise size is not known. The literal value of dcat:byteSize should by typed as xsd:decimal.".freeze,
209
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
210
- label: "byte size".freeze,
211
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
212
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
211
+ comment: {en: "The size of a distribution in bytes.", ar: "الحجم بالبايتات ", cs: "Velikost distribuce v bajtech.", da: "Størrelsen af en distributionen angivet i bytes.", el: "Το μέγεθος μιας διανομής σε bytes.", es: "El tamaño de una distribución en bytes.", fr: "La taille de la distribution en octects", it: "La dimensione di una distribuzione in byte.", ja: "バイトによる配信のサイズ。"},
212
+ definition: {en: "The size of a distribution in bytes.", ar: "الحجم بالبايتات ", cs: "Velikost distribuce v bajtech.", da: "Størrelsen af en distribution angivet i bytes.", el: "Το μέγεθος μιας διανομής σε bytes.", es: "El tamaño de una distribución en bytes.", fr: "La taille de la distribution en octects.", it: "La dimensione di una distribuzione in byte.", ja: "バイトによる配信のサイズ。"},
213
+ domain: "http://www.w3.org/ns/dcat#Distribution",
214
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The size in bytes can be approximated when the precise size is not known. The literal value of dcat:byteSize should by typed as xsd:decimal.", ar: "الحجم يمكن أن يكون تقريبي إذا كان الحجم الدقيق غير معروف", cs: "Velikost v bajtech může být přibližná, pokud její přesná hodnota není známa. Literál s hodnotou dcat:byteSize by měl mít datový typ xsd:decimal.", da: "Bytestørrelsen kan approximeres hvis den præcise størrelse ikke er kendt. Værdien af dcat:byteSize bør angives som xsd:decimal.", el: "Το μέγεθος σε bytes μπορεί να προσεγγιστεί όταν η ακριβής τιμή δεν είναι γνωστή. Η τιμή της dcat:byteSize θα πρέπει να δίνεται με τύπο δεδομένων xsd:decimal.", es: "El tamaño en bytes puede ser aproximado cuando se desconoce el tamaño exacto. El valor literal de dcat:byteSize debe tener tipo 'xsd:decimal'.", fr: "La taille en octects peut être approximative lorsque l'on ignore la taille réelle. La valeur littérale de dcat:byteSize doit être de type xsd:decimal.", it: "La dimensione in byte può essere approssimata quando non si conosce la dimensione precisa. Il valore di dcat:byteSize dovrebbe essere espresso come un xsd:decimal.", ja: "正確なサイズが不明である場合、サイズは、バイトによる近似値を示すことができます。"},
215
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
216
+ label: {en: "byte size", ar: "الحجم بالبايت", cs: "velikost v bajtech", da: "bytestørrelse", el: "μέγεθος σε bytes", es: "tamaño en bytes", fr: "taille en octects", it: "dimensione in byte", ja: "バイト・サイズ"},
217
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
218
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
213
219
  property :catalog,
214
- comment: "A catalog whose contents are of interest in the context of this catalog.".freeze,
215
- definition: "A catalog whose contents are of interest in the context of this catalog.".freeze,
216
- domain: "http://www.w3.org/ns/dcat#Catalog".freeze,
217
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
218
- label: "catalog".freeze,
219
- range: "http://www.w3.org/ns/dcat#Catalog".freeze,
220
- subPropertyOf: ["http://purl.org/dc/terms/hasPart".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze],
221
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
220
+ altLabel: {da: "har delkatalog"},
221
+ comment: {en: "A catalog whose contents are of interest in the context of this catalog.", cs: "Katalog, jehož obsah je v kontextu tohoto katalogu zajímavý.", da: "Et katalog hvis indhold er relevant i forhold til det aktuelle katalog.", es: "Un catálogo cuyo contenido es de interés en el contexto del catálogo que está siendo descripto.", it: "Un catalogo i cui contenuti sono di interesse nel contesto di questo catalogo."},
222
+ definition: {en: "A catalog whose contents are of interest in the context of this catalog.", cs: "Katalog, jehož obsah je v kontextu tohoto katalogu zajímavý.", da: "Et katalog hvis indhold er relevant i forhold til det aktuelle katalog.", es: "Un catálogo cuyo contenido es de interés en el contexto del catálogo que está siendo descripto.", it: "Un catalogo i cui contenuti sono di interesse nel contesto di questo catalogo."},
223
+ domain: "http://www.w3.org/ns/dcat#Catalog",
224
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
225
+ label: {en: "catalog", cs: "katalog", da: "katalog", es: "catálogo", it: "catalogo"},
226
+ range: "http://www.w3.org/ns/dcat#Catalog",
227
+ subPropertyOf: ["http://purl.org/dc/terms/hasPart", "http://www.w3.org/2000/01/rdf-schema#member"],
228
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
222
229
  property :centroid,
223
- definition: "The geographic center (centroid) of a resource.".freeze,
224
- domain: "http://purl.org/dc/terms/Location".freeze,
225
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
226
- "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).".freeze,
227
- label: "centroid".freeze,
228
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
229
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
230
+ altLabel: {da: "centroide"},
231
+ definition: {en: "The geographic center (centroid) of a resource.", cs: "Geografický střed (centroid) zdroje.", da: "Det geometrisk tyngdepunkt (centroid) for en ressource.", es: "El centro geográfico (centroide) de un recurso.", it: "Il centro geografico (centroide) di una risorsa."},
232
+ domain: "http://purl.org/dc/terms/Location",
233
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
234
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).", cs: "Obor hodnot této vlastnosti je úmyslně obecný, aby umožnil různé kódování geometrií. Geometrie by kupříkladu mohla být kódována jako WKT (geosparql:wktLiteral [GeoSPARQL]) či [GML] (geosparql:asGML [GeoSPARQL]).", da: "Rækkevidden for denne egenskab er bevidst generisk definere med det formål at tillade forskellige geokodninger. Geometrien kan eksempelvis repræsenteres som WKT (geosparql:asWKT [GeoSPARQL]) eller [GML] (geosparql:asGML [GeoSPARQL]).", es: "El rango de esta propiedad es intencionalmente genérico con el objetivo de permitir distintas codificaciones geométricas. Por ejemplo, la geometría puede codificarse como WKT (geosparql:wktLiteral [GeoSPARQL]) o [GML] (geosparql:asGML [GeoSPARQL]).", it: "Il range di questa proprietà è volutamente generica, con lo scopo di consentire diverse codifiche geometriche. Ad esempio, la geometria potrebbe essere codificata con WKT (geosparql:wktLiteral [GeoSPARQL]) o [GML] (geosparql:asGML [GeoSPARQL])."},
235
+ label: {en: "centroid", cs: "centroid", da: "geometrisk tyngdepunkt", es: "centroide", it: "centroide"},
236
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
237
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
230
238
  property :compressFormat,
231
- comment: "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.".freeze,
232
- definition: "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.".freeze,
233
- domain: "http://www.w3.org/ns/dcat#Distribution".freeze,
234
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
235
- "http://www.w3.org/2004/02/skos/core#scopeNote": "This property is to be used when the files in the distribution are compressed, e.g. in a ZIP file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.".freeze,
236
- isDefinedBy: "https://www.w3.org/TR/vocab-dcat-2/".freeze,
237
- label: "compression format".freeze,
238
- range: "http://purl.org/dc/terms/MediaType".freeze,
239
- subPropertyOf: "http://purl.org/dc/terms/format".freeze,
240
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
239
+ comment: {en: "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.", cs: "Formát komprese souboru, ve kterém jsou data poskytována v komprimované podobě, např. ke snížení velikosti souboru ke stažení.", da: "Kompressionsformatet for distributionen som indeholder data i et komprimeret format, fx for at reducere størrelsen af downloadfilen.", es: "El formato de la distribución en el que los datos están en forma comprimida, e.g. para reducir el tamaño del archivo a bajar.", it: "Il formato di compressione della distribuzione nel quale i dati sono in forma compressa, ad es. per ridurre le dimensioni del file da scaricare."},
240
+ definition: {en: "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.", cs: "Formát komprese souboru, ve kterém jsou data poskytována v komprimované podobě, např. ke snížení velikosti souboru ke stažení.", da: "Kompressionsformatet for distributionen som indeholder data i et komprimeret format, fx for at reducere størrelsen af downloadfilen.", es: "El formato de la distribución en el que los datos están en forma comprimida, e.g. para reducir el tamaño del archivo a bajar.", it: "Il formato di compressione della distribuzione nel quale i dati sono in forma compressa, ad es. per ridurre le dimensioni del file da scaricare."},
241
+ domain: "http://www.w3.org/ns/dcat#Distribution",
242
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
243
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "This property is to be used when the files in the distribution are compressed, e.g. in a ZIP file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.", cs: "Tato vlastnost se použije, když jsou soubory v distribuci komprimovány, např. v ZIP souboru. Formát BY MĚL být vyjádřen pomocí typu média definovaného v registru IANA https://www.iana.org/assignments/media-types/, pokud existuje.", da: "Denne egenskab kan anvendes når filerne i en distribution er blevet komprimeret, fx i en ZIP-fil. Formatet BØR udtrykkes ved en medietype som defineret i 'IANA media types registry', hvis der optræder en relevant medietype dér: https://www.iana.org/assignments/media-types/.", es: "Esta propiedad se debe usar cuando los archivos de la distribución están comprimidos, por ejemplo en un archivo ZIP. El formato DEBERÍA expresarse usando un 'media type', tales como los definidos en el registro IANA de 'media types' https://www.iana.org/assignments/media-types/, si está disponibles.", it: "Questa proprietà deve essere utilizzata quando i file nella distribuzione sono compressi, ad es. in un file ZIP. Il formato DOVREBBE essere espresso usando un tipo di media come definito dal registro dei tipi di media IANA https://www.iana.org/assignments/media-types/, se disponibile."},
244
+ isDefinedBy: "https://www.w3.org/TR/vocab-dcat-2/",
245
+ label: {en: "compression format", cs: "formát komprese", da: "kompressionsformat", es: "formato de compresión", it: "formato di compressione"},
246
+ range: "http://purl.org/dc/terms/MediaType",
247
+ subPropertyOf: "http://purl.org/dc/terms/format",
248
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
241
249
  property :contactPoint,
242
- comment: "Relevant contact information for the catalogued resource. Use of vCard is recommended.".freeze,
243
- definition: "Relevant contact information for the catalogued resource. Use of vCard is recommended.".freeze,
244
- editorialNote: "Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translations provided, other translations pending.".freeze,
245
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
246
- label: "contact point".freeze,
247
- range: "http://www.w3.org/2006/vcard/ns#Kind".freeze,
248
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
250
+ comment: {en: "Relevant contact information for the catalogued resource. Use of vCard is recommended.", ar: "تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard", cs: "Relevantní kontaktní informace pro katalogizovaný zdroj. Doporučuje se použít slovník VCard.", da: "Relevante kontaktoplysninger for den katalogiserede ressource. Anvendelse af vCard anbefales.", el: "Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard.", es: "Información relevante de contacto para el recurso catalogado. Se recomienda el uso de vCard.", fr: "Relie un jeu de données à une information de contact utile en utilisant VCard.", it: "Informazioni di contatto rilevanti per la risorsa catalogata. Si raccomanda l'uso di vCard.", ja: "データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。"},
251
+ definition: {en: "Relevant contact information for the catalogued resource. Use of vCard is recommended.", ar: "تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard", cs: "Relevantní kontaktní informace pro katalogizovaný zdroj. Doporučuje se použít slovník VCard.", da: "Relevante kontaktoplysninger for den katalogiserede ressource. Anvendelse af vCard anbefales.", el: "Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard.", es: "Información relevante de contacto para el recurso catalogado. Se recomienda el uso de vCard.", fr: "Relie un jeu de données à une information de contact utile en utilisant VCard.", it: "Informazioni di contatto rilevanti per la risorsa catalogata. Si raccomanda l'uso di vCard.", ja: "データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。"},
252
+ editorialNote: {en: "Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translations provided, other translations pending."},
253
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
254
+ label: {en: "contact point", ar: "عنوان اتصال", cs: "kontaktní bod", da: "kontaktpunkt", el: "σημείο επικοινωνίας", es: "Punto de contacto", fr: "point de contact", it: "punto di contatto", ja: "窓口"},
255
+ range: "http://www.w3.org/2006/vcard/ns#Kind",
256
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
249
257
  property :dataset,
250
- comment: "A collection of data that is listed in the catalog.".freeze,
251
- definition: "A collection of data that is listed in the catalog.".freeze,
252
- domain: "http://www.w3.org/ns/dcat#Catalog".freeze,
253
- editorialNote: "Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translation provided, other translations pending.".freeze,
254
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
255
- label: "dataset".freeze,
256
- range: "http://www.w3.org/ns/dcat#Dataset".freeze,
257
- subPropertyOf: ["http://purl.org/dc/terms/hasPart".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze],
258
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
258
+ altLabel: {da: "datasamling"},
259
+ comment: {en: "A collection of data that is listed in the catalog.", ar: "تربط الفهرس بقائمة بيانات ضمنه", cs: "Kolekce dat, která je katalogizována v katalogu.", da: "En samling af data som er opført i kataloget.", el: "Συνδέει έναν κατάλογο με ένα σύνολο δεδομένων το οποίο ανήκει στον εν λόγω κατάλογο.", es: "Un conjunto de datos que se lista en el catálogo.", fr: "Relie un catalogue à un jeu de données faisant partie de ce catalogue.", it: "Una raccolta di dati che è elencata nel catalogo.", ja: "カタログの一部であるデータセット。"},
260
+ definition: {en: "A collection of data that is listed in the catalog.", ar: "تربط الفهرس بقائمة بيانات ضمنه", cs: "Kolekce dat, která je katalogizována v katalogu.", da: "En samling af data som er opført i kataloget.", el: "Συνδέει έναν κατάλογο με ένα σύνολο δεδομένων το οποίο ανήκει στον εν λόγω κατάλογο.", es: "Un conjunto de datos que se lista en el catálogo.", fr: "Relie un catalogue à un jeu de données faisant partie de ce catalogue.", it: "Una raccolta di dati che è elencata nel catalogo.", ja: "カタログの一部であるデータセット。"},
261
+ domain: "http://www.w3.org/ns/dcat#Catalog",
262
+ editorialNote: {en: "Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translation provided, other translations pending."},
263
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
264
+ label: {en: "dataset", ar: "قائمة بيانات", cs: "datová sada", da: "datasæt", el: "σύνολο δεδομένων", es: "conjunto de datos", fr: "jeu de données", it: "dataset", ja: "データセット"},
265
+ range: "http://www.w3.org/ns/dcat#Dataset",
266
+ subPropertyOf: ["http://purl.org/dc/terms/hasPart", "http://www.w3.org/2000/01/rdf-schema#member"],
267
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
259
268
  property :distribution,
260
- comment: "An available distribution of the dataset.".freeze,
261
- definition: "An available distribution of the dataset.".freeze,
262
- domain: "http://www.w3.org/ns/dcat#Dataset".freeze,
263
- editorialNote: "Status: English Definition text modified by DCAT revision team, translations pending (except for Italian, Spanish and Czech).".freeze,
264
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
265
- label: "distribution".freeze,
266
- range: "http://www.w3.org/ns/dcat#Distribution".freeze,
267
- subPropertyOf: "http://purl.org/dc/terms/relation".freeze,
268
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
269
+ altLabel: {da: "har distribution"},
270
+ comment: {en: "An available distribution of the dataset.", ar: "تربط قائمة البيانات بطريقة أو بشكل يسمح الوصول الى البيانات", cs: "Dostupná distribuce datové sady.", da: "En tilgængelig repræsentation af datasættet.", el: "Συνδέει ένα σύνολο δεδομένων με μία από τις διαθέσιμες διανομές του.", es: "Una distribución disponible del conjunto de datos.", fr: "Connecte un jeu de données à des distributions disponibles.", it: "Una distribuzione disponibile per il set di dati.", ja: "データセットを、その利用可能な配信に接続します。"},
271
+ definition: {en: "An available distribution of the dataset.", ar: "تربط قائمة البيانات بطريقة أو بشكل يسمح الوصول الى البيانات", cs: "Dostupná distribuce datové sady.", da: "En tilgængelig repræsentation af datasættet.", el: "Συνδέει ένα σύνολο δεδομένων με μία από τις διαθέσιμες διανομές του.", es: "Una distribución disponible del conjunto de datos.", fr: "Connecte un jeu de données à des distributions disponibles.", it: "Una distribuzione disponibile per il set di dati.", ja: "データセットを、その利用可能な配信に接続します。"},
272
+ domain: "http://www.w3.org/ns/dcat#Dataset",
273
+ editorialNote: {en: "Status: English Definition text modified by DCAT revision team, translations pending (except for Italian, Spanish and Czech)."},
274
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
275
+ label: {en: "distribution", ar: "توزيع", cs: "distribuce", da: "distribution", el: "διανομή", es: "distribución", fr: "distribution", it: "distribuzione", ja: "データセット配信"},
276
+ range: "http://www.w3.org/ns/dcat#Distribution",
277
+ subPropertyOf: "http://purl.org/dc/terms/relation",
278
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
269
279
  property :downloadURL,
270
- comment: "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.".freeze,
271
- definition: "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.".freeze,
272
- domain: "http://www.w3.org/ns/dcat#Distribution".freeze,
273
- editorialNote: ["Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translation updated, other translations pending.".freeze, "rdfs:label, rdfs:comment and/or skos:scopeNote have been modified. Non-english versions must be updated.".freeze],
274
- "http://www.w3.org/2004/02/skos/core#scopeNote": "dcat:downloadURL SHOULD be used for the address at which this distribution is available directly, typically through a HTTP Get request.".freeze,
275
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
276
- label: "download URL".freeze,
277
- range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
278
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
280
+ comment: {en: "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.", ar: "رابط مباشر لملف يمكن تحميله. نوع الملف يتم توصيفه باستخدام الخاصية dct:format dcat:mediaType ", cs: "URL souboru ke stažení v daném formátu, například CSV nebo RDF soubor. Formát je popsán vlastností distribuce dct:format a/nebo dcat:mediaType.", da: "URL til fil der kan downloades i et bestemt format. Fx en CSV-fil eller en RDF-fil. Formatet for distributionen angives ved hjælp af egenskaberne dct:format og/eller dcat:mediaType.", el: "Είναι ένας σύνδεσμος άμεσης μεταφόρτωσης ενός αρχείου σε μια δεδομένη μορφή. Π.χ. ένα αρχείο CSV ή RDF. Η μορφη αρχείου περιγράφεται από τις ιδιότητες dct:format ή/και dcat:mediaType της διανομής.", es: "La URL de un archivo descargable en el formato dato. Por ejemplo, archivo CSV o archivo RDF. El formato se describe con las propiedades de la distribución dct:format y/o dcat:mediaType.", fr: "Ceci est un lien direct à un fichier téléchargeable en un format donnée. Exple fichier CSV ou RDF. Le format est décrit par les propriétés de distribution dct:format et/ou dcat:mediaType.", it: "Questo è un link diretto al file scaricabile in un dato formato. E.g. un file CSV o un file RDF. Il formato è descritto dal dct:format e/o dal dcat:mediaType della distribuzione.", ja: "dcat:downloadURLはdcat:accessURLの特定の形式です。しかし、DCATプロファイルが非ダウンロード・ロケーションに対してのみaccessURLを用いる場合には、より強い分離を課すことを望む可能性があるため、この含意を強化しないように、DCATは、dcat:downloadURLをdcat:accessURLのサブプロパティーであると定義しません。"},
281
+ definition: {en: "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.", ar: "رابط مباشر لملف يمكن تحميله. نوع الملف يتم توصيفه باستخدام الخاصية dct:format dcat:mediaType ", cs: "URL souboru ke stažení v daném formátu, například CSV nebo RDF soubor. Formát je popsán vlastností distribuce dct:format a/nebo dcat:mediaType.", da: "URL til fil der kan downloades i et bestemt format. Fx en CSV-fil eller en RDF-fil. Formatet for distributionen angives ved hjælp af egenskaberne dct:format og/eller dcat:mediaType.", el: "Είναι ένας σύνδεσμος άμεσης μεταφόρτωσης ενός αρχείου σε μια δεδομένη μορφή. Π.χ. ένα αρχείο CSV ή RDF. Η μορφη αρχείου περιγράφεται από τις ιδιότητες dct:format ή/και dcat:mediaType της διανομής.", es: "La URL de un archivo descargable en el formato dato. Por ejemplo, archivo CSV o archivo RDF. El formato se describe con las propiedades de la distribución dct:format y/o dcat:mediaType.", fr: "Ceci est un lien direct à un fichier téléchargeable en un format donnée. Exple fichier CSV ou RDF. Le format est décrit par les propriétés de distribution dct:format et/ou dcat:mediaType.", it: "Questo è un link diretto al file scaricabile in un dato formato. E.g. un file CSV o un file RDF. Il formato è descritto dal dct:format e/o dal dcat:mediaType della distribuzione.", ja: "dcat:downloadURLはdcat:accessURLの特定の形式です。しかし、DCATプロファイルが非ダウンロード・ロケーションに対してのみaccessURLを用いる場合には、より強い分離を課すことを望む可能性があるため、この含意を強化しないように、DCATは、dcat:downloadURLをdcat:accessURLのサブプロパティーであると定義しません。"},
282
+ domain: "http://www.w3.org/ns/dcat#Distribution",
283
+ editorialNote: {en: "rdfs:label, rdfs:comment and/or skos:scopeNote have been modified. Non-english versions must be updated."},
284
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "dcat:downloadURL SHOULD be used for the address at which this distribution is available directly, typically through a HTTP Get request.", cs: "dcat:downloadURL BY MĚLA být použita pro adresu, ze které je distribuce přímo přístupná, typicky skrze požadavek HTTP Get.", da: "dcat:downloadURL BØR anvendes til angivelse af den adresse hvor distributionen er tilgængelig direkte, typisk gennem et HTTP Get request.", el: "Η τιμή είναι ένα URL.", es: "El valor es una URL.", fr: "La valeur est une URL.", it: "dcat:downloadURL DOVREBBE essere utilizzato per l'indirizzo a cui questa distribuzione è disponibile direttamente, in genere attraverso una richiesta Get HTTP."},
285
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
286
+ label: {en: "download URL", ar: "رابط تحميل", cs: "URL souboru ke stažení", da: "downloadURL", el: "URL μεταφόρτωσης", es: "URL de descarga", fr: "URL de téléchargement", it: "URL di scarico", ja: "ダウンロードURL"},
287
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
288
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
279
289
  property :endDate,
280
- definition: "The end of the period.".freeze,
281
- domain: "http://purl.org/dc/terms/PeriodOfTime".freeze,
282
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
283
- "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the end of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).".freeze,
284
- label: "end date".freeze,
285
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
286
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
290
+ altLabel: {da: "sluttidspunkt"},
291
+ definition: {en: "The end of the period.", cs: "Konec doby trvání.", da: "Slutningen på perioden.", es: "El fin del período.", it: "La fine del periodo."},
292
+ domain: "http://purl.org/dc/terms/PeriodOfTime",
293
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab i DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
294
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the end of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).", cs: "Obor hodnot této vlastnosti je úmyslně obecný, aby umožnil různé úrovně časového rozlišení pro specifikaci konce doby trvání. Ten může být kupříkladu vyjádřen datumem (xsd:date), datumem a časem (xsd:dateTime) či rokem (xsd:gYear).", da: "Rækkeviden for denne egenskab er bevidst generisk defineret med det formål at tillade forskellige niveauer af tidslig præcision ifm. angivelse af slutdatoen for en periode. Den kan eksempelvis udtrykkes som en dato (xsd:date), en dato og et tidspunkt (xsd:dateTime), eller et årstal (xsd:gYear).", es: "El rango de esta propiedad es intencionalmente genérico con el propósito de permitir distintos niveles de precisión temporal para especificar el fin del período. Por ejemplo, puede expresarse como una fecha (xsd:date), una fecha y un tiempo (xsd:dateTime), o un año (xsd:gYear).", it: "La range di questa proprietà è volutamente generico, con lo scopo di consentire diversi livelli di precisione temporale per specificare la fine di un periodo. Ad esempio, può essere espresso con una data (xsd:date), una data e un'ora (xsd:dateTime), o un anno (xsd:gYear)."},
295
+ label: {en: "end date", cs: "datum konce", da: "slutdato", es: "fecha final", it: "data di fine"},
296
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
297
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
287
298
  property :endpointDescription,
288
- comment: "A description of the service end-point, including its operations, parameters etc.".freeze,
289
- definition: "A description of the service end-point, including its operations, parameters etc.".freeze,
290
- domain: "http://www.w3.org/ns/dcat#DataService".freeze,
291
- "http://www.w3.org/2004/02/skos/core#changeNote": ["New property in DCAT 2.0.".freeze, "Nueva propiedad agregada en DCAT 2.0.".freeze],
292
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["An endpoint description may be expressed in a machine-readable form, such as an OpenAPI (Swagger) description, an OGC GetCapabilities response, a SPARQL Service Description, an OpenSearch or WSDL document, a Hydra API description, else in text or some other informal mode if a formal representation is not possible.".freeze, "The endpoint description gives specific details of the actual endpoint instance, while dct:conformsTo is used to indicate the general standard or specification that the endpoint implements.".freeze],
293
- label: "description of service end-point".freeze,
294
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
299
+ comment: {en: "A description of the service end-point, including its operations, parameters etc.", cs: "Popis přístupového bodu služby včetně operací, parametrů apod.", da: "En beskrivelse af det pågældende tjenesteendpoint, inklusiv dets operationer, parametre etc.", es: "Una descripción del end-point del servicio, incluyendo sus operaciones, parámetros, etc.", it: "Una descrizione dell'endpoint del servizio, incluse le sue operazioni, parametri, ecc."},
300
+ definition: {en: "A description of the service end-point, including its operations, parameters etc.", cs: "Popis přístupového bodu služby včetně operací, parametrů apod.", da: "En beskrivelse af det pågældende tjenesteendpoint, inklusiv dets operationer, parametre etc.", es: "Una descripción del end-point del servicio, incluyendo sus operaciones, parámetros, etc..", it: "Una descrizione dell'endpoint del servizio, incluse le sue operazioni, parametri, ecc."},
301
+ domain: "http://www.w3.org/ns/dcat#DataService",
302
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "Nueva propiedad agregada en DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab i DCAT 2.0.", it: "Nuova proprietà in DCAT 2.0."},
303
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The endpoint description gives specific details of the actual endpoint instance, while dct:conformsTo is used to indicate the general standard or specification that the endpoint implements.", cs: "Popis přístupového bodu může být vyjádřen ve strojově čitelné formě, například jako popis OpenAPI (Swagger), odpověď služby OGC getCapabilities, pomocí slovníku SPARQL Service Description, jako OpenSearch či WSDL document, jako popis API dle slovníku Hydra, a nebo textově nebo jiným neformálním způsobem, pokud není možno použít formální reprezentaci.", da: "Endpointbeskrivelsen giver specifikke oplysninger om den konkrete endpointinstans, mens dct:conformsTo anvendes til at indikere den overordnede standard eller specifikation som endpointet er i overensstemmelse med.", es: "Una descripción del endpoint del servicio puede expresarse en un formato que la máquina puede interpretar, tal como una descripción basada en OpenAPI (Swagger), una respuesta OGC GetCapabilities, una descripción de un servicio SPARQL, un documento OpenSearch o WSDL, una descripción con la Hydra API, o en texto u otro modo informal si la representación formal no es posible.", it: "Una descrizione dell'endpoint può essere espressa in un formato leggibile dalla macchina, come una descrizione OpenAPI (Swagger), una risposta GetCapabilities OGC, una descrizione del servizio SPARQL, un documento OpenSearch o WSDL, una descrizione API Hydra, o con del testo o qualche altra modalità informale se una rappresentazione formale non è possibile."},
304
+ label: {en: "description of service end-point", cs: "popis přístupového bodu služby", da: "endpointbeskrivelse", es: "descripción del end-point del servicio", it: "descrizione dell'endpoint del servizio"},
305
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
295
306
  property :endpointURL,
296
- comment: "The root location or primary endpoint of the service (a web-resolvable IRI).".freeze,
297
- definition: "The root location or primary endpoint of the service (a web-resolvable IRI).".freeze,
298
- domain: "http://www.w3.org/ns/dcat#DataService".freeze,
299
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property in DCAT 2.0.".freeze,
300
- label: "service end-point".freeze,
301
- range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
302
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
307
+ comment: {en: "The root location or primary endpoint of the service (a web-resolvable IRI).", cs: "Kořenové umístění nebo hlavní přístupový bod služby (IRI přístupné přes Web).", da: "Rodplaceringen eller det primære endpoint for en tjeneste (en web-resolverbar IRI).", es: "La posición raíz o end-point principal del servicio (una IRI web).", it: "La locazione principale o l'endpoint primario del servizio (un IRI risolvibile via web)."},
308
+ definition: {en: "The root location or primary endpoint of the service (a web-resolvable IRI).", cs: "Kořenové umístění nebo hlavní přístupový bod služby (IRI přístupné přes Web).", da: "Rodplaceringen eller det primære endpoint for en tjeneste (en web-resolverbar IRI).", es: "La posición raíz o end-point principal del servicio (una IRI web).", it: "La locazione principale o l'endpoint primario del servizio (un IRI risolvibile via web)."},
309
+ domain: "http://www.w3.org/ns/dcat#DataService",
310
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà in DCAT 2.0."},
311
+ label: {en: "service end-point", cs: "přístupový bod služby", da: "tjenesteendpoint", es: "end-point del servicio", it: "end-point del servizio"},
312
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
313
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
303
314
  property :hadRole,
304
- comment: "The function of an entity or agent with respect to another entity or resource.".freeze,
305
- definition: "The function of an entity or agent with respect to another entity or resource.".freeze,
315
+ comment: {en: "The function of an entity or agent with respect to another entity or resource.", cs: "Funkce entity či agenta ve vztahu k jiné entitě či zdroji.", da: "Den funktion en entitet eller aktør har i forhold til en anden ressource.", es: "La función de una entidad o agente con respecto a otra entidad o recurso.", it: "La funzione di un'entità o un agente rispetto ad un'altra entità o risorsa."},
316
+ definition: {en: "The function of an entity or agent with respect to another entity or resource.", cs: "Funkce entity či agenta ve vztahu k jiné entitě či zdroji.", da: "Den funktion en entitet eller aktør har i forhold til en anden ressource.", es: "La función de una entidad o agente con respecto a otra entidad o recurso.", it: "La funzione di un'entità o un agente rispetto ad un'altra entità o risorsa."},
306
317
  domain: term(
307
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
308
- unionOf: list("http://www.w3.org/ns/prov#Attribution".freeze, "http://www.w3.org/ns/dcat#Relationship".freeze)
318
+ type: "http://www.w3.org/2002/07/owl#Class",
319
+ unionOf: list("http://www.w3.org/ns/prov#Attribution", "http://www.w3.org/ns/dcat#Relationship")
309
320
  ),
310
- editorialNote: "Introduced into DCAT to complement prov:hadRole (whose use is limited to roles in the context of an activity, with the domain of prov:Association.".freeze,
311
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
312
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["May be used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the value be taken from a controlled vocabulary of agent roles, such as http://registry.it.csiro.au/def/isotc211/CI_RoleCode.".freeze, "May be used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the value be taken from a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.".freeze],
313
- label: "hadRole".freeze,
314
- range: "http://www.w3.org/ns/dcat#Role".freeze,
315
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
321
+ editorialNote: {en: "Introduced into DCAT to complement prov:hadRole (whose use is limited to roles in the context of an activity, with the domain of prov:Association.", cs: "Přidáno do DCAT pro doplnění vlastnosti prov:hadRole (jejíž užití je omezeno na role v kontextu aktivity, s definičním oborem prov:Association).", da: "Introduceret i DCAT for at supplere prov:hadRole (hvis anvendelse er begrænset til roller i forbindelse med en aktivitet med domænet prov:Association).", es: "Agregada en DCAT para complementar prov:hadRole (cuyo uso está limitado a roles en el contexto de una actividad, con dominio prov:Association.", it: "Introdotta in DCAT per completare prov:hadRole (il cui uso è limitato ai ruoli nel contesto di un'attività, con il dominio di prov:Association."},
322
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
323
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "May be used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the value be taken from a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.", cs: "Může být použito v kvalifikovaném vztahu pro specifikaci role Entity ve vztahu k jiné Entitě. Je doporučeno použít hodnotu z řízeného slovníku rolí entit, jako například ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode, IANA Registry of Link Relations https://www.iana.org/assignments/link-relation, DataCite metadata schema, MARC relators https://id.loc.gov/vocabulary/relators.", da: "Kan vendes ved kvalificerede krediteringer til at angive en aktørs rolle i forhold en entitet. Det anbefales at værdierne styres som et kontrolleret udfaldsrum med aktørroller, såsom http://registry.it.csiro.au/def/isotc211/CI_RoleCode.", es: "Puede usarse en una atribución cualificada para especificar el rol de una Entidad con respecto a otra Entidad. Se recomienda que su valor se tome de un vocabulario controlado de roles de entidades como por ejemplo: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; esquema de metadatos de DataCite; MARC relators https://id.loc.gov/vocabulary/relators.", it: "Può essere utilizzato in un'attribuzione qualificata per specificare il ruolo di un agente rispetto a un'entità. Si raccomanda che il valore sia preso da un vocabolario controllato di ruoli di agente, come ad esempio http://registry.it.csiro.au/def/isotc211/CI_RoleCode."},
324
+ label: {en: "hadRole", cs: "sehraná role", da: "havde rolle", it: "tiene rol"},
325
+ range: "http://www.w3.org/ns/dcat#Role",
326
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
316
327
  property :keyword,
317
- comment: "A keyword or tag describing a resource.".freeze,
318
- definition: "A keyword or tag describing a resource.".freeze,
319
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
320
- label: "keyword".freeze,
321
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
322
- subPropertyOf: "http://purl.org/dc/terms/subject".freeze,
323
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
328
+ comment: {en: "A keyword or tag describing a resource.", ar: "كلمة مفتاحيه توصف قائمة البيانات", cs: "Klíčové slovo nebo značka popisující zdroj.", da: "Et nøgleord eller tag til beskrivelse af en ressource.", el: "Μία λέξη-κλειδί ή μία ετικέτα που περιγράφει το σύνολο δεδομένων.", es: "Una palabra clave o etiqueta que describe un recurso.", fr: "Un mot-clé ou étiquette décrivant une ressource.", it: "Una parola chiave o un'etichetta per descrivere la risorsa.", ja: "データセットを記述しているキーワードまたはタグ。"},
329
+ definition: {en: "A keyword or tag describing a resource.", ar: "كلمة مفتاحيه توصف قائمة البيانات", cs: "Klíčové slovo nebo značka popisující zdroj.", da: "Et nøgleord eller tag til beskrivelse af en ressource.", el: "Μία λέξη-κλειδί ή μία ετικέτα που περιγράφει το σύνολο δεδομένων.", es: "Una palabra clave o etiqueta que describe un recurso.", fr: "Un mot-clé ou étiquette décrivant une ressource.", it: "Una parola chiave o un'etichetta per descrivere la risorsa.", ja: "データセットを記述しているキーワードまたはタグ。"},
330
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
331
+ label: {en: "keyword", ar: "كلمة مفتاحية ", cs: "klíčové slovo", da: "nøgleord", el: "λέξη-κλειδί", es: "palabra clave", fr: "mot-clés ", it: "parola chiave", ja: "キーワード/タグ"},
332
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
333
+ subPropertyOf: "http://purl.org/dc/terms/subject",
334
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
324
335
  property :landingPage,
325
- comment: "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.".freeze,
326
- definition: "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.".freeze,
327
- "http://www.w3.org/2004/02/skos/core#scopeNote": "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.".freeze,
328
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
329
- label: "landing page".freeze,
330
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
331
- subPropertyOf: "http://xmlns.com/foaf/0.1/page".freeze,
332
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
336
+ comment: {en: "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.", ar: "صفحة وب يمكن من خلالها الوصول الى قائمة البيانات أو إلى معلومات إضافية متعلقة بها ", cs: "Webová stránka, na kterou lze pro získání přístupu ke katalogu, datové sadě, jejím distribucím a/nebo dalším informacím přistoupit webovým prohlížečem.", da: "En webside som der kan navigeres til i en webbrowser for at få adgang til kataloget, et datasæt, dets distributioner og/eller yderligere information.", el: "Μία ιστοσελίδα πλοηγίσιμη μέσω ενός φυλλομετρητή (Web browser) που δίνει πρόσβαση στο σύνολο δεδομένων, τις διανομές αυτού ή/και επιπρόσθετες πληροφορίες.", es: "Una página web que puede ser visitada en un explorador Web para tener acceso el catálogo, un conjunto de datos, sus distribuciones y/o información adicional.", fr: "Une page Web accessible par un navigateur Web donnant accès au catalogue, un jeu de données, ses distributions et/ou des informations additionnelles.", it: "Una pagina web che può essere navigata per ottenere l'accesso al catalogo, ad un dataset, alle distribuzioni del dataset e/o ad informazioni addizionali.", ja: "データセット、その配信および(または)追加情報にアクセスするためにウエブ・ブラウザでナビゲートできるウェブページ。"},
337
+ definition: {en: "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.", ar: "صفحة وب يمكن من خلالها الوصول الى قائمة البيانات أو إلى معلومات إضافية متعلقة بها ", cs: "Webová stránka, na kterou lze pro získání přístupu ke katalogu, datové sadě, jejím distribucím a/nebo dalším informacím přistoupit webovým prohlížečem.", da: "En webside som en webbrowser kan navigeres til for at få adgang til kataloget, et datasæt, dets distritbutioner og/eller yderligere information.", el: "Μία ιστοσελίδα πλοηγίσιμη μέσω ενός φυλλομετρητή (Web browser) που δίνει πρόσβαση στο σύνολο δεδομένων, τις διανομές αυτού ή/και επιπρόσθετες πληροφορίες.", es: "Una página web que puede ser visitada en un explorador Web para tener acceso el catálogo, un conjunto de datos, sus distribuciones y/o información adicional.", fr: "Une page Web accessible par un navigateur Web donnant accès au catalogue, un jeu de données, ses distributions et/ou des informations additionnelles.", it: "Una pagina web che può essere navigata per ottenere l'accesso al catalogo, ad un dataset, alle distribuzioni del dataset e/o ad informazioni addizionali.", ja: "データセット、その配信および(または)追加情報にアクセスするためにウエブ・ブラウザでナビゲートできるウェブページ。"},
338
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.", cs: "Pokud je distribuce dostupná pouze přes vstupní stránku, t.j. přímý URL odkaz ke stažení není znám, URL přístupové stránky by mělo být duplikováno ve vlastnosti distribuce accessURL.", da: "Hvis en eller flere distributioner kun er tilgængelige via en destinationsside (dvs. en URL til direkte download er ikke kendt), så bør destinationssidelinket gentages som adgangsadresse for en distribution.", el: "Αν η/οι διανομή/ές είναι προσβάσιμη/ες μόνο μέσω μίας ιστοσελίδας αρχικής πρόσβασης (δηλαδή αν δεν υπάρχουν γνωστές διευθύνσεις άμεσης μεταφόρτωσης), τότε ο σύνδεσμος της ιστοσελίδας αρχικής πρόσβασης πρέπει να αναπαραχθεί ως accessURL σε μία διανομή.", es: "Si la distribución es accesible solamente través de una página de aterrizaje (i.e., no se conoce una URL de descarga directa), entonces el enlance a la página de aterrizaje debe ser duplicado como accessURL sobre la distribución.", fr: "Si la distribution est seulement accessible à travers une page d'atterrissage (exple. pas de connaissance d'URLS de téléchargement direct ), alors le lien de la page d'atterrissage doit être dupliqué comme accessURL sur la distribution.", it: "Se la distribuzione è accessibile solo attraverso una pagina di destinazione (cioè, un URL di download diretto non è noto), il link alla pagina di destinazione deve essere duplicato come accessURL sulla distribuzione.", ja: "ランディング・ページを通じてしか配信にアクセスできない場合(つまり、直接的なダウンロードURLが不明)には、配信におけるaccessURLとしてランディング・ページのリンクをコピーすべきです(SHOULD)。"},
339
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
340
+ label: {en: "landing page", ar: "صفحة وصول", cs: "vstupní stránka", da: "destinationsside", el: "ιστοσελίδα αρχικής πρόσβασης", es: "página de destino", fr: "page d'atterrissage", it: "pagina di destinazione", ja: "ランディング・ページ"},
341
+ range: "http://xmlns.com/foaf/0.1/Document",
342
+ subPropertyOf: "http://xmlns.com/foaf/0.1/page",
343
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
333
344
  property :mediaType,
334
- comment: "The media type of the distribution as defined by IANA".freeze,
335
- definition: "The media type of the distribution as defined by IANA.".freeze,
336
- domain: "http://www.w3.org/ns/dcat#Distribution".freeze,
337
- editorialNote: "Status: English Definition text modified by DCAT revision team, Italian and Czech translation provided, other translations pending. Note some inconsistency on def vs. usage.".freeze,
338
- "http://www.w3.org/2004/02/skos/core#changeNote": "The range of dcat:mediaType has been tightened as part of the revision of DCAT.".freeze,
339
- "http://www.w3.org/2004/02/skos/core#scopeNote": "This property SHOULD be used when the media type of the distribution is defined in the IANA media types registry https://www.iana.org/assignments/media-types/, otherwise dct:format MAY be used with different values.".freeze,
340
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
341
- label: "media type".freeze,
342
- range: "http://purl.org/dc/terms/MediaType".freeze,
343
- subPropertyOf: "http://purl.org/dc/terms/format".freeze,
344
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
345
+ comment: {en: "The media type of the distribution as defined by IANA", ar: "يجب استخدام هذه الخاصية إذا كان نوع الملف معرف ضمن IANA", cs: "Typ média distribuce definovaný v IANA.", da: "Medietypen for distributionen som den er defineret af IANA.", el: "Η ιδιότητα αυτή ΘΑ ΠΡΕΠΕΙ να χρησιμοποιείται όταν ο τύπος μέσου μίας διανομής είναι ορισμένος στο IANA, αλλιώς η ιδιότητα dct:format ΔΥΝΑΤΑΙ να χρησιμοποιηθεί με διαφορετικές τιμές.", es: "Esta propiedad debe ser usada cuando está definido el tipo de media de la distribución en IANA, de otra manera dct:format puede ser utilizado con diferentes valores", fr: "Cette propriété doit être utilisée quand c'est définit le type de média de la distribution en IANA, sinon dct:format DOIT être utilisé avec différentes valeurs.", it: "Il tipo di media della distribuzione come definito da IANA", ja: "このプロパティーは、配信のメディア・タイプがIANAで定義されているときに使用すべきで(SHOULD)、そうでない場合には、dct:formatを様々な値と共に使用できます(MAY)。"},
346
+ definition: {en: "The media type of the distribution as defined by IANA.", ar: "يجب استخدام هذه الخاصية إذا كان نوع الملف معرف ضمن IANA", cs: "Typ média distribuce definovaný v IANA.", da: "Medietypen for distributionen som den er defineret af IANA.", el: "Η ιδιότητα αυτή ΘΑ ΠΡΕΠΕΙ να χρησιμοποιείται όταν ο τύπος μέσου μίας διανομής είναι ορισμένος στο IANA, αλλιώς η ιδιότητα dct:format ΔΥΝΑΤΑΙ να χρησιμοποιηθεί με διαφορετικές τιμές.", es: "Esta propiedad debe ser usada cuando está definido el tipo de media de la distribución en IANA, de otra manera dct:format puede ser utilizado con diferentes valores.", fr: "Cette propriété doit être utilisée quand c'est définit le type de média de la distribution en IANA, sinon dct:format DOIT être utilisé avec différentes valeurs.", it: "Il tipo di media della distribuzione come definito da IANA.", ja: "このプロパティーは、配信のメディア・タイプがIANAで定義されているときに使用すべきで(SHOULD)、そうでない場合には、dct:formatを様々な値と共に使用できます(MAY)。"},
347
+ domain: "http://www.w3.org/ns/dcat#Distribution",
348
+ editorialNote: {en: "Status: English Definition text modified by DCAT revision team, Italian and Czech translation provided, other translations pending. Note some inconsistency on def vs. usage."},
349
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "The range of dcat:mediaType has been tightened as part of the revision of DCAT.", cs: "Obor hodnot dcat:mediaType byl zúžen v této revizi DCAT.", it: "Il range di dcat:mediaType è stato ristretto come parte della revisione di DCAT."},
350
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "This property SHOULD be used when the media type of the distribution is defined in the IANA media types registry https://www.iana.org/assignments/media-types/, otherwise dct:format MAY be used with different values.", cs: "Tato vlastnost BY MĚLA být použita, je-li typ média distribuce definován v registru IANA https://www.iana.org/assignments/media-types/. V ostatních případech MŮŽE být použita vlastnost dct:format s jinými hodnotami.", da: "Denne egenskab BØR anvendes hvis distributionens medietype optræder i 'IANA media types registry' https://www.iana.org/assignments/media-types/, ellers KAN egenskaben dct:format anvendes med et andet udfaldsrum.", es: "Esta propiedad DEBERÍA usarse cuando el 'media type' de la distribución está definido en el registro IANA de 'media types' https://www.iana.org/assignments/media-types/, de lo contrario, dct:format PUEDE usarse con distintos valores.", it: "Questa proprietà DEVE essere usata quando il tipo di media della distribuzione è definito nel registro dei tipi di media IANA https://www.iana.org/assignments/media-types/, altrimenti dct:format PUO 'essere usato con differenti valori."},
351
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
352
+ label: {en: "media type", ar: "نوع الميديا", cs: "typ média", da: "medietype", el: "τύπος μέσου", es: "tipo de media", fr: "type de média", it: "tipo di media", ja: "メディア・タイプ"},
353
+ range: "http://purl.org/dc/terms/MediaType",
354
+ subPropertyOf: "http://purl.org/dc/terms/format",
355
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
345
356
  property :packageFormat,
346
- comment: "The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.".freeze,
347
- definition: "The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.".freeze,
348
- domain: "http://www.w3.org/ns/dcat#Distribution".freeze,
349
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
350
- "http://www.w3.org/2004/02/skos/core#scopeNote": "This property to be used when the files in the distribution are packaged, e.g. in a TAR file, a Frictionless Data Package or a Bagit file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.".freeze,
351
- isDefinedBy: "https://www.w3.org/TR/vocab-dcat-2/".freeze,
352
- label: "packaging format".freeze,
353
- range: "http://purl.org/dc/terms/MediaType".freeze,
354
- subPropertyOf: "http://purl.org/dc/terms/format".freeze,
355
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
357
+ comment: {en: "The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.", cs: "Balíčkový formát souboru, ve kterém je jeden či více souborů seskupeno dohromady, např. aby bylo možné stáhnout sadu souvisejících souborů naráz.", da: "Format til pakning af data med henblik på distribution af en eller flere relaterede datafiler der samles til en enhed med henblik på samlet distribution. ", es: "El formato del archivo en que se agrupan uno o más archivos de datos, e.g. para permitir que un conjunto de archivos relacionados se bajen juntos.", it: "Il formato di impacchettamento della distribuzione in cui uno o più file di dati sono raggruppati insieme, ad es. per abilitare un insieme di file correlati da scaricare insieme."},
358
+ definition: {en: "The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.", cs: "Balíčkový formát souboru, ve kterém je jeden či více souborů seskupeno dohromady, např. aby bylo možné stáhnout sadu souvisejících souborů naráz.", es: "El formato del archivo en que se agrupan uno o más archivos de datos, e.g. para permitir que un conjunto de archivos relacionados se bajen juntos.", it: "Il formato di impacchettamento della distribuzione in cui uno o più file di dati sono raggruppati insieme, ad es. per abilitare un insieme di file correlati da scaricare insieme."},
359
+ domain: "http://www.w3.org/ns/dcat#Distribution",
360
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
361
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "This property to be used when the files in the distribution are packaged, e.g. in a TAR file, a Frictionless Data Package or a Bagit file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.", cs: "Tato vlastnost se použije, když jsou soubory v distribuci zabaleny, např. v souboru TAR, v balíčku Frictionless Data Package nebo v souboru Bagit. Formát BY MĚL být vyjádřen pomocí typu média definovaného v registru IANA https://www.iana.org/assignments/media-types/, pokud existuje.", da: "Denne egenskab kan anvendes hvis filerne i en distribution er pakket, fx i en TAR-fil, en Frictionless Data Package eller en Bagit-fil. Formatet BØR udtrykkes ved en medietype som defineret i 'IANA media types registry', hvis der optræder en relevant medietype dér: https://www.iana.org/assignments/media-types/.", es: "Esta propiedad se debe usar cuando los archivos de la distribución están empaquetados, por ejemplo en un archivo TAR, Frictionless Data Package o Bagit. El formato DEBERÍA expresarse usando un 'media type', tales como los definidos en el registro IANA de 'media types' https://www.iana.org/assignments/media-types/, si está disponibles.", it: "Questa proprietà deve essere utilizzata quando i file nella distribuzione sono impacchettati, ad esempio in un file TAR, Frictionless Data Package o Bagit. Il formato DOVREBBE essere espresso utilizzando un tipo di supporto come definito dal registro dei tipi di media IANA https://www.iana.org/assignments/media-types/, se disponibili."},
362
+ isDefinedBy: "https://www.w3.org/TR/vocab-dcat-2/",
363
+ label: {en: "packaging format", cs: "formát balíčku", da: "pakkeformat", es: "formato de empaquetado", it: "formato di impacchettamento"},
364
+ range: "http://purl.org/dc/terms/MediaType",
365
+ subPropertyOf: "http://purl.org/dc/terms/format",
366
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
356
367
  property :qualifiedRelation,
357
- comment: "Link to a description of a relationship with another resource.".freeze,
358
- definition: "Link to a description of a relationship with another resource.".freeze,
359
- domain: "http://www.w3.org/ns/dcat#Resource".freeze,
360
- editorialNote: "Introduced into DCAT to complement the other PROV qualified relations. ".freeze,
361
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
362
- "http://www.w3.org/2004/02/skos/core#scopeNote": "Used to link to another resource where the nature of the relationship is known but does not match one of 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).".freeze,
363
- label: "qualified relation".freeze,
364
- range: "http://www.w3.org/ns/dcat#Relationship".freeze,
365
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
368
+ comment: {en: "Link to a description of a relationship with another resource.", cs: "Odkaz na popis vztahu s jiným zdrojem.", da: "Reference til en beskrivelse af en relation til en anden ressource.", es: "Enlace a una descripción de la relación con otro recurso.", it: "Link a una descrizione di una relazione con un'altra risorsa."},
369
+ definition: {en: "Link to a description of a relationship with another resource.", cs: "Odkaz na popis vztahu s jiným zdrojem.", da: "Reference til en beskrivelse af en relation til en anden ressource.", es: "Enlace a una descripción de la relación con otro recurso.", it: "Link a una descrizione di una relazione con un'altra risorsa."},
370
+ domain: "http://www.w3.org/ns/dcat#Resource",
371
+ editorialNote: {en: "Introduced into DCAT to complement the other PROV qualified relations. ", cs: "Přidáno do DCAT k doplnění jiných kvalifikovaných vztahů ze slovníku PROV.", da: "Introduceret i DCAT med henblik på at supplere de øvrige kvalificerede relationer fra PROV. ", es: "Se incluyó en DCAT para complementar las relaciones calificadas disponibles en PROV.", it: "Introdotta in DCAT per integrare le altre relazioni qualificate di PROV."},
372
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Propiedad nueva añadida en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
373
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "Used to link to another resource where the nature of the relationship is known but does not match one of 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).", cs: "Použito pro odkazování na jiný zdroj, kde druh vztahu je znám, ale neodpovídá standardním vlastnostem ze 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 slovníku PROV-O (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf).", da: "Anvendes til at referere til en anden ressource hvor relationens betydning er kendt men ikke matcher en af de standardiserede egenskaber fra 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).", es: "Se usa para asociar con otro recurso para el cuál la naturaleza de la relación es conocida pero no es ninguna de las propiedades que provee el 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).", it: "Viene utilizzato per associarsi a un'altra risorsa nei casi per i quali la natura della relazione è nota ma non è alcuna delle proprietà fornite dallo 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 proprietà fornite da PROV-O (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom , prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf)."},
374
+ label: {en: "qualified relation", cs: "kvalifikovaný vztah", da: "Kvalificeret relation", es: "relación calificada", it: "relazione qualificata"},
375
+ range: "http://www.w3.org/ns/dcat#Relationship",
376
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
366
377
  property :record,
367
- comment: "A record describing the registration of a single dataset or data service that is part of the catalog.".freeze,
368
- definition: "A record describing the registration of a single dataset or data service that is part of the catalog.".freeze,
369
- domain: "http://www.w3.org/ns/dcat#Catalog".freeze,
370
- editorialNote: "Status: English, Italian, Spanish and Czech Definitions modified by DCAT revision team, other translations pending.".freeze,
371
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
372
- label: "record".freeze,
373
- range: "http://www.w3.org/ns/dcat#CatalogRecord".freeze,
374
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
378
+ altLabel: {da: "har post"},
379
+ comment: {en: "A record describing the registration of a single dataset or data service that is part of the catalog.", ar: "تربط الفهرس بسجل ضمنه", cs: "Záznam popisující registraci jedné datové sady či datové služby jakožto součásti katalogu.", da: "En post der beskriver registreringen af et enkelt datasæt eller en datatjeneste som er opført i kataloget.", el: "Συνδέει έναν κατάλογο με τις καταγραφές του.", es: "Describe la registración de un conjunto de datos o un servicio de datos en el catálogo.", fr: "Relie un catalogue à ses registres.", it: "Un record che descrive la registrazione di un singolo set di dati o di un servizio dati che fa parte del catalogo.", ja: "カタログの一部であるカタログ・レコード。"},
380
+ definition: {en: "A record describing the registration of a single dataset or data service that is part of the catalog.", ar: "تربط الفهرس بسجل ضمنه", cs: "Záznam popisující registraci jedné datové sady či datové služby jakožto součásti katalogu.", da: "En post der beskriver registreringen af et enkelt datasæt eller en datatjeneste som er opført i kataloget.", el: "Συνδέει έναν κατάλογο με τις καταγραφές του.", es: "Describe la registración de un conjunto de datos o un servicio de datos en el catálogo.", fr: "Relie un catalogue à ses registres.", it: "Un record che descrive la registrazione di un singolo set di dati o di un servizio dati che fa parte del catalogo.", ja: "カタログの一部であるカタログ・レコード。"},
381
+ domain: "http://www.w3.org/ns/dcat#Catalog",
382
+ editorialNote: {en: "Status: English, Italian, Spanish and Czech Definitions modified by DCAT revision team, other translations pending."},
383
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
384
+ label: {en: "record", ar: "سجل", cs: "záznam", da: "post", el: "καταγραφή", es: "registro", fr: "registre", it: "record", ja: "カタログ・レコード"},
385
+ range: "http://www.w3.org/ns/dcat#CatalogRecord",
386
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
375
387
  property :servesDataset,
376
- comment: "A collection of data that this DataService can distribute.".freeze,
377
- definition: "A collection of data that this DataService can distribute.".freeze,
378
- domain: "http://www.w3.org/ns/dcat#DataService".freeze,
379
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property in DCAT 2.0.".freeze,
380
- label: "serves dataset".freeze,
381
- range: "http://www.w3.org/ns/dcat#Dataset".freeze,
382
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
388
+ altLabel: {da: "ekspederer"},
389
+ comment: {en: "A collection of data that this DataService can distribute.", cs: "Kolekce dat, kterou je tato Datová služba schopna poskytnout.", da: "En samling af data som denne datatjeneste kan distribuere.", es: "Una colección de datos que este Servicio de Datos puede distribuir.", it: "Una raccolta di dati che questo DataService può distribuire."},
390
+ definition: {en: "A collection of data that this DataService can distribute.", cs: "Kolekce dat, kterou je tato Datová služba schopna poskytnout.", da: "En samling af data som denne datatjeneste kan distribuere.", es: "Una colección de datos que este Servicio de Datos puede distribuir.", it: "Una raccolta di dati che questo DataService può distribuire."},
391
+ domain: "http://www.w3.org/ns/dcat#DataService",
392
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà in DCAT 2.0."},
393
+ label: {en: "serves dataset", cs: "poskytuje datovou sadu", da: "datatjeneste for datasæt", es: "provee conjunto de datos", it: "serve set di dati"},
394
+ range: "http://www.w3.org/ns/dcat#Dataset",
395
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
383
396
  property :service,
384
- comment: "A site or endpoint that is listed in the catalog.".freeze,
385
- definition: "A site or endpoint that is listed in the catalog.".freeze,
386
- domain: "http://www.w3.org/ns/dcat#Catalog".freeze,
387
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
388
- label: "service".freeze,
389
- range: "http://www.w3.org/ns/dcat#DataService".freeze,
390
- subPropertyOf: ["http://purl.org/dc/terms/hasPart".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze],
391
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
397
+ altLabel: {da: "har datatjeneste"},
398
+ comment: {en: "A site or endpoint that is listed in the catalog.", cs: "Umístění či přístupový bod registrovaný v katalogu.", da: "Et websted eller et endpoint som er opført i kataloget.", es: "Un sitio o 'endpoint' que está listado en el catálogo.", it: "Un sito o endpoint elencato nel catalogo."},
399
+ definition: {en: "A site or endpoint that is listed in the catalog.", cs: "Umístění či přístupový bod registrovaný v katalogu.", da: "Et websted eller et endpoint som er opført i kataloget.", es: "Un sitio o 'endpoint' que está listado en el catálogo.", it: "Un sito o endpoint elencato nel catalogo."},
400
+ domain: "http://www.w3.org/ns/dcat#Catalog",
401
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", es: "Nueva propiedad añadida en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
402
+ label: {en: "service", cs: "služba", da: "datatjeneste", es: "servicio", it: "servizio"},
403
+ range: "http://www.w3.org/ns/dcat#DataService",
404
+ subPropertyOf: ["http://purl.org/dc/terms/hasPart", "http://www.w3.org/2000/01/rdf-schema#member"],
405
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
392
406
  property :spatialResolutionInMeters,
393
- comment: ["minimum spatial separation resolvable in a dataset, measured in meters.".freeze, "minimum spatial separation resolvable in a dataset, measured in metres.".freeze],
394
- definition: ["minimum spatial separation resolvable in a dataset, measured in meters.".freeze, "minimum spatial separation resolvable in a dataset, measured in metres.".freeze],
395
- editorialNote: "Might appear in the description of a Dataset or a Distribution, so no domain is specified.".freeze,
396
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
397
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["Alternative spatial resolutions might be provided as different dataset distributions.".freeze, "If the dataset is an image or grid this should correspond to the spacing of items. For other kinds of spatial dataset, this property will usually indicate the smallest distance between items in the dataset.".freeze],
398
- label: ["spatial resolution (meters)".freeze, "spatial resolution (metres)".freeze],
399
- range: "http://www.w3.org/2001/XMLSchema#decimal".freeze,
400
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
407
+ comment: {cs: "minimální prostorový rozestup rozeznatelný v datové sadě, měřeno v metrech.", da: "mindste geografiske afstand som kan erkendes i et datasæt, målt i meter.", "en-gb": "minimum spatial separation resolvable in a dataset, measured in metres.", "en-us": "minimum spatial separation resolvable in a dataset, measured in meters.", es: "mínima separacíon espacial disponible en un conjunto de datos, medida en metros.", it: "separazione spaziale minima risolvibile in un set di dati, misurata in metri."},
408
+ definition: {cs: "minimální prostorový rozestup rozeznatelný v datové sadě, měřeno v metrech.", da: "mindste geografiske afstand som kan resolveres i et datasæt, målt i meter.", "en-gb": "minimum spatial separation resolvable in a dataset, measured in metres.", "en-us": "minimum spatial separation resolvable in a dataset, measured in meters.", es: "mínima separacíon espacial disponible en un conjunto de datos, medida en metros.", it: "separazione spaziale minima risolvibile in un set di dati, misurata in metri."},
409
+ editorialNote: {en: "Might appear in the description of a Dataset or a Distribution, so no domain is specified.", cs: "Může se vyskytnout v popisu Datové sady nebo Distribuce, takže nebyl specifikován definiční obor.", da: "Kan optræde i forbindelse med beskrivelse af datasættet eller datasætditributionen, så der er ikke angivet et domæne for egenskaben."},
410
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny genskab tilføjet i DCAT 2.0.", es: "Nueva propiedad añadida en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
411
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "If the dataset is an image or grid this should correspond to the spacing of items. For other kinds of spatial dataset, this property will usually indicate the smallest distance between items in the dataset.", cs: "Různá prostorová rozlišení mohou být poskytována jako různé distribuce datové sady.", da: "Hvis datasættet udgøres af et billede eller et grid, så bør dette svare til afstanden mellem elementerne. For andre typer af spatiale datasæt, vil denne egenskab typisk indikere den mindste afstand mellem elementerne i datasættet.", es: "Si el conjunto de datos es una imágen o grilla, esta propiedad corresponde al espaciado de los elementos. Para otro tipo de conjunto de datos espaciales, esta propieda usualmente indica la menor distancia entre los elementos de dichos datos.", it: "Se il set di dati è un'immagine o una griglia, questo dovrebbe corrispondere alla spaziatura degli elementi. Per altri tipi di set di dati spaziali, questa proprietà di solito indica la distanza minima tra gli elementi nel set di dati."},
412
+ label: {cs: "prostorové rozlišení (metry)", da: "geografisk opløsning (meter)", "en-gb": "spatial resolution (metres)", "en-us": "spatial resolution (meters)", es: "resolución espacial (metros)", it: "risoluzione spaziale (metros)"},
413
+ range: "http://www.w3.org/2001/XMLSchema#decimal",
414
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
401
415
  property :startDate,
402
- definition: "The start of the period".freeze,
403
- domain: "http://purl.org/dc/terms/PeriodOfTime".freeze,
404
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
405
- "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the start of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).".freeze,
406
- label: "start date".freeze,
407
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
408
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
416
+ altLabel: {da: "starttidspunkt"},
417
+ definition: {en: "The start of the period", cs: "Začátek doby trvání", da: "Start på perioden.", es: "El comienzo del período", it: "L'inizio del periodo"},
418
+ domain: "http://purl.org/dc/terms/PeriodOfTime",
419
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", da: "Ny egenskab tilføjet i DCAT 2.0.", es: "Nueva propiedad agregada en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
420
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the start of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).", cs: "Obor hodnot této vlastnosti je úmyslně obecný, aby umožnil různé úrovně časového rozlišení pro specifikaci začátku doby trvání. Ten může být kupříkladu vyjádřen datumem (xsd:date), datumem a časem (xsd:dateTime) či rokem (xsd:gYear).", da: "Rækkeviden for denne egenskab er bevidst generisk defineret med det formål at tillade forskellige niveauer af tidslig præcision ifm. angivelse af startdatoen for en periode. Den kan eksempelvis udtrykkes som en dato (xsd:date), en dato og et tidspunkt (xsd:dateTime), eller et årstal (xsd:gYear).", es: "El rango de esta propiedad es intencionalmente genérico con el propósito de permitir distintos niveles de precisión temporal para especificar el comienzo de un período. Por ejemplo, puede expresarse como una fecha (xsd:date), una fecha y un tiempo (xsd:dateTime), o un año (xsd:gYear).", it: "Il range di questa proprietà è volutamente generico, con lo scopo di consentire diversi livelli di precisione temporale per specificare l'inizio di un periodo. Ad esempio, può essere espresso con una data (xsd:date), una data e un'ora (xsd:dateTime), o un anno (xsd:gYear)."},
421
+ label: {en: "start date", cs: "datum začátku", da: "startdato", it: "data di inizio"},
422
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
423
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
409
424
  property :temporalResolution,
410
- comment: "minimum time period resolvable in a dataset.".freeze,
411
- definition: "minimum time period resolvable in a dataset.".freeze,
412
- editorialNote: "Might appear in the description of a Dataset or a Distribution, so no domain is specified.".freeze,
413
- "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze,
414
- "http://www.w3.org/2004/02/skos/core#scopeNote": ["Alternative temporal resolutions might be provided as different dataset distributions.".freeze, "If the dataset is a time-series this should correspond to the spacing of items in the series. For other kinds of dataset, this property will usually indicate the smallest time difference between items in the dataset.".freeze],
415
- label: "temporal resolution".freeze,
416
- range: "http://www.w3.org/2001/XMLSchema#duration".freeze,
417
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
425
+ comment: {en: "minimum time period resolvable in a dataset.", cs: "minimální doba trvání rozlišitelná v datové sadě.", da: "mindste tidsperiode der kan resolveres i datasættet.", es: "período de tiempo mínimo en el conjunto de datos.", it: "periodo di tempo minimo risolvibile in un set di dati."},
426
+ definition: {en: "minimum time period resolvable in a dataset.", cs: "minimální doba trvání rozlišitelná v datové sadě.", da: "mindste tidsperiode der kan resolveres i datasættet.", es: "período de tiempo mínimo en el conjunto de datos.", it: "periodo di tempo minimo risolvibile in un set di dati."},
427
+ editorialNote: {en: "Might appear in the description of a Dataset or a Distribution, so no domain is specified.", cs: "Může se vyskytnout v popisu Datové sady nebo Distribuce, takže nebyl specifikován definiční obor.", da: "Kan optræde i forbindelse med beskrivelse af datasættet eller datasætditributionen, så der er ikke angivet et domæne for egenskaben."},
428
+ "http://www.w3.org/2004/02/skos/core#changeNote": {en: "New property added in DCAT 2.0.", cs: "Nová vlastnost přidaná ve verzi DCAT 2.0.", es: "Nueva propiedad añadida en DCAT 2.0.", it: "Nuova proprietà aggiunta in DCAT 2.0."},
429
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "If the dataset is a time-series this should correspond to the spacing of items in the series. For other kinds of dataset, this property will usually indicate the smallest time difference between items in the dataset.", cs: "Různá časová rozlišení mohou být poskytována jako různé distribuce datové sady.", da: "Hvis datasættet er en tidsserie, så bør denne egenskab svare til afstanden mellem elementerne i tidsserien. For andre typer af datasæt indikerer denne egenskab den mindste tidsforskel mellem elementer i datasættet.", es: "Si el conjunto de datos es una serie temporal, debe corresponder al espaciado de los elementos de la serie. Para otro tipo de conjuntos de datos, esta propiedad indicará usualmente la menor diferencia de tiempo entre elementos en el dataset.", it: "Se il set di dati è una serie temporale, questo dovrebbe corrispondere alla spaziatura degli elementi della serie. Per altri tipi di set di dati, questa proprietà di solito indica la più piccola differenza di tempo tra gli elementi nel set di dati."},
430
+ label: {en: "temporal resolution", cs: "časové rozlišení", da: "tidslig opløsning", es: "resolución temporal", it: "risoluzione temporale"},
431
+ range: "http://www.w3.org/2001/XMLSchema#duration",
432
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
418
433
  property :theme,
419
- comment: "A main category of the resource. A resource can have multiple themes.".freeze,
420
- definition: "A main category of the resource. A resource can have multiple themes.".freeze,
421
- editorialNote: "Status: English Definition text modified by DCAT revision team, all except for Italian and Czech translations are pending.".freeze,
422
- "http://www.w3.org/2004/02/skos/core#scopeNote": "The set of skos:Concepts used to categorize the resources are organized in a skos:ConceptScheme describing all the categories and their relations in the catalog.".freeze,
423
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
424
- label: "theme".freeze,
425
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
426
- subPropertyOf: "http://purl.org/dc/terms/subject".freeze,
427
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
434
+ altLabel: {da: "tema"},
435
+ comment: {en: "A main category of the resource. A resource can have multiple themes.", ar: "التصنيف الرئيسي لقائمة البيانات. قائمة البيانات يمكن أن تملك أكثر من تصنيف رئيسي واحد.", cs: "Hlavní téma zdroje. Zdroj může mít více témat.", da: "Et centralt emne for ressourcen. En ressource kan have flere centrale emner.", el: "Η κύρια κατηγορία του συνόλου δεδομένων. Ένα σύνολο δεδομένων δύναται να έχει πολλαπλά θέματα.", es: "La categoría principal del recurso. Un recurso puede tener varios temas.", fr: "La catégorie principale de la ressource. Une ressource peut avoir plusieurs thèmes.", it: "La categoria principale della risorsa. Una risorsa può avere più temi.", ja: "データセットの主要カテゴリー。データセットは複数のテーマを持つことができます。"},
436
+ definition: {en: "A main category of the resource. A resource can have multiple themes.", ar: "التصنيف الرئيسي لقائمة البيانات. قائمة البيانات يمكن أن تملك أكثر من تصنيف رئيسي واحد.", cs: "Hlavní téma zdroje. Zdroj může mít více témat.", da: "Et centralt emne for ressourcen. En ressource kan have flere centrale emner.", el: "Η κύρια κατηγορία του συνόλου δεδομένων. Ένα σύνολο δεδομένων δύναται να έχει πολλαπλά θέματα.", es: "La categoría principal del recurso. Un recurso puede tener varios temas.", fr: "La catégorie principale de la ressource. Une ressource peut avoir plusieurs thèmes.", it: "La categoria principale della risorsa. Una risorsa può avere più temi.", ja: "データセットの主要カテゴリー。データセットは複数のテーマを持つことができます。"},
437
+ editorialNote: {en: "Status: English Definition text modified by DCAT revision team, all except for Italian and Czech translations are pending."},
438
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "The set of skos:Concepts used to categorize the resources are organized in a skos:ConceptScheme describing all the categories and their relations in the catalog.", cs: "Sada instancí třídy skos:Concept použitá pro kategorizaci zdrojů je organizována do schématu konceptů skos:ConceptScheme, které popisuje všechny kategorie v katalogu a jejich vztahy.", da: "Samlingen af begreber (skos:Concept) der anvendes til at emneinddele ressourcer organiseres i et begrebssystem (skos:ConceptScheme) som beskriver alle emnerne og deres relationer i kataloget.", el: "Το σετ των skos:Concepts που χρησιμοποιείται για να κατηγοριοποιήσει τα σύνολα δεδομένων είναι οργανωμένο εντός ενός skos:ConceptScheme που περιγράφει όλες τις κατηγορίες και τις σχέσεις αυτών στον κατάλογο.", es: "El conjunto de skos:Concepts utilizados para categorizar los recursos están organizados en un skos:ConceptScheme que describe todas las categorías y sus relaciones en el catálogo.", fr: "Un ensemble de skos:Concepts utilisés pour catégoriser les ressources sont organisés en un skos:ConceptScheme décrivant toutes les catégories et ses relations dans le catalogue.", it: "Il set di concetti skos usati per categorizzare le risorse sono organizzati in skos:ConceptScheme che descrive tutte le categorie e le loro relazioni nel catalogo.", ja: "データセットを分類するために用いられるskos:Conceptの集合は、カタログのすべてのカテゴリーとそれらの関係を記述しているskos:ConceptSchemeで組織化されます。"},
439
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
440
+ label: {en: "theme", ar: "التصنيف", cs: "téma", da: "emne", el: "Θέμα", es: "tema", fr: "thème", it: "tema", ja: "テーマ/カテゴリー"},
441
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
442
+ subPropertyOf: "http://purl.org/dc/terms/subject",
443
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
428
444
  property :themeTaxonomy,
429
- comment: "The knowledge organization system (KOS) used to classify catalog's datasets.".freeze,
430
- definition: "The knowledge organization system (KOS) used to classify catalog's datasets.".freeze,
431
- domain: "http://www.w3.org/ns/dcat#Catalog".freeze,
432
- "http://www.w3.org/2004/02/skos/core#scopeNote": "It is recommended that the taxonomy is organized in a skos:ConceptScheme, skos:Collection, owl:Ontology or similar, which allows each member to be denoted by an IRI and published as linked-data.".freeze,
433
- isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze,
434
- label: "theme taxonomy".freeze,
435
- range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
436
- rangeIncludes: ["http://www.w3.org/2002/07/owl#Ontology".freeze, "http://www.w3.org/2004/02/skos/core#Collection".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze],
437
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
445
+ altLabel: {da: "temataksonomi"},
446
+ comment: {en: "The knowledge organization system (KOS) used to classify catalog's datasets.", ar: "لائحة التصنيفات المستخدمه لتصنيف قوائم البيانات ضمن الفهرس", cs: "Systém organizace znalostí (KOS) použitý pro klasifikaci datových sad v katalogu.", da: "Vidensorganiseringssystem (KOS) som anvendes til at klassificere datasæt i kataloget.", el: "Το σύστημα οργάνωσης γνώσης που χρησιμοποιείται για την κατηγοριοποίηση των συνόλων δεδομένων του καταλόγου.", es: "El sistema de organización del conocimiento utilizado para clasificar conjuntos de datos de catálogos.", fr: "Le systhème d'ogranisation de connaissances utilisé pour classifier les jeux de données du catalogue.", it: "Il sistema di organizzazione della conoscenza (KOS) usato per classificare i dataset del catalogo.", ja: "カタログのデータセットを分類するために用いられる知識組織化体系(KOS;knowledge organization system)。"},
447
+ definition: {en: "The knowledge organization system (KOS) used to classify catalog's datasets.", ar: "لائحة التصنيفات المستخدمه لتصنيف قوائم البيانات ضمن الفهرس", cs: "Systém organizace znalostí (KOS) použitý pro klasifikaci datových sad v katalogu.", da: "Vidensorganiseringssystem (KOS) som anvendes til at klassificere datasæt i kataloget.", el: "Το σύστημα οργάνωσης γνώσης που χρησιμοποιείται για την κατηγοριοποίηση των συνόλων δεδομένων του καταλόγου.", es: "El sistema de organización del conocimiento utilizado para clasificar conjuntos de datos de catálogos.", fr: "Le systhème d'ogranisation de connaissances utilisé pour classifier les jeux de données du catalogue.", it: "Il sistema di organizzazione della conoscenza (KOS) usato per classificare i dataset del catalogo.", ja: "カタログのデータセットを分類するために用いられる知識組織化体系(KOS;knowledge organization system)。"},
448
+ domain: "http://www.w3.org/ns/dcat#Catalog",
449
+ "http://www.w3.org/2004/02/skos/core#scopeNote": {en: "It is recommended that the taxonomy is organized in a skos:ConceptScheme, skos:Collection, owl:Ontology or similar, which allows each member to be denoted by an IRI and published as linked-data.", cs: "Je doporučeno, aby byla taxonomie vyjádřena jako skos:ConceptScheme, skos:Collection, owl:Ontology nebo podobné, aby mohla být každá položka identifikována pomocí IRI a publikována jako propojená data.", da: "Det anbefales at taksonomien organiseres i et skos:ConceptScheme, skos:Collection, owl:Ontology eller lignende, som giver mulighed for at ethvert medlem af taksonomien kan forsynes med en IRI og udgives som linked-data.", es: "Se recomienda que la taxonomía se organice como un skos:ConceptScheme, skos:Collection, owl:Ontology o similar, los cuáles permiten que cada miembro se denote con una IRI y se publique como datos enlazados.", it: "Si raccomanda che la tassonomia sia organizzata in uno skos:ConceptScheme, skos:Collection, owl:Ontology o simili, che permette ad ogni membro di essere indicato da un IRI e pubblicato come linked-data."},
450
+ isDefinedBy: "http://www.w3.org/TR/vocab-dcat/",
451
+ label: {en: "theme taxonomy", ar: "قائمة التصنيفات", cs: "taxonomie témat", da: "emnetaksonomi", el: "Ταξινομία θεματικών κατηγοριών.", es: "taxonomía de temas", fr: "taxonomie de thèmes", it: "tassonomia dei temi", ja: "テーマ"},
452
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource",
453
+ rangeIncludes: ["http://www.w3.org/2002/07/owl#Ontology", "http://www.w3.org/2004/02/skos/core#Collection", "http://www.w3.org/2004/02/skos/core#ConceptScheme"],
454
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
438
455
  end
439
456
  end