forked from ontoportal/ontologies_linked_data
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathontology_submission.yml
1545 lines (1416 loc) · 72.6 KB
/
ontology_submission.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
###Template
#propname:
# display: "general" /
# label: ""
# helpText: ""
# example: ''
# description: [
# "ACRO: description.",
# "ACRO: description." ]
# extractedMetadata: true / false
# enforcedValues: {
# "..",
# ".." }
# metadataMappings: [ "ns:propname", ".." ]
# AgroPortal properties ordered as MOD file
### General
#Acronym => Ontology object (omv:acronym)
#Name => Ontology object (omv:name)
#URI
URI:
display: "general"
label: "URI"
helpText: "The URI of the ontology which is described by these metadata."
example: 'https://w3id.org/myontology'
description: [
"OMV: The URI of the ontology which is described by these metadata.",
"MOD: The Unique Resoource Identifier of this ontology, assigned by responsible authority."]
extractedMetadata: true
metadataMappings: [ "mod:URI", "omv:URI" ]
#Version IRI
versionIRI:
display: "general"
label: "Version IRI"
helpText: "The property that identifies the version IRI of an ontology."
example: 'https://w3id.org/myontology/3.2.0'
description: [
"OWL: The property that identifies the version IRI of an ontology." ]
extractedMetadata: true
#Version information
version:
display: 'general'
label: "Version information"
helpText: "The version information of the ontology."
example: "v.3.2.0"
description: [
"OMV: The version information of the ontology.",
"MOD: The current version of the ontology. Possibly using Semantic versioning.",
"OWL: The annotation property that provides version information for an ontology or another OWL construct. ",
"PAV: The version number of a resource.",
"DOAP: A project release",
"SCHEMA: The version of the CreativeWork embodied by a specified resource."]
extractedMetadata: true
metadataMappings: [ "omv:version", "mod:version", "owl:versionInfo", "pav:version", "doap:release", "schema:version", "oboInOwl:data-version", "oboInOwl:version" ]
#Status
status:
display: "general"
label: "Status"
helpText: "The status of the current version of the ontology (alpha, beta, production, retired)."
example: 'production'
description: [
"MOD: The status of the current version of the ontology (alpha, beta, production, retired).",
"OMV: It specifies the tracking information for the contents of the ontology. Pre-defined values.",
"IDOT: State of a resource (physical location providing access to data or information about the identified entity). This should be based on a recent manual or automatic check of the resource. Possible values are: 'up', 'down', 'probably up', 'obsolete resource', 'restricted access' and 'unknown'.",
"ADMS : Links to the status of the Asset or Asset Distribution in the context of a particular workflow process. Since Status is defined using a skos:Concept, that is the defined range for this property." ]
extractedMetadata: true
enforcedValues: [
"alpha",
"beta",
"production",
"retired" ]
metadataMappings: [ "omv:status", "mod:status", "adms:status", "idot:state" ]
#Deprecated
deprecated:
display: "general"
label: "Deprecated"
helpText: "The annotation property that indicates that a given entity has been deprecated."
example: 'false'
description: [
"OWL: The annotation property that indicates that a given entity has been deprecated.",
"MOD: The classes and properties of an ontology that are no longer in use.",
"IDOT: Indicates if the current dataset is obsolete (not provided any more to the public community). Value can either be 'true' or 'false' (xsd:boolean). The statement is usually omitted if 'false'.",
"DCAT: An annotation with the owl:deprecated annotation property and the value equal to \"true\"^^xsd:boolean can be used to specify that an IRI is deprecated" ]
extractedMetadata: true
enforcedValues: [
"true",
"false" ]
metadataMappings: [ "owl:deprecated", "mod:obsolete", "idot:obsolete" ]
#Representation language
hasOntologyLanguage:
display: "general"
label: "Representation language"
helpText: "The ontology language."
description: [
"MOD: A representation language that is used to create an ontology (e.g., OWL, RDF-S, SKOS).",
"OMV: The ontology language.",
"SCHEMA : Media type, typically MIME format (see IANA site) of the content." ]
extractedMetadata: false
enforcedValues: [
"OBO",
"OWL",
"SKOS",
"UMLS" ]
metadataMappings: [ "mod:hasRepresentationLanguage", "omv:hasOntologyLanguage", "schema:fileFormat" ]
#Formality level
hasFormalityLevel:
display: "general"
label: "Formality level"
helpText: "Level of formality of the ontology."
description: [
"MOD: The level of formality of an ontology (as defined by the NKOS KOS Types Vocabulary).",
"OMV: Level of formality of the ontology." ]
extractedMetadata: true
enforcedValues: {
"http://w3id.org/nkos/nkostype#classification_schema": "Classification scheme",
"http://w3id.org/nkos/nkostype#dictionary": "Dictionary",
"http://w3id.org/nkos/nkostype#gazetteer": "Gazetteer",
"http://w3id.org/nkos/nkostype#glossary": "Glossary",
"http://w3id.org/nkos/nkostype#list": "List",
"http://w3id.org/nkos/nkostype#name_authority_list": "Name authority list",
"http://w3id.org/nkos/nkostype#ontology": "Ontology",
"http://w3id.org/nkos/nkostype#semantic_network": "Semantic network",
"http://w3id.org/nkos/nkostype#subject_heading_scheme": "Subject heading scheme",
"http://w3id.org/nkos/nkostype#synonym_ring": "Synonym ring",
"http://w3id.org/nkos/nkostype#taxonomy": "Taxonomy",
"http://w3id.org/nkos/nkostype#terminology": "Terminology",
"http://w3id.org/nkos/nkostype#thesaurus": "Thesaurus"
}
metadataMappings: [ "omv:hasFormalityLevel", "mod:formalityLevel" ]
#Syntax
hasOntologySyntax:
display: "general"
label: "Syntax"
helpText: "The presentation syntax for the ontology langage."
description: [
"MOD: The syntax of this current ontology distribution (as defined by W3C formats).",
"OMV: The presentation syntax for the ontology langage.",
"DCTERMS : The file format, physical medium, or dimensions of the resource." ]
extractedMetadata: true
enforcedValues: {
"http://www.w3.org/ns/formats/JSON-LD": "JSON-LD",
"http://www.w3.org/ns/formats/N3": "N3",
"http://www.w3.org/ns/formats/N-Quads": "N-Quads",
"http://www.w3.org/ns/formats/LD_Patch": "LD Patch",
"http://www.w3.org/ns/formats/microdata": "Microdata",
"http://www.w3.org/ns/formats/OWL_XML": "OWL XML Serialization",
"http://www.w3.org/ns/formats/OWL_Functional": "OWL Functional Syntax",
"http://www.w3.org/ns/formats/OWL_Manchester": "OWL Manchester Syntax",
"http://www.w3.org/ns/formats/POWDER": "POWDER",
"http://www.w3.org/ns/formats/POWDER-S": "POWDER-S",
"http://www.w3.org/ns/formats/PROV-N": "PROV-N",
"http://www.w3.org/ns/formats/PROV-XML": "PROV-XML",
"http://www.w3.org/ns/formats/RDFa": "RDFa",
"http://www.w3.org/ns/formats/RDF_JSON": "RDF/JSON",
"http://www.w3.org/ns/formats/RDF_XML": "RDF/XML",
"http://www.w3.org/ns/formats/RIF_XML": "RIF XML Syntax",
"http://www.w3.org/ns/formats/Turtle": "Turtle",
"http://www.w3.org/ns/formats/TriG": "TriG",
"http://purl.obolibrary.org/obo/oboformat/spec.html": "OBO"
}
metadataMappings: [ "omv:hasOntologySyntax", "mod:hasSyntax", "dc:format", "dcterms:format" ]
#Natural language
naturalLanguage:
display: "general"
label: "Natural language"
helpText: "The language of the content of the ontology (with values in Lexvo/iso639-1)."
description: [
"DCTERMS: A language of the resource. Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 language tag.",
"OMV: The language of the content of the ontology, i.e. English, French, etc.",
"DOAP: ISO language code a project has been translated into.",
"SCHEMA: The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard." ]
extractedMetadata: true
enforcedValues: {
"http://lexvo.org/id/iso639-1/en": "English",
"http://lexvo.org/id/iso639-1/fr": "French",
"http://lexvo.org/id/iso639-1/es": "Spanish",
"http://lexvo.org/id/iso639-1/pt": "Portuguese",
"http://lexvo.org/id/iso639-1/it": "Italian",
"http://lexvo.org/id/iso639-1/de": "German",
"http://lexvo.org/id/iso639-1/ar": "Arabic",
"http://lexvo.org/id/iso639-1/zh": "Chinese",
"http://lexvo.org/id/iso639-1/hi": "Hindi",
"http://lexvo.org/id/iso639-1/nl": "Dutch",
"http://lexvo.org/id/iso639-1/fi": "Finnish",
"http://lexvo.org/id/iso639-1/el": "Greek",
"http://lexvo.org/id/iso639-1/ja": "Japanese",
"http://lexvo.org/id/iso639-1/pt-br": "Brazilian"
}
metadataMappings: [ "omv:naturalLanguage", "dc:language", "dcterms:language", "doap:language", "schema:inLanguage" ]
#Generic type
isOfType:
display: "general"
label: "Generic type"
helpText: "The nature of the content of the ontology."
description: [
"OMV: The nature of the content of the ontology.",
"DCTERMS: The nature or genre of the resource." ]
extractedMetadata: true
enforcedValues: {
"http://omv.ontoware.org/2005/05/ontology#ApplicationOntology": "Application Ontology",
"http://omv.ontoware.org/2005/05/ontology#CoreOntology": "Core Ontology",
"http://omv.ontoware.org/2005/05/ontology#DomainOntology": "Domain Ontology",
"http://omv.ontoware.org/2005/05/ontology#TaskOntology": "Task Ontology",
"http://omv.ontoware.org/2005/05/ontology#UpperLevelOntology": "Upper Level Ontology",
"http://omv.ontoware.org/2005/05/ontology#Vocabulary": "Vocabulary"
}
metadataMappings: [ "omv:isOfType", "dc:type", "dcterms:type" ]
#Other identifier
identifier:
display: "general"
label: "Other identifier"
helpText: "An unambiguous reference to the resource within a given context. Recommended practice is to identify the resource by means of a string conforming to an identification system."
example: 'https://doi.org/10.15454/1.4690062322351956E12'
description: [
"DCTERMS: An unambiguous reference to the resource within a given context. Recommended practice is to identify the resource by means of a string conforming to an identification system. Examples include International Standard Book Number (ISBN), Digital Object Identifier (DOI), and Uniform Resource Name (URN). Persistent identifiers should be provided as HTTP URIs.",
"SKOS: A notation is a string of characters such as\"T58.5\"or\"303.4833\"used to uniquely identify a concept within the scope of a given concept scheme.",
"ADMS: adms:identifier is used to link any resource to an instance of adms:Identifier which is its range. N.B. it is not appropriate to use dcterms:identifer to link to the Identifier class as its range is rdfs:Literal. ADMS uses this to provide any identifier for the Asset.",
"SCHEMA: The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. " ]
extractedMetadata: true
metadataMappings: [ "dc:identifier", "dcterms:identifier", "skos:notation", "adms:identifier" ]
### Licensing
#Access rights => Ontology object (bpm:viewingRestriction)
#License
hasLicense:
display: "licensing"
label: "License"
helpText: "A legal document giving official permission to do something with the resource. Recommended practice is to identify the license document with a URI. "
description: [
"DCTERMS: A legal document giving official permission to do something with the resource. Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided.",
"OMV: Underlying license model.",
"SCHEMA: A license document that applies to this content, typically indicated by URL.",
"CC: A Work has a License.",
"DC: Information about rights held in and over the resource." ]
extractedMetadata: true
enforcedValues: {
"https://creativecommons.org/licenses/by/4.0/": "CC Attribution 4.0 International",
"https://creativecommons.org/licenses/by/3.0/": "CC Attribution 3.0",
"https://creativecommons.org/publicdomain/zero/1.0/": "CC Public Domain Dedication",
"http://www.gnu.org/licenses/gpl-3.0": "GNU General Public License 3.0",
"http://www.gnu.org/licenses/gpl-2.0": "GNU General Public License 2.0",
"https://opensource.org/licenses/Artistic-2.0": "Open Source Artistic license 2.0",
"https://opensource.org/licenses/MIT": "MIT License",
"https://opensource.org/licenses/BSD-3-Clause": "BSD 3-Clause License",
"http://www.apache.org/licenses/LICENSE-2.0": "Apache License 2.0"
}
metadataMappings: [ "dc:rights", "dcterms:rights", "dcterms:license", "cc:license", "schema:license" ]
#Use guidelines
useGuidelines:
display: "licensing"
label: "Use guidelines"
helpText: "A related resource which defines how the ontology should be used."
description: [
"CC: A related resource which defines non-binding use guidelines for the work." ]
extractedMetadata: true
#More permissions
morePermissions:
display: "licensing"
label: "More permissions"
helpText: "A related resource which describes additional permissions or alternative licenses."
description: [
"CC: A related resource which describes additional permissions or alternative licenses for a Work which may be available." ]
extractedMetadata: true
#Rights holder
copyrightHolder:
display: "licensing"
label: "Rights holder"
helpText: "The party holding the legal copyright to the ontology."
description: [
"SCHEMA: The party holding the legal copyright to the CreativeWork.",
"DCTERMS: A person or organization owning or managing rights over the resource." ]
extractedMetadata: true
### Description
#Description
description:
display: "description"
label: "Description"
helpText: "Free text description of an ontology."
example: ''
description: [
"DCTERMS: An account of the resource.",
"SCHEMA: A description of the item.",
"OMV: Free text description of an ontology.",
"DOAP: Plain text description of a project, of 2-4 sentences in length.","RDFS: A human-readable description of a resource." ]
extractedMetadata: true
metadataMappings: [ "omv:description", "dc:description", "dcterms:description", "doap:description", "schema:description", "oboInOwl:remark" ]
#Homepage
homepage:
display: "description"
label: "Homepage"
helpText: "Ontology homepage."
description: [
"FOAF: A homepage for some thing.",
"MOD: An unambiguous reference to the resource within a given context.",
"DOAP: URI of a blog related to a project.",
"CC: The URL the creator of a Work would like used when attributing re-use.",
"SCHEMA: Indicates a page (or other CreativeWork) for which this thing is the main entity being described." ]
extractedMetadata: true
metadataMappings: [ "foaf:homepage", "cc:attributionURL", "mod:homepage", "doap:blog", "schema:mainEntityOfPage" ]
#Documentation
documentation:
display: "description"
label: "Documentation"
helpText: "URL for further documentation."
description: [
"MOD: A link to the documentation page on a thing.",
"DCAT: A Web page that can be navigated to in a Web browser to gain access to the dataset, its distributions and/or additional information.",
"OMV: URL for further documentation.",
"RDFS: Further information about the subject resource.",
"DOAP: URL of Wiki for collaborative discussion of project.",
"VANN: A reference to a resource that provides information on how this resource is to be used.",
"FOAF: A page or document about this thing." ]
extractedMetadata: true
metadataMappings: [ "omv:documentation", "rdfs:seeAlso", "foaf:page", "vann:usageNote", "mod:document", "dcat:landingPage", "doap:wiki" ]
#Notes or comments
notes:
display: "description"
label: "Notes"
helpText: "Additional information about the ontology that is not included somewhere else."
description: [
"RDFS: A description of the subject resource.",
"OMV: Additional information about the ontology that is not included somewhere else (e.g. information that you do not want to include in the documentation).",
"ADMS: A description of changes between this version and the previous version of the Asset." ]
extractedMetadata: true
metadataMappings: [ "omv:notes", "rdfs:comment", "adms:versionNotes" ]
#Keywords
keywords:
display: "description"
label: "Keywords"
helpText: "List of keywords related to an ontology."
description: [
"SCHEMA: Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.",
"OMV: List of keywords related to an ontology.",
"DCAT: A keyword or tag describing a resource.",
"MOD: A keyword(s) is used to describe the content of an ontology." ]
extractedMetadata: true
metadataMappings: [ "omv:keywords", "mod:keyword", "dcat:keyword", "schema:keywords" ]
#Hidden label
hiddenLabel:
display: "description"
label: "Hidden label"
helpText: "A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations."
description: [
"SKOS: A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations." ]
extractedMetadata: true
metadataMappings: [ "skos:hiddenLabel" ]
#Alternative name
alternative:
display: "description"
label: "Alternative name"
helpText: "An alternative name for the resource. The distinction between titles and alternative titles is application-specific."
description: [
"DCTERMS: An alternative name for the resource. The distinction between titles and alternative titles is application-specific.",
"SKOS: The preferred and alternative labels are useful when generating or creating human-readable representations of a knowledge organization system.",
"SCHEMA: An alias for the item. A short label that is used by some communities to refer to a dataset",
"IDOT: A short label that is used by some communities to refer to a dataset (see 'preferredPrefix')." ]
extractedMetadata: true
metadataMappings: [ "dcterms:alternative", "skos:altLabel", "idot:alternatePrefix", "schema:alternativeHeadline", "schema:alternateName" ]
#Abstract
abstract:
display: "description"
label: "Abstract"
helpText: "A summary or abstrct of the ontology."
description: [
"DCTERMS: A summary of the resource." ]
extractedMetadata: true
metadataMappings: [ "dcterms:abstract" ]
#Bibliographic reference
publication:
display: "description"
label: "Bibliographic reference"
helpText: "List of bibliographic references describing the ontology and its applications."
description: [
"SCHEMA: A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
"DCTERMS: A bibliographic reference for the resource.",
"OMV: List of bibliographic references describing the ontology and its applications.",
"FOAF: A document that this thing is the primary topic of.",
"CITO: The citing entity cites the cited entity as one that provides an authoritative description or definition of the subject under discussion." ]
extractedMetadata: true
metadataMappings: [ "omv:reference", "dcterms:bibliographicCitation", "foaf:isPrimaryTopicOf", "schema:citation", "cito:citesAsAuthority" ]
### Dates
#Creation date
released:
display: "dates"
label: "Creation date"
helpText: "Date of original (or first) creation of the resource."
description: [
"DCTERMS:date: A point or period of time associated with an event in the lifecycle of the resource.",
"DCTERMS:created: Date of creation of the resource.",
"DCTERMS:issued: Date of formal issuance (e.g., publication) of the resource.",
"PROV: Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.",
"PAV:authoredOn: The date this resource was authored.",
"PAV:contributedOn: The date this resource was contributed to.",
"PAV:createdOn: The date of creation of the resource representation.",
"DOAP: Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05.",
"SCHEMA: The date on which the CreativeWork was created or the item was added to a DataFeed.",
"DOAP: Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05." ]
extractedMetadata: true
metadataMappings: [ "dcterms:created", "dcterms:date", "dcterms:issued", "doap:created", "mod:creationDate", "oboInOwl:hasDate", "oboInOwl:date", "omv:creationDate", "pav:createdOn", "pav:authoredOn", "pav:contributedOn", "prov:generatedAtTime", "schema:dateCreated"]
#Modification date
modificationDate:
display: "dates"
label: "Modification date"
helpText: "Date of the last modification made to the ontology."
description: [
"DCTERMS: Date on which the resource was changed.",
"SCHEMA: The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.",
"OMV: Date of the last modification made to the ontology.",
"PAV: The date of the last update of the resource." ]
extractedMetadata: true
metadataMappings: [ "omv:modificationDate", "dcterms:modified", "schema:dateModified", "pav:lastUpdateOn" ]
#Validity date
valid:
display: "dates"
label: "Validity date"
helpText: "Date (often a range) of validity of a resource."
description: [
"DCTERMS: Date (often a range) of validity of a resource.",
"SCHEMA: The end date and time of the item.",
"PROV: Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation." ]
extractedMetadata: true
metadataMappings: [ "dcterms:valid", "prov:invaliatedAtTime", "schema:endDate" ]
#Curation date
curatedOn:
display: "dates"
label: "Curation date"
helpText: "Specifies the date this resource was curated. pav:curatedBy gives the agents that performed the curation."
description: [
"PAV: Specifies the date this resource was curated. pav:curatedBy gives the agents that performed the curation." ]
extractedMetadata: true
metadataMappings: [ "pav:curatedOn" ]
#Submission date
creationDate:
display: "dates"
label: "Submission date"
helpText: "Date of the submission/release in the portal."
description: [
"DCTERMS: Date of submission of the resource.",
"SCHEMA: Date of first broadcast/publication." ]
extractedMetadata: true
metadataMappings: [ "dcterms:dateSubmitted", "schema:datePublished" ]
### Persons and organizations
#Contact
contact:
display: "persons and organizations"
label: "Contact"
helpText: "The persons who can be contacted to enquire about an ontology. Composed of the contacts name and email."
description: [
"DCAT: Relevant contact information for the cataloged resource. Use of vCard is recommended."]
extractedMetadata: false
metadataMappings: [ "dcat:contactPoint" ]
#Creator
hasCreator:
display: "persons and organizations"
label: "Creator"
helpText: "Main responsible for the creation of the ontology."
description: [
"OMV: Main responsible for the creation of the ontology",
"DCTERMS: An entity primarily responsible for making the resource",
"FOAF: An agent that made this thing",
"PROV: Attribution is the ascribing of an entity to an agent.",
"PAV:authoredBy: An agent that originated or gave existence to the work that is expressed by the digital resource.",
"PAV:cretaedBy: An agent primary responsible for making the digital artifact or resource representation.",
"DOAP: Maintainer of a project, a project leader.",
"SCHEMA:author: The author of this content or rating.",
"SCHEMA:creator: The creator/author of this CreativeWork." ]
extractedMetadata: true
metadataMappings: [ "omv:hasCreator", "dc:creator", "dcterms:creator", "foaf:maker", "prov:wasAttributedTo", "doap:maintainer", "pav:authoredBy", "pav:createdBy", "schema:author", "schema:creator" ]
#Contributor
hasContributor:
display: "persons and organizations"
label: "Contributor"
helpText: "Contributors to the creation of the ontology."
description: [
"DCTERMS: An entity responsible for making contributions to the resource.",
"SCHEMA: A secondary contributor to the CreativeWork or Event.",
"OMV: Contributors to the creation of the ontology.",
"PAV: The resource was contributed to by the given agent.",
"DOAP: Project contributor" ]
extractedMetadata: true
metadataMappings: [ "omv:hasContributor", "dc:contributor", "dcterms:contributor", "doap:helper", "schema:contributor", "pav:contributedBy" ]
#Curator
curatedBy:
display: "persons and organizations"
label: "Curator"
helpText: "Specifies an agent specialist responsible for curating/evaluating the ontology."
description: [
"PAV: Specifies an agent specialist responsible for shaping the expression in an appropriate format. Often the primary agent responsible for ensuring the quality of the representation.",
"MOD: An ontology that is evaluated by an agent." ]
extractedMetadata: true
metadataMappings: [ "mod:evaluatedBy", "pav:curatedBy" ]
#Translator
translator:
display: "persons and organizations"
label: "Translator"
helpText: "Organization or person who adapts a creative work to different languages."
description: [
"SCHEMA: Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event." ]
extractedMetadata: true
metadataMappings: [ "schema:translator" ]
#Publisher
publisher:
display: "persons and organizations"
label: "Publisher"
helpText: "An entity responsible for making the ontology available."
description: [
"DCTERMS: An entity responsible for making the resource available.",
"SCHEMA: The publisher of creative work.",
"ADMS: The name of the agency that issued the identifier." ]
extractedMetadata: true
metadataMappings: [ "dc:publisher", "dcterms:publisher", "schema:publisher", "adms:schemaAgency" ]
#Funded or sponsored by
fundedBy:
display: "persons and organizations"
label: "Funded or sponsored by"
helpText: "An organization funding a project or person."
description: [
"MOD: An ontology that is sponsored by and developed under a project.",
"FOAF: An organization funding a project or person.",
"SCHEMA: The organization on whose behalf the creator was working." ]
extractedMetadata: true
metadataMappings: [ "foaf:fundedBy", "mod:sponsoredBy", "schema:sourceOrganization" ]
#Endorsed by
endorsedBy:
display: "persons and organizations"
label: "Endorsed by"
helpText: "The parties that have expressed support or approval to this ontology."
description: [
"MOD: An ontology endorsed by an agent.",
"OMV: The parties that have expressed support or approval to this ontology." ]
extractedMetadata: true
metadataMappings: [ "omv:endorsedBy", "mod:endorsedBy" ]
### Community
#User notes or reviews => Ontology object (bpm:notes)
#Evaluation => Ontology object (bpm:reviews)
#Group => Ontology object (bpm:group)
#Used in project => Ontology object (bpm:project)
#Target audience
audience:
display: "community"
label: "Audience"
helpText: "A set of users/agents for whom the ontology is intended or useful."
description: [
"DCTERMS: a class of entity for whom the resource is intended or useful.",
"DOAP: Description of target user base.",
"SCHEMA: An intended audience, i.e. a group for whom something was created." ]
extractedMetadata: true
metadataMappings: [ "dcterms:audience", "doap:audience", "schema:audience" ]
#Analytics => Ontology object (bpm:analytics)
#Repository
repository:
display: "community"
label: "Repository"
helpText: "Ontology source code repository."
example: 'https://github.com/Planteome/plant-trait-ontology'
description: [
"DOAP: Source code repository." ]
extractedMetadata: true
metadataMappings: [ "doap:repository" ]
#Bug database
bugDatabase:
display: "community"
label: "Bug database"
helpText: "Bug tracker for a project."
example: 'https://github.com/Planteome/plant-trait-ontology/issues'
description: [
"DOAP: Bug tracker for a project." ]
extractedMetadata: true
metadataMappings: [ "doap:bug-database" ]
#Mailing list
mailingList:
display: "community"
label: "Mailing list"
helpText: "Ontology support mailing list or email address."
description: [
"DOAP: Mailing list home page or email address." ]
extractedMetadata: true
metadataMappings: [ "doap:mailing-list" ]
#To Do List
toDoList:
display: "community"
label: "To do list"
helpText: "Describes future tasks planned by a resource curator."
description: [
"VOAF: Describes future tasks planned by a resource curator. This property is primarily intended to be used for vocabularies or datasets, but the domain is left open, it can be used for any resource. Use iCalendar Vtodo class and its properties to further describe the task calendar, priorities etc." ]
extractedMetadata: true
metadataMappings: [ "mod:toDoList", "voaf:toDoList" ]
#Award
award:
display: "community"
label: "Award"
helpText: "An award won by or for this item."
description: [
"SCHEMA: An award won by or for this item." ]
extractedMetadata: true
metadataMappings: [ "schema:award" ]
### Usage
#Known usage
knownUsage:
display: "usage"
label: "Known usage"
helpText: "The applications where the ontology is being used."
example: "Used to annotate phenotypes and patterns of gene expression."
description: [
"OMV: The applications where the ontology is being used.",
"MOD: Type of applications or usage of the ontology." ]
extractedMetadata: true
metadataMappings: [ "mod:knownUsage", "omv:knownUsage" ]
#Designed for task
designedForOntologyTask:
display: "usage"
label: "Designed for task (as defined by OMV)."
helpText: "The purpose or tasks for which the ontology was originally designed."
description: [
"MOD: The purpose or tasks for which the ontology was originally designed.",
"OMV: The purpose for which the ontology was originally designed." ]
extractedMetadata: true
enforcedValues: {
"http://omv.ontoware.org/2005/05/ontology#AnnotationTask": "Annotation Task",
"http://omv.ontoware.org/2005/05/ontology#ConfigurationTask": "Configuration Task",
"http://omv.ontoware.org/2005/05/ontology#FilteringTask": "Filtering Task",
"http://omv.ontoware.org/2005/05/ontology#IndexingTask": "Indexing Task",
"http://omv.ontoware.org/2005/05/ontology#IntegrationTask": "Integration Task",
"http://omv.ontoware.org/2005/05/ontology#MatchingTask": "Matching Task",
"http://omv.ontoware.org/2005/05/ontology#MediationTask": "Mediation Task",
"http://omv.ontoware.org/2005/05/ontology#PersonalizationTask": "Personalization Task",
"http://omv.ontoware.org/2005/05/ontology#QueryFormulationTask": "Query Formulation Task",
"http://omv.ontoware.org/2005/05/ontology#QueryRewritingTask": "Query Rewriting Task",
"http://omv.ontoware.org/2005/05/ontology#SearchTask": "Search Task"
}
metadataMappings: [ "omv:designedForOntologyTask", "mod:designedForTask" ]
#Subject
hasDomain:
display: "usage"
label: "Subject"
helpText: "The topics of the ontology."
example: ''
description: [
"DCTERMS: The topic of the resource.",
"SCHEMA: The subject matter of the content.",
"FOAF: A topic of some page or document.",
"OMV: Typically, the domain can refer to established topic hierarchies such as the general purpose topic hierarchy (DMOZ or the domain specific topic hierarchy ACM for the computer science domain.",
"DCAT: A main category of the resource." ]
extractedMetadata: true
metadataMappings: [ "omv:hasDomain", "dc:subject", "dcterms:subject", "foaf:topic", "dcat:theme", "schema:about" ]
#Coverage
coverage:
display: "usage"
label: "Coverage"
helpText: "The spatial or temporal topic of the ontology, the spatial applicability of the ontology, or the jurisdiction under which the ontology is relevant."
description: [
"DCTERMS: The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies.",
"SCHEMA: The 'spatial' property can be used in cases when more specific properties (e.g. locationCreated, spatialCoverage, contentLocation) are not known to be appropriate." ]
extractedMetadata: true
metadataMappings: [ "dc:coverage", "dcterms:coverage", "schema:spatial" ]
#Example of use
example:
display: "usage"
label: "Example of use"
helpText: "A reference to a resource that provides an example of how this ontology can be used."
description: [
"VANN: A reference to a resource that provides an example of how this resource can be used.",
"SCHEMA: Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook." ]
extractedMetadata: true
metadataMappings: [ "vann:example", "schema:workExample" ]
### Methodology and provenance
#Knowledge representation paradigm
conformsToKnowledgeRepresentationParadigm:
display: "methodology"
label: "Knowledge representation paradigm"
helpText: "OMV: Information about the paradigm model used to create the ontology."
example: ''
description: [
"MOD: A representation formalism that is followed to describe knowledge in an ontology. Example includes description logics, first order logic, etc.",
"OMV: Information about the paradigm model used to create the ontology.",
"DCTERMS: An established standard to which the described resource conforms." ]
extractedMetadata: true
metadataMappings: [ "omv:conformsToKnowledgeRepresentationParadigm", "mod:KnowledgeRepresentationFormalism", "dcterms:conformsTo" ]
#Engineering methodology
usedOntologyEngineeringMethodology:
display: "methodology"
label: "Engineering methodology"
helpText: "Information about the method model used to create the ontology."
description: [
"MOD: A methodology following which an ontology is created.",
"OMV: Information about the method model used to create the ontology.",
"SCHEMA: The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual, e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies.",
"ADMS: More information about the format in which an Asset Distribution is released. This is different from the file format as, for example, a ZIP file (file format) could contain an XML schema (representation technique)." ]
extractedMetadata: true
metadataMappings: [ "omv:usedOntologyEngineeringMethodology", "mod:methodologyUsed", "adms:representationTechnique", "schema:publishingPrinciples" ]
#Created with
usedOntologyEngineeringTool:
display: "methodology"
label: "Created with"
helpText: "Information about the tool used to create the ontology."
description: [
"PAV: The software/tool used by the creator (pav:createdBy) when making the digital resource, for instance a word processor or an annotation tool.",
"MOD: The tool used for the creation of an ontology.",
"OMV: Information about the tool used to create the ontology." ]
extractedMetadata: true
enforcedValues: [
"Protégé",
"OWL API",
"OBO-Edit",
"SWOOP",
"OntoStudio",
"Altova",
"OilEd",
"IsaViz",
"WebODE",
"OntoBuilder",
"WSMO Studio",
"VocBench",
"TopBraid",
"NeOn-Toolkit",
"Another tool" ]
metadataMappings: [ "omv:usedOntologyEngineeringTool", "mod:toolUsed", "pav:createdWith", "oboInOwl:auto-generated-by" ]
#Accrual method
accrualMethod:
display: "methodology"
label: "Accrual method"
helpText: "The method by which items are added to the ontology."
example: 'We take term request via GitHub issues.'
description: [
"DCTERMS: The method by which items are added to a collection. May use a value from the Collection Description Accrual Method Vocabulary." ]
extractedMetadata: true
metadataMappings: [ "dcterms:accrualMethod" ]
#Accrual periodicity
accrualPeriodicity:
display: "methodology"
label: "Accrual periodicity"
helpText: "The frequency with which items are added to the ontology (as defined by CLD)."
description: [
"DCTERMS: The frequency with which items are added to a collection.",
"NKOS: The period in which a KOS is typically updated." ]
extractedMetadata: true
enforcedValues: {
"http://purl.org/cld/freq/triennial": "Triennial",
"http://purl.org/cld/freq/biennial": "Biennial",
"http://purl.org/cld/freq/annual": "Annual",
"http://purl.org/cld/freq/semiannual": "Semiannual",
"http://purl.org/cld/freq/threeTimesAYear": "Three times a year",
"http://purl.org/cld/freq/quarterly": "Quarterly",
"http://purl.org/cld/freq/bimonthly": "Bimonthly",
"http://purl.org/cld/freq/monthly": "Monthly",
"http://purl.org/cld/freq/semimonthly": "Semimonthly",
"http://purl.org/cld/freq/threeTimesAMonth": "Three times a month",
"http://purl.org/cld/freq/weekly": "Weekly",
"http://purl.org/cld/freq/semiweekly": "Semiweekly",
"http://purl.org/cld/freq/threeTimesAWeek": "Three times a week",
"http://purl.org/cld/freq/daily": "Daily",
"http://purl.org/cld/freq/continuous": "Continuous",
"http://purl.org/cld/freq/irregular": "Irregular",
}
metadataMappings: [ "dcterms:accrualPeriodicity", "nkos:updateFrequency" ]
#Accrual policy
accrualPolicy:
display: "methodology"
label: "Accrual policy"
helpText: "The policy governing the addition of items to the ontology."
example: 'Term proposals are review by an expert committee.'
description: [
"DCTERMS: The policy governing the addition of items to a collection." ]
extractedMetadata: true
metadataMappings: [ "dcterms:accrualPolicy" ]
#Competency question
competencyQuestion:
display: "methodology"
label: "Competency question"
helpText: "A set of questions made to build an ontology at the design time."
description: [
"MOD: A set of questions made to build an ontology at the design time." ]
extractedMetadata: true
metadataMappings: [ "mod:competencyQuestion" ]
#Sample queries => Not implemented
#Was generated by
wasGeneratedBy:
display: "methodology"
label: "Was generated by"
helpText: "Generation is the completion of production of a new ontology by an activity."
example: 'Generated by the workflow described ...'
description: [
"PROV: Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation." ]
extractedMetadata: true
metadataMappings: [ "prov:wasGeneratedBy" ]
#Was invalidated by
wasInvalidatedBy:
display: "methodology"
label: "Was invalidated by"
helpText: "Invalidation is the start of the destruction, cessation, or expiry of an existing ontology by an activity."
example: 'Invalidated by the production of ...'
description: [
"PROV: Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation." ]
extractedMetadata: true
metadataMappings: [ "prov:wasInvalidatedBy" ]
### Object description properties
#Object preferred label property
prefLabelProperty:
display: "object description properties"
label: "Object preferred label property"
helpText: "Property used to specify objects preferred label."
description: [
"MOD: Property used to specify objects preferred label." ]
extractedMetadata: true
enforcedValues: {
"http://www.w3.org/2004/02/skos/core#prefLabel": "skos:prefLabel",
"http://www.w3.org/2000/01/rdf-schema#label": "rdfs:label",
"http://schema.org/name": "schema:name",
"http://xmlns.com/foaf/0.1/name": "foaf:name",
"http://purl.org/dc/terms/title": "dcterms:title",
"http://purl.org/dc/elements/1.1/title": "dc:title"
}
metadataMappings: [ "mod:prefLabelProperty" ]
#Object synonym property
synonymProperty:
display: "object description properties"
label: "Object synonym property"
helpText: "Property used to specify objects synonyms."
description: [
"MOD: Property used to specify objects synonyms." ]
extractedMetadata: true
enforcedValues: {
"http://www.w3.org/2004/02/skos/core#altLabel ": "skos:altLabel",
"http://purl.org/dc/terms/alternative ": "dcterms:alternative",
"http://schema.org/alternateName": "schema:alternativeName",
"http://www.geneontology.org/formats/oboInOwl#hasSynonym": "oboInOwl:hasSynonym",
"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": "oboInOwl:hasExactSynonym",
"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": "oboInOwl:hasNarrowSynonym",
"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": "oboInOwl:hasBroadSynonym",
"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": "oboInOwl:hasRelatedSynonym"
}
metadataMappings: [ "mod:synonymProperty" ]
#Object definition property
definitionProperty:
display: "object description properties"
label: "Object definition property"
helpText: "Property used to specify objects definition."
description: [
"MOD: Property used to specify objects definition." ]
extractedMetadata: true
enforcedValues: {
"http://www.w3.org/2004/02/skos/core#definition": "skos:definition",
"http://www.w3.org/2000/01/rdf-schema#comment": "rdfs:comment",
"http://purl.org/dc/terms/description ": "dcterms:description",
"http://purl.org/dc/elements/1.1/description": "dc:description",
"http://schema.org/description ": "schema:decription",
"http://www.geneontology.org/formats/oboInOwl#hasDefinition": "oboInOwl:hasDefinition"
}
metadataMappings: [ "mod:definitionProperty" ]
#Object author property
authorProperty:
display: "object description properties"
label: "Object author property"
helpText: "Property used to specify object author."
description: [
"MOD: Property used to specify object author." ]
extractedMetadata: true
enforcedValues: {
"http://purl.org/dc/elements/1.1/creator": "dc:creator",
"http://purl.org/dc/terms/creator": "dcterms:creator",
"http://schema.org/author": "schema:author",
"http://www.w3.org/ns/prov#wasAttributedTo": "prov:wasAttributedTo",
"http://purl.org/pav/authoredBy": "pav:authoredBy",
"http://purl.org/pav/createdBy": "pav:createdBy",
"http://xmlns.com/foaf/0.1/maker": "foaf:maker"
}
metadataMappings: [ "mod:authorProperty" ]
#Object obsolete property
obsoleteProperty:
display: "object description properties"
label: "Object obsolete property"
helpText: "Property used to specify obsolete objects."
description: [
"MOD: Property used to specify obsolete objects." ]
extractedMetadata: true
enforcedValues: {
"http://www.w3.org/2002/07/owl#deprecated": "owl:deprecated",
"http://identifiers.org/idot/obsolete": "idot:obsolete"
}
metadataMappings: [ "mod:obsoleteProperty" ]
#Object creation date property
createdProperty:
display: "object description properties"
label: "Object creation date property"
helpText: "Property used to specify the date of creation of a class or another object in the ontology."
description: [
"MOD: Property used to specify the date of creation of a class or another object in the ontology." ]
extractedMetadata: true
enforcedValues: {
"http://purl.org/dc/terms/created ": "dcterms:created",
"http://purl.org/dc/terms/issued ": "dcterms:issued",
"http://purl.org/dc/terms/date": "dcterms:date",
"http://purl.org/dc/elements/1.1/date": "dc:date",
"http://purl.org/pav/authoredOn ": "pav:authoredOn",
"http://purl.org/pav/contributedOn": "pav:contributedOn",
"http://purl.org/pav/createdOn": "pav:createdOn",
"http://schema.org/dateCreated": "schema:dateCreated",
"http://www.w3.org/ns/prov#generatedAtTime": "prov:generatedAtTime"
}
metadataMappings: [ "mod:modifiedProperty" ]
#Object modification date property
modifiedProperty:
display: "object description properties"
label: "Object modification date property"
helpText: "Property used to specify the date of modification of a class or another object in the ontology."
description: [
"MOD: Property used to specify the date of modification of a class or another object in the ontology." ]
extractedMetadata: true
enforcedValues: {
"http://purl.org/dc/terms/modified ": "dc:modified",
"http://purl.org/dc/terms/issued ": "dcterms:issued",
"http://purl.org/dc/terms/date": "dcterms:date",
"http://purl.org/dc/elements/1.1/date": "dc:date",
"http://purl.org/pav/authoredOn ": "pav:authoredOn",
"http://purl.org/pav/contributedOn": "pav:contributedOn",
"http://purl.org/pav/lastUpdateOn": "pav:lastUpdateOn",
"http://schema.org/dateModified": "schema:dateModified"
}
metadataMappings: [ "mod:createdProperty" ]