forked from FAIR-IMPACT/MOD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod-v2.0_profile.ttl
3081 lines (2476 loc) · 199 KB
/
mod-v2.0_profile.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix mod: <https://w3id.org/mod#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix sd: <http://www.w3.org/ns/sparql-service-description#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix door: <http://kannel.open.ac.uk/ontology#> .
@prefix omv: <http://omv.ontoware.org/2005/05/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix dcat: <http://www.w3.org/ns/dca#> .
@prefix dcmi: <http://purl.org/dc/dcmitype/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix idot: <http://identifiers.org/idot/> .
@prefix nkos: <http://w3id.org/nkos#> .
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sioc: <http://rdfs.org/sioc/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <https://vocab.org/vann/> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix schema: <https://schema.org/> .
@prefix oboinowl: <http://www.geneontology.org/formats/oboInOwl#> .
@base <https://w3id.org/mod> .
<https://w3id.org/modp> rdf:type owl:Ontology ;
#################################################################
# MOD2.0 profile description with MOD2 profile properties
#################################################################
# This section is a description of MOD2 profile with a subset of properties of the profile itself.
# Properties are sorted and grouped as in GSheet working document.
# Texttual descriptions are available in English and French.
# Properties from MOD2 that are not used to described MOD2 profile are commented.
########## Intrinsic properties ##########
mod:acronym "MODP" ;
dcterms:title "MODP: Metadata for Ontology Description and publication Profile"@en,
"MODP: Profil de Metadonnées pour la Description et la publication d'Ontologies"@fr ;
dcterms:alternative "MOD metadata profile"@en ,
"Profil de métadonnées MOD"@fr ;
owl:ontologyIRI <https://w3id.org/modp> ;
owl:versionIRI <https://w3id.org/modp/2.0> ;
owl:versionInfo "2.0.1" ;
mod:status "alpha" ;
owl:deprecated false ;
dcterms:license <https://creativecommons.org/licenses/by/4.0> ;
mod:hasRepresentationLanguage omv:OWL ;
mod:hasFormalityLevel omv:Vocabulary ;
mod:hasSyntax <http://www.w3.org/ns/formats/Turtle> ;
dcterms:language <http://lexvo.org/id/iso639-3/eng> ,
<http://lexvo.org/id/iso639-3/fra> ;
########## Description properties ##########
dcterms:description
"MODP (Metadata for Ontology Description and publication Profile) is a metadata profile to describe metadata descriptions for ontologies or semantic resources/artefacts in general (thesaurus, terminologies, vocabularies, etc.). The MODP OWL file is a formal specifications of the metadata profile in RDF. It is based on the work done to build the MOD ontology. MODP is maximal (i.e., contains as much property as possible) and can be used to define sub-profiles for recommended metadata properties (e.g., H2020 project FAIRsFAIR semantic artefact minimum metadata profile). Users can go through MODP and pickup the required properties to describe their ontology."@en,
"MODP (Profil de Metadonnées pour la Description et la publication d'Ontologie) est un profil de métadonnées pour décire des descriptions de métadonnées pour les ontologies ou les ressources/artefacts sémantiques en général (thésaurus, terminologies, vocabulaires, etc.). Le fichier MODP OWL est une description formelle du profil en RDF basée sur le travail fait pur construire l'ontologie MOD. MODP est maximal (i.e., contient autant de propriété que possible) et peut donc être utilisé pour définir des sous-profils de métadonnées (e.g., le profil de métadonnées minimale pour les artefacts sémanttique du projet H2020 FAIRsFAIR). Les utilisateurs peuvent consulter la spécification de MODP et récupérer les propriétés requises pour décrire leur ontologie."@fr ;
dcterms:abstract
"MODP provides a set of properties which can be used by ontology developers, ontology libraries (e.g., ontology registry, ontology repository, ontology portal), to describe and publish ontologies or semantic resources/artefacts. The enriched description of ontologies, in turn, will help users to search, discover, identify and select ontologies."@en ,
"MODP fournit un ensemble de propriétés pouvant être utilisées par les développeurs d’ontologies ou les portails d’ontologies (registre, bibliothèques), pour décrire et publier des ontologies ou des ressources/artefacts sémantiques. La description enrichie des ontologies aidera les utilisateurs à rechercher, découvrir, identifier et sélectionner des ontologies."@fr ;
cc:morePermissions "https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE" ;
cc:useGuidelines "MODP is free of use; feedback is welcome."@en ,
"MODP peut être utilisée de manière libre; les retours sont appréciés."@fr ;
rdfs:comment
"This project is connected to the work done within AgroPortal (with MOD1.4). MODP and MOD 2.0 are work in progress."@en ,
"Ce projet est lié au travail mis en œuvre dans AgroPortal (avec MOD1.4). MODP et MOD2.0 sont en cours de développement."@fr ;
omv:keywords "metadata description, metadata vocabularies, ontology description, metadata profile"@en ,
"description de métadonnées, vocabulaires de métadonnées, description d'ontologie, profil de métadonnées"@fr ;
pav:createdWith "Text editor" ;
dcterms:coverage
"Ontologies or semantic resources/artefacts in general (thesaurus, terminologies, vocabularies, etc.)"@en ,
"Les ontologies ou les ressources/artefacts sémantiques en général (thésaurus, terminologies, vocabulaires, etc.)"@fr ;
mod:competencyQuestion
"How to standardly and semantically capture the description of an ontology while relying on other existing metadata vocabularies?"@en ,
"Comment capturer de manière standard et sémantique la description d'une ontologie en s'appuyant sur d'autres vocabulaires de métadonnées existants?"@fr ;
foaf:homepage <https://github.com/sifrproject/MOD-Ontology> ;
dcterms:accessRights
"MOD and MODP are licensed under the Creative Commons Attribution 4.0 ; For details, see here: https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE"@en ,
"MOD and MODP sont disponibles sous Licence Creative Commons Attribution 4.0 ; pour plus de details voir https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE"@fr ;
vann:changes
"See changes in MOD2."@en ,
"Voir changements dans MOD2"@fr ;
vann:example
"An adaptation of MOD1.4 is used within AgroPortal, since 2017. MOD2 is the baseline for H2020 project FAIRsFAIR semantic artefact minimum metadata profile."@en ,
"Une adaptation de MOD est utilisée dans AgroPortal, depuis 2017. MOD2 est réutilisée par le profil de métadonnées minimale pour les artefacts sémanttique du projet H2020 FAIRsFAIR."@fr ;
mod:prefLabelProperty rdfs:label ;
mod:synonymProperty skos:altLabel ;
mod:definitionProperty dcterms:description ;
mod:authorProperty pav:importedBy ;
mod:obsoleteProperty owl:deprecated ;
mod:hierarchyProperty rdfs:subClassOf ;
mod:toDoList "https://github.com/sifrproject/MOD-Ontology/raw/master/mod-v2.0_todos.txt" ;
########## People properties ##########
dcterms:creator "Biswanath Dutta (https://orcid.org/0000-0003-3059-8202)" ,
"Clement Jonquet (https://orcid.org/0000-0002-2404-1582)" ;
dcterms:contributor "Anne Toulet (https://orcid.org/0000-0003-0463-0854)" ;
dcterms:publisher "Indian Statistical Institute, Bangalore Centre, India (https://www.isibang.ac.in)" ,
"LIRMM, University of Montpellier, France (http://www.lirmm.fr)" ;
schema:translator "Clement Jonquet" ;
dcterms:rightsHolder "Indian Statistical Institute and University of Montpellier"@en ,
"Institut Indien de la Statistique et Université de Montpellier"@fr;
########## Grouping properties ##########
dcterms:subject "Metadata descriptions"@en ;
mod:group "Metadata vocabularies"@en ;
########## Relation properties ##########
## owl:imports ;
owl:priorVersion <https://www.isibang.ac.in/ns/mod/1.4/> ,
<https://www.isibang.ac.in/ns/mod/1.2/> ,
<https://www.isibang.ac.in/ns/mod/1.1/> ,
<https://www.isibang.ac.in/ns/mod/1.0/> ;
owl:backwardCompatibleWith <http://omv.ontoware.org/2005/05/ontology> ;
owl:incompatibleWith <http://kannel.open.ac.uk/ontology> ;
## dcterms:isPartOf ;
## dcterms:hasPart ;
## dcterms:hasVersion ;
## dcterms:isFormatOf ;
## dcterms:hasFormat ;
dcterms:relation
"MOD uses or relates to each of these vocabularies: ADMS,CC,DCAT,DC,DCT,DOAP,DOOR,FOAF,IDOT,OBOINOWL,OMV,OWL,NKOS,PAV,PROV,RDFS,SCHEMA,SD,SKOS,VANN,VOAF,VOID."@en ,
"MOD utilise ou se repose sur chacun des vocabulaires suivants : ADMS,CC,DCAT,DC,DCT,DOAP,DOOR,FOAF,IDOT,OBOINOWL,OMV,OWL,NKOS,PAV,PROV,RDFS,SCHEMA,SD,SKOS,VANN,VOAF,VOID."@fr ;
mod:specializes <http://omv.ontoware.org/2005/05/ontology>;
## schema:workTranslation ;
## schema:translationOfWork ;
mod:comesFromTheSameDomain "OBOINOWL,OMV,OWL,NKOS,RDFS,SKOS,VANN,VOAF,VOID" ;
mod:similar "OMV,VANN,VOAF,VOID" ;
mod:hasEquivalencesWith
"MOD properties are 'reused' from properties in each these vocabularies: ADMS,CC,DCAT,DC,DCT,DOAP,FOAF,IDOT,OBOINOWL,OWL,NKOS,PAV,PROV,RDFS,SCHEMA,SD,SKOS,VANN,VOID. Reuses are formalized by a dcterms:relation. MOD2 redefines properties from DOOR, OMV, VOAF."@en ,
"Les propriétés de MOD sont 'importées' à partir des vocabulaires suivants : ADMS,CC,DCAT,DC,DCT,DOAP,FOAF,IDOT,OBOINOWL,OWL,NKOS,PAV,PROV,RDFS,SCHEMA,SD,SKOS,VANN,VOID. Les réutilisations soont formalisées par une propriété dcterms:relation. MOD2 re-définie les propriétés dans DOOR, OMV, VOAF."@fr ;
mod:hasDisparateModelling
"DOAP (MOD reuses properties from both objects doap:Project and foaf:Document that are disjoincts.)"@en ,
"DOAP (MOD réutilise des propriétés de des objets doap:Project et foaf:Document qui sont disjointes.)"@fr ;
## mod:usedBy ;
mod:generalizes "DOOR,OMV,VOAF" ;
## mod:hasDisjunctionsWith ;
########## Content properties ##########
foaf:primaryTopic mod:Ontology ;
void:rootResource mod:Ontology ;
mod:browsingUI "https://www.isibang.ac.in/ns/mod/index.html" ;
## sd:endpoint ;
mod:vocabularyUsed <http://creativecommons.org/ns#> ,
<http://www.w3.org/ns/sparql-service-description#> ,
<http://purl.org/dc/terms/> ,
<http://omv.ontoware.org/2005/05/ontology#> ,
<http://www.w3.org/2002/07/owl#> ,
<http://purl.org/pav/> ,
<http://www.w3.org/1999/02/22-rdf-syntax-ns#> ,
<http://www.w3.org/XML/1998/namespace> ,
<http://www.w3.org/2001/XMLSchema#> ,
<http://usefulinc.com/ns/doap/> ,
<http://xmlns.com/foaf/0.1/> ,
<http://identifiers.org/idot/> ,
<http://www.w3.org/ns/prov#> ,
<http://www.w3.org/2000/01/rdf-schema#> ,
<http://www.w3.org/2004/02/skos/core#> ,
<http://purl.org/vocab/vann/> ,
<http://rdfs.org/ns/void#> ,
<https://schema.org/> ;
mod:sampleQueries
"For sample SPARQL queries to query MOD OWL knowledge base, see here: https://github.com/sifrproject/MOD-Ontology/blob/master/SPARQL_Queries_on_MOD_1.2.3-with-instances.txt"@en ,
"Pour des examples de requêtes SPARQL sur la base de connaissances MOD, voir ici : https://github.com/sifrproject/MOD-Ontology/blob/master/SPARQL_Queries_on_MOD_1.2.3-with-instances.txt"@fr ;
## void:propertyPartition ;
## void:classPartition ;
void:dataDump "https://www.isibang.ac.in/ns/mod/ontology.ttl" ,
"https://www.isibang.ac.in/ns/mod/ontology.json" ,
"https://www.isibang.ac.in/ns/mod/ontology.xml" ,
"https://www.isibang.ac.in/ns/mod/ontology.nt" ,
"https://www.isibang.ac.in/ns/mod/ontology.ttl" ;
## void:openSearchDescription ;
## void:uriLookupEndpoint ;
########## Community properties ##########
mod:knownUsage
"MOD is used for instance in AgroPortal (http://agroportal.lirmm.fr) to provide equivalences in AgroPortal's ontology metadata model. Other uses will be documented here in the future."@en ,
"MOD est utilisée par exemple dans AgroPortal (http://agroportal.lirmm.fr) pour fournir des equivalences au sein du modèle de métadonnées d'ontologies. D'autres usages seront documentés ici dans le futur."@fr ;
mod:endorsedBy "No organization is currenlty officially endorsing MOD."@en ,
"MOD n'est encore officiellement recommandée par aucune organization."@fr ;
mod:usedInProject "AgroPortal (http://agroportal.lirmm.fr)" ;
dcterms:audience
"MOD primary targets ontology (or semantic resource/artefact) developers and ontology library, repository or service providers."@en ,
"MOD s'adresse en priorité aux dévelopeurs d'ontologies (ou de ressource/artefact sémantiques) ainsi qu'au dévelopeurs de bibliothèque, de portail ou de service pour des ontologies."@fr ;
foaf:fundedBy
"Indian Statistical Institute, University of Montpellier, European French National Research Agency (under grant ANR-10-LABX-20, ANR-11-BINF-0002, ANR-19-DATA-0019), European Union’s Horizon 2020 research and innovation programme under the Marie Sklodowska-Curie grant agreement No 701771 and H2020 FAIRsFAIR project No 831558."@en ;
doap:repository <https://github.com/sifrproject/MOD-Ontology> ;
doap:bugDatabase <https://github.com/sifrproject/MOD-Ontology/issues> ;
## doap:mailingList ;
## mod:hasEvaluation ;
## schema:comment ;
## mod:analytics ;
########## Date properties ##########
dcterms:created "2021-12-01" ;
dcterms:modified "2022-02-14" ;
## dcterms:valid ;
## pav:curatedOn ;
########## Metrics properties ##########
## mod:metrics ;
mod:numberOfClasses 79 ;
mod:numberOfIndividuals 7 ;
mod:numberOfProperties 260 ;
mod:numberOfObjectProperties 149 ;
mod:numberOfDataProperties 111 ;
mod:numberOfAxioms 1507 ;
## mod:numberOfLabels ;
## mod:byteSize ;
## mod:maxDepth ;
## mod:maxChildCount ;
## mod:averageChildCount ;
## mod:classesWithOneChild ;
## mod:classesWithMoreThan25Children ;
## mod:classesWithNoDefinition ;
########## Provenance properties ##########
dcterms:source
"MOD source is described in https://dx.doi.org/10.1007/978-3-319-70863-8_17 and https://doi.org/10.1007/s13740-018-0091-5"@en ,
"L'origine de MOD est décrite dans https://dx.doi.org/10.1007/978-3-319-70863-8_17 et https://doi.org/10.1007/s13740-018-0091-5"@fr ;
prov:wasGeneratedBy
"MOD is the result of a manual process of identifying, reviewing, and selecting candidate properties from standards metadata vocabularies if relevant to describe an ontology or any kind of semantic resource. When a property cannot be identified, it could be created in the MOD namespace. Since MCD2, it has been created as an extension of DCAT2."@en ,
"MOD est le résultat d'un processus manuel d'identification, de révision et de sélection des propriétés candidates à partir de vocabulaires de métadonnées standards, pour décrire une ontologie ou tout type de ressource sémantique. Lorsqu'une propriété ne peut pas être identifiée, elle peut être créée dans l'espace de noms MOD. Depuis MOD2, MOD est construote comme une extension de DCAT2"@fr ;
## prov:wasInvalidatedBy ;
dcterms:accrualMethod
"When a need of a new property is identified by the developer team, we review classic/standards metadata vocabularies to identifiy if the desire property already exists. If it exists in several metadata vocabularies we give priorities to consitency with previous MOD choices, then W3C Recommendations, then community standards."@en ,
"Lorsqu'un besoin d'une nouvelle propriété est identifié par l'équipe de développeurs, nous passons en revue les vocabulaires de métadonnées classiques / standards pour identifier si la propriété désirée existe déjà. Si elle existe dans plusieurs vocabulaires de métadonnées, nous donnons la priorité à la cohérence avec les choix précédents dans MOD, puis aux recommandations du W3C, puis aux normes de la communauté."@fr ;
dcterms:accrualPeriodicity
"New properties are added on demand with no specific periodicity."@en ,
"Les nouvelles propriétés sont ajoutées à la demande sans périodicité particulière."@fr ;
dcterms:accrualPolicy
"Editorial choice of the developer team."@en ,
"Choix éditorial de l'équipe de développeurs."@fr .
#################################################################
# Pattern to respect for each MOD properties
#################################################################
#
#### PropertyURI
#originalns:xx rdf:type rdf:Property ;
# rdfs:subPropertyOf SUPER PROPERTY IF ANY
# rdfs:label ""@en ,
# ""@fr ;
# rdfs:domain DOMAIN INFO IF ANY
# rdfs:range RANGE INFO IF ANY
# dcterms:description DESCCRIPTION FROM ORIGINAL SOURCE ;
# rdfs:isDefinedBy URI OF ORIGINAL SOURCE ;
# dcterms:issued "DATE OF THE FIRST CREATION OF THE PROPERTY BY ORIGINAL RESOURCE"^^xsd:date ;
# dcterms:relation RELATED PROPERTY IN ANOTHER METADATA (not owl:equivalentProperty);
# pav:derivedFrom URI OF FIRST MOD VERSION INCLUDING" ;
# pav:importedOn "DATE OF FIRST MOD VERSION INCLUDING"^^xsd:dateTime ;
#
# #OPTIONAL STATEMENTS
# prov:wasInfluencedBy "MIRO guidelines: ...." ;
#
# #OTHER ORIGINAL STATEMENTS IF ANY
#
#################################################################
#################################################################
# Properties (sorted as in GSheet working document)
#################################################################
##########################################
########## Intrinsic properties ##########
##########################################
### https://w3id.org/mod#acronym
mod:acronym rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf rdfs:label ;
rdfs:label "acronym"@en ,
"acronyme"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range xsd:string ;
dcterms:description "MOD: Short acronym label, often used as an identifier within some ontology platforms such as BioPortal or OBO Foundry. OMV: A short name by which an ontology is formally known."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation <http://www.isibang.ac.in/ns/mod/1.0/acronym> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: A.1" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
### http://purl.org/dc/terms/title
dcterms:title rdf:type rdf:Property ;
rdfs:subPropertyOf dc:title ;
rdfs:label "title"@en ,
"titre"@fr ;
rdfs:range rdfs:Literal ;
dcterms:description "DCTERMS: A name given to the resource. OMV: The name by which an ontology is formally known. CC : The name the creator of a Work would like used when attributing re-use. RDFS: A human-readable name for the subject. FOAF: A name for some thing. SKOS: The preferred and alternative labels are useful when generating or creating human-readable representations of a knowledge organization system. SCHEMA: The name of the item."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
dcterms:relation cc:attributionName ,
omv:name ,
schema:name ,
skos:prefLabel ,
foaf:name ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.1" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
### http://purl.org/dc/terms/alternative
dcterms:alternative rdf:type rdf:Property ;
rdfs:subPropertyOf dc:title , dcterms:title ;
rdfs:label "alternative name"@en ,
"nom alternatif"@fr ;
rdfs:range rdfs:Literal ;
dcterms: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 (see 'preferredPrefix')."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2000-07-11"^^xsd:date ;
dcterms:relation idot:alternatePrefix ,
schema:alternateName ,
skos:altLabel ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.1" ,
"FAIR principle: F2" .
### http://www.w3.org/2004/02/skos/core#hiddenLabel
skos:hiddenLabel rdf:type rdf:Property ,
owl:AnnotationProperty ;
rdfs:subPropertyOf rdfs:label ;
rdfs:label "hidden label"@en ,
"nom caché"@fr ;
rdfs:range rdfs:Literal ;
dcterms:description "MOD: Hidden or past name. 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."@en;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
dcterms:issued "2009-08-18"^^xsd:date ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.4> ;
pav:importedOn "2018-08-02"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.1" ,
"FAIR principle: F2" ;
#OTHER ORIGINAL STATEMENTS IF ANY
rdfs:comment "S12 (not formally stated): The range of skos:hiddenLabel is the class of RDF plain literals. S13 (not formally stated): skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."@en .
### https://w3id.org/mod#URI
mod:URI rdf:type owl:DatatypeProperty ;
rdfs:label "URI"@en ,
"URI"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range xsd:anyURI ;
dcterms:description "OMV: The URI of the ontology which is described by this metadata."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation omv:URI ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: A.4" ,
"FAIR principle: F1" ,
"FAIRsFAIR profile: OPTIONAL" .
### http://www.w3.org/2002/07/owl#versionIRI
owl:versionIRI rdf:type owl:OntologyProperty ;
rdfs:label "version IRI"@en ,
"IRI de la version"@fr ;
rdfs:domain owl:Ontology ;
rdfs:range owl:Ontology ;
dcterms:description "OWL: The property that identifies the version IRI of an ontology."@en ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
dcterms:issued "2004-02-10"^^xsd:date ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.4" ,
"FAIR principle: F1" ,
"FAIRsFAIR profile: MANDATORY" .
### http://purl.org/dc/terms/identifier
dcterms:identifier rdf:type rdf:Property ;
rdfs:subPropertyOf dc:identifier ;
rdfs:label "Other identifier"@en ,
"Autre identifiant"@fr ;
rdfs:range rdfs:Literal ;
dcterms: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."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
dcterms:relation skos:notation ,
adms:identifier ,
schema:identifier ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F1,A1" ,
"FAIRsFAIR profile: MANDATORY" .
### http://www.w3.org/2002/07/owl#versionInfo
owl:versionInfo rdf:type owl:AnnotationProperty ;
rdfs:label "version information"@en ,
"information de version"@fr ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource ;
dcterms:description "MOD: The version of the released ontology. OMV: The version information of the ontology. SCHEMA : The version of the CreativeWork embodied by a specified resource. OWL: The annotation property that provides version information for an ontology or another OWL construct. PAV: The version number of a resource. This is a freetext string, typical values are '1.5' or '21'. DOAP: A project release."@en ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
dcterms:issued "2004-02-10"^^xsd:date ;
dcterms:relation omv:version ,
pav:version ,
doap:release ,
oboinowl:data-version ,
oboinowl:hasVersion ,
schema:version ,
<http://www.isibang.ac.in/ns/mod/1.0/version> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.1" ,
"FAIR principle: R1.2" .
### https://w3id.org/mod#status
mod:status rdf:type owl:DatatypeProperty ;
rdfs:label "status"@en ,
"statut"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range xsd:string ;
dcterms:description "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 is 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: The status of the Asset in the context of a particular workflow process."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation idot:state ,
adms:status ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "FAIR principle: A2" ,
"FAIRsFAIR profile: RECOMMENDED" .
### http://www.w3.org/2002/07/owl#deprecated
owl:deprecated rdf:type owl:AnnotationProperty ;
rdfs:label "deprecated"@en ,
"obsolète"@fr ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource ;
dcterms:description "OWL: The annotation property that indicates that a given entity has been deprecated. 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. 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'."@en ;
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
dcterms:issued "2004-02-10"^^xsd:date ;
dcterms:relation idot:obsolete ,
<http://www.isibang.ac.in/ns/mod/1.1/deprecated> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.1> ;
pav:importedOn "2016-09-02"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: A2" .
### http://purl.org/dc/terms/license
dcterms:license rdf:type rdf:Property ;
rdfs:subPropertyOf dc:rights , dcterms:rights ;
rdfs:label "license"@en ,
"licence"@fr ;
dcterms: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. DCTERMS:rights Information about rights held in and over the resource. OMV: Underlying license model. SCHEMA: A license document that applies to this content, typically indicated by URL. CC : A Work has a License.DUBLIN CORE : Information about rights held in and over the resource.DCMI : A legal document giving official permission to do something with the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2004-06-14"^^xsd:date ;
dcterms:relation cc:license ,
omv:license ,
schema:license ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.3" ,
"FAIR principle: A2" ,
"FAIRsFAIR profile: MANDATORY" ;
#OTHER ORIGINAL STATEMENTS IF ANY
<http://purl.org/dc/dcam/rangeIncludes> dcterms:LicenseDocument .
### https://w3id.org/mod#hasRepresentationLanguage
mod:hasRepresentationLanguage
rdf:type owl:DatatypeProperty ;
rdfs:label "representation language"@en ,
"language de représentation"@fr ;
rdfs:domain mod:SemanticArtefactDistribution ;
rdfs:range xsd:anyURI ;
dcterms:description "MOD: A language that is used to create an ontology. OMV: The ontology language."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation omv:hasOntologyLanguage ,
schema:fileFormat ,
<http://www.isibang.ac.in/ns/mod/1.0/ontologyDesignLanguage> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: E.1" ,
"FAIR principle: I1" ,
"FAIRsFAIR profile: MANDATORY" .
### https://w3id.org/mod#hasFormalityLevel
mod:hasFormalityLevel
rdf:type owl:DatatypeProperty ;
rdfs:label "formality level"@en ,
"niveau de formalisme"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range xsd:string ;
dcterms:description "MOD: The level of formality of an ontology. OMV: Level of formality of the ontology."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation omv:hasFormalityLevel ,
schema:fileFormat ,
<http://www.isibang.ac.in/ns/mod/1.0/formalityLevel> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: E.1" ,
"FAIR principle: I1" .
### https://w3id.org/mod#hasSyntax
mod:hasSyntax rdf:type owl:DatatypeProperty ;
rdfs:label "syntax"@en ,
"syntaxe"@fr ;
rdfs:domain mod:SemanticArtefactDistribution ;
rdfs:range xsd:anyURI ;
dcterms:description "MOD: The syntax followed in the creation of an ontology. OMV: The presentation syntax for the ontology langage. DUBLIN CORE : The file format, physical medium, or dimensions of the resource."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation omv:hasOntologySyntax ,
dcterms:format ,
<http://www.isibang.ac.in/ns/mod/1.0/syntax> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: E.1" ,
"FAIR principle: I1" ,
"FAIRsFAIR profile: MANDATORY" .
### http://purl.org/dc/terms/language
dcterms:language rdf:type rdf:Property ;
rdfs:subPropertyOf dc:language ;
rdfs:label "natural language"@en ,
"langage naturel"@fr ;
dcterms: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 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] 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 : Media type, typically MIME format (see IANA site) of the content. "@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
dcterms:relation omv:naturalLanguage ,
schema:inLanguage ,
doap:language ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ,
"FAIRsFAIR profile: RECOMMENDED" ;
#OTHER ORIGINAL STATEMENTS IF ANY
<http://purl.org/dc/dcam/rangeIncludes> dcterms:LinguisticSystem .
##########################################
######## Description properties ##########
##########################################
### http://purl.org/dc/terms/description
dcterms:description rdf:type rdf:Property ;
rdfs:subPropertyOf dc:description ;
rdfs:label "description"@en ,
"description"@fr ;
dcterms:description "DCTERMS: An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. OMV: Free text description of an ontology. SCHEMA: A description of the item. DOAP: Plain text description of a project, of 2-4 sentences in length."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
dcterms:relation omv:description ,
schema:description ,
doap:description ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: C.3" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
### http://purl.org/dc/terms/abstract
dcterms:abstract rdf:type rdf:Property ;
rdfs:subPropertyOf dc:description , dcterms:description ;
rdfs:label "abstract"@en ,
"résumé"@fr ;
dcterms:description "DCTERMS: A summary of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2000-07-11"^^xsd:date ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" .
### http://creativecommons.org/ns#morePermissions
cc:morePermissions rdf:type rdf:Property ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:label "more permissions"@en ,
"droits d'accès détaillés"@fr ;
rdfs:domain cc:Work ;
rdfs:range rdfs:Resource ;
dcterms:description "CC: A related resource which describes additional permissions or alternative licenses for a Work which may be available."@en ;
rdfs:isDefinedBy <http://creativecommons.org/ns#> ;
dcterms:issued "2008-03-03"^^xsd:date ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.4> ;
pav:importedOn "2018-08-02"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: R1.1" .
### http://creativecommons.org/ns#useGuidelines
cc:useGuidelines rdf:type rdf:Property ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:label "use guidelines"@en ,
"guide d'utilisation"@fr ;
rdfs:domain cc:Work ;
rdfs:range rdfs:Resource ;
dcterms:description "CC: A related resource which defines non-binding use guidelines for the work."@en ;
rdfs:isDefinedBy <http://creativecommons.org/ns#> ;
dcterms:issued "2008-03-03"^^xsd:date ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.4> ;
pav:importedOn "2018-08-02"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: R1.1" .
### http://purl.org/dc/terms/bibliographicCitation
dcterms:bibliographicCitation
rdf:type rdf:Property ;
rdfs:subPropertyOf dc:identifier , dcterms:identifier;
rdfs:label "bibliographic reference"@en ,
"référence bibliographique";
rdfs:range rdfs:Literal ;
dcterms:description "DCTERMS: A bibliographic reference for the resource. Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible. OMV: List of bibliographic references describing the ontology and its applications. FOAF: A document that this thing is the primary topic of. SCHEMA: A citation or reference to another creative work, such as another publication, web page, scholarly article, etc."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2003-02-15"^^xsd:date ;
dcterms:relation omv:reference ,
foaf:isPrimaryTopicOf ,
schema:citation ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ,
"FAIRsFAIR profile: OPTIONAL" .
### http://www.w3.org/ns/dcat#landingPage
dcat:landingPage rdf:type rdf:Property , owl:ObjectProperty ;
rdfs:subPropertyOf foaf:page ;
rdfs:label "landing page"@en ,
"page d'atterrissage"@fr ;
rdfs:range foaf:Document ;
dcterms:description "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. MOD: A link to the documentation page on a thing. 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: FOAF: A page or document about this thing."@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
dcterms:issued "2014-01-16"^^xsd:date ;
dcterms:relation omv:documentation ,
vann:usageNote ,
doap:wiki ,
rdfs:seeAlso ,
<http://www.isibang.ac.in/ns/mod/1.0/document> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: C.3, F.1" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" ;
#OTHER ORIGINAL STATEMENTS IF ANY
skos: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."@en .
### http://www.w3.org/ns/dcat#accessURL
dcat:accessURL rdf:type rdf:Property , owl:ObjectProperty ;
rdfs:label "access URL"@en ,
"URL d'accès"@fr ;
rdfs:domain dcat:Distribution ;
rdfs:range rdfs:Resource ;
dcterms:description "DCAT: 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. OMV: The location where the ontology can be found. It should be accessible via a URL. It can be the same as the value for URI property. DOAP: Web page from which the project software can be downloaded."@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
dcterms:issued "2014-01-16"^^xsd:date ;
dcterms:relation omv:resourceLocator ,
doap:download-page ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.4" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" ;
#OTHER ORIGINAL STATEMENTS IF ANY
skos: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."@en .
### http://www.w3.org/2000/01/rdf-schema#comment
rdfs:comment rdf:type rdf:Property ;
rdfs:label "notes or comments"@en ,
"notes ou commentaires"@fr ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Literal ;
dcterms: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."@en ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
dcterms:issued "2002-04-30"^^xsd:date ;
dcterms:relation omv:notes ,
dcterms:description ,
adms:versionNotes ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" .
### http://www.w3.org/ns/dcat#keyword
dcat:keyword rdf:type rdf:Property , owl:DatatypeProperty ;
rdfs:subPropertyOf dcterms:subject ;
rdfs:label "keyword"@en ,
"motclé"@fr ;
rdfs:range rdfs:Literal ;
dcterms:description "DCAT: A keyword or tag describing a resource. MOD: A keyword(s) is used to describe the content of an ontology. OMV: List of keywords related to an ontology. SCHEMA: Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.CTERMS : A keyword(s) is used to describe the content of an ontology"@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
dcterms:issued "2014-01-16"^^xsd:date ;
dcterms:relation omv:keywords ,
schema:keywords ,
<http://www.isibang.ac.in/ns/mod/1.1/keyword> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: C.1" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
### http://purl.org/dc/terms/type
dcterms:type rdf:type rdf:Property ;
rdfs:subPropertyOf dc:type ;
rdfs:label "type"@en ,
"type"@fr ;
dcterms:description "DCTERMS: The nature or genre of the resource. Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the property Format. OMV: The nature of the content of the ontology."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
dcterms:relation omv:isOfType ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
### https://w3id.org/mod#designedForTask
mod:designedForTask rdf:type owl:ObjectProperty ;
rdfs:label "designed for task"@en ,
"concou pour la tâche"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range mod:SemanticArtefactTask ;
dcterms:description "OMV: The purpose for which the ontology was originally designed."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: B.1" ,
"FAIR principle: R1.2" .
### http://purl.org/pav/createdWith
mod:createdWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf prov:wasAttributedTo ;
rdfs:label "created with"@en ,
"crée avec"@fr ;
dcterms: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."@en ;
rdfs:isDefinedBy <http://purl.org/pav/> ;
dcterms:issued "2014-08-28"^^xsd:date ;
dcterms:relation omv:usedOntologyEngineeringTool ,
oboinowl:auto-generated-by ,
<http://www.isibang.ac.in/ns/mod/1.0/toolUsed> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: E.2" ,
"FAIR principle: R1.2" ,
"FAIRsFAIR profile: OPTIONAL" .
### https://w3id.org/mod#usedEngineeringMethodology
mod:usedEngineeringMethodology
rdf:type owl:ObjectProperty ;
rdfs:label "engineering methodology"@en ,
"méthodologie de développement"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range mod:EngineeringMethodology ;
dcterms:description "MOD: A methodolgy follwoing which an ontology is created.
OMV: Information about the method model used to create the ontology.
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).
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."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation adms:representationTechnique ,
schema:publishingPrinciples ,
<http://www.isibang.ac.in/ns/mod/1.0/methodologyUsed> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: A.6" ,
"FAIR principle: R1.2" ,
"FAIRsFAIR profile: RECOMMENDED" .
### https://w3id.org/mod#conformsToKnowledgeRepresentationParadigm
mod:conformsToKnowledgeRepresentationParadigm
rdf:type owl:ObjectProperty ;
rdfs:label "knowledge representation paradigm"@en ,
"paradigme de représentation des connaissances"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range mod:KnowledgeRepresentationParadigm ;
dcterms:description "MOD: A representation formalism that is followed to describe knowledge in an ontology. Example includes description logics, first order logic, etc. dcterms: An established standard to which the described resource conforms. OMV: Information about the paradigm model used to create the ontology. DCTERMS: An established standard to which the described resource conforms."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
dcterms:relation omv:conformsToKnowledgeRepresentationParadigm ,
dcterms:conformsTo ,
<http://www.isibang.ac.in/ns/mod/1.0/knowledgeRepresentationFormalism> ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
skos:historyNote "This property has been adopted from OMV Ontology Metadata Vocabulary and redefined in the MOD namespace."@en ;
prov:wasInfluencedBy "MIRO guidelines: E.1" ,
"FAIR principle: R1.2" ,
"FAIRsFAIR profile: RECOMMENDED" .
### http://purl.org/dc/terms/coverage
dcterms:coverage rdf:type rdf:Property ;
rdfs:subPropertyOf dc:coverage ;
rdfs:label "coverage"@en ,
"couverture"@fr ;
dcterms: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."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
dcterms:relation dcterms:spatial ,
dcterms:temporal ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: C.1" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: RECOMMENDED" ;
#OTHER ORIGINAL STATEMENTS IF ANY
<http://purl.org/dc/dcam/rangeIncludes> dcterms:Jurisdiction, dcterms:Location, dcterms:Period .
### https://w3id.org/mod#competencyQuestion
mod:competencyQuestion
rdf:type owl:DatatypeProperty ;
rdfs:label "competency question"@en ,
"question de compétence"@fr ;
rdfs:domain mod:SemanticArtefact ;
rdfs:range xsd:string ;
dcterms:description "A set of questions made to build an ontology at the design time."@en ;
rdfs:isDefinedBy <https://w3id.org/mod> ;
dcterms:issued "2015-08-05"^^xsd:dateTime ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.6, D.3" ,
"FAIR principle: R1.2" ,
"FAIRsFAIR profile: OPTIONAL" .
### http://xmlns.com/foaf/0.1/depiction
foaf:depiction rdf:type rdf:Property , owl:ObjectProperty ;
rdfs:label "depiction"@en ,
"représentation"@fr ;
rdfs:domain owl:Thing ;
rdfs:range foaf:Image ;
dcterms:description "FOAF: A depiction of some thing. DOAP: Web page with screenshots of project. An image of the item. This can be a URL or a fully described ImageObject."@en ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
dcterms:issued "2014-01-14"^^xsd:date ;
dcterms:relation schema:image ,
doap:screenshots ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ;
#OTHER ORIGINAL STATEMENTS IF ANY
owl:inverseOf foaf:depicts .
### http://xmlns.com/foaf/0.1/logo
foaf:logo rdf:type rdf:Property , owl:InverseFunctionalProperty , owl:ObjectProperty ;
rdfs:label "logo"@en ,
"logo"@fr ;
rdfs:domain owl:Thing ;
rdfs:range owl:Thing ;
dcterms:description "FOAF: A logo representing some thing. SCHEMA: An associated logo."@en ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
dcterms:issued "2014-01-14"^^xsd:date ;
dcterms:relation schema:logo ;
pav:derivedFrom <http://www.isibang.ac.in/ns/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:dateTime ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ;