-
Notifications
You must be signed in to change notification settings - Fork 9
/
mod.ttl
4061 lines (3448 loc) · 277 KB
/
mod.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 owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@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 door: <http://kannel.open.ac.uk/ontology#> .
@prefix omv: <http://omv.ontoware.org/2005/05/ontology#> .
@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/dcat#> .
@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#> .
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@base <https://w3id.org/mod> .
<https://w3id.org/mod> rdf:type owl:Ontology .
###################################################################################
# MOD ontology for Metadata for Ontology Description and Publication Ontology
###################################################################################
##############################################################################
# MOD description using MOD
##############################################################################
<https://w3id.org/mod#>
rdf:type mod:SemanticArtefact ;
########## General ##########
mod:acronym "MOD" ;
dcterms:title "Metadata for Ontology Description and publication"@en,
"Metadonnées pour la Description et la publication d'Ontologies"@fr ,
"Metadatos para la Descripción y Publicación de Ontologías"@es;
owl:ontologyIRI <https://w3id.org/mod> ;
mod:URI <https://w3id.org/mod> ;
owl:versionIRI <https://w3id.org/mod/3.2> ;
# dcterms:identifier ;
owl:versionInfo "3.2" ;
mod:status "alpha" ;
owl:deprecated false ;
mod:hasRepresentationLanguage omv:OWL ;
mod:hasFormalityLevel omv:Vocabulary ;
mod:hasSyntax <http://www.w3.org/ns/formats/Turtle> ;
dcterms:language <http://lexvo.org/id/iso639-1/en> ,
<http://lexvo.org/id/iso639-1/fr> ,
<http://lexvo.org/id/iso639-1/es> ;
dcterms:type omv:TaskOntology ;
########## Licensing ##########
dcterms:accessRights "MOD is licensed under the Creative Commons Attribution 4.0. For details, see here: https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE"@en ,
"MOD est disponible sous Licence Creative Commons Attribution 4.0. pour plus de details voir https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE"@fr ,
"MOD está disponible bajo la licencia Creative Commons Attribution 4.0. para obtener más detalles, consulte https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE"@es ;
dcterms:license <https://creativecommons.org/licenses/by/4.0> ;
cc:useGuidelines "MOD is free of use; feedback is welcome."@en ,
"MOD peut être utilisée de manière libre; les retours sont appréciés"@fr ,
"MOD se puede utilizar de libremente; los comentarios y las devoluciones son bienvenidas"@es ;
cc:morePermissions "https://github.com/sifrproject/MOD-Ontology/blob/master/LICENSE" ;
dcterms:rightsHolder "Indian Statistical Institute and University of Montpellier"@en ,
"Institut Indien de la Statistique et Université de Montpellier"@fr;
# odrl:hasPolicy ;
########## Description ##########
dcterms:description "MOD (Metadata for Ontology Description and publication) is a project to define a standard way to capture metadata descriptions for ontologies or semantic resources/artefacts in general (thesaurus, terminologies, vocabularies, etc.). The MOD OWL file can be used to create knowledge bases consisting of metadata records of semantic artefacts as instances. MOD can also be used to define specific profiles for recommended metadata properties (e.g., H2020 project FAIRsFAIR semantic artefact minimum metadata profile). Users can go through MOD and pickup the required properties to describe their semantic artefacts."@en,
"MOD (Metadonnées pour la Description et la publication d'Ontologie) est un projet visant à définir un moyen standard pour capturer 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 MOD OWL peut être utilisé pour créer des bases de connaissances composées d’instances d’artefacts sémantiques décrits avec MOD. Le vocabulaire MOD peut également être utilisé pour définir des profils de métadonnées (e.g., le profil de métadonnées minimale pour les artefacts sémantiques du projet H2020 FAIRsFAIR). Les utilisateurs peuvent consulter la spécification et récupérer les propriétés requises pour décrire leur artefacts sémantiques."@fr ,
"MOD (Metadatos para la Descripción y Publicación de Ontologías) es un proyecto para definir un manera estándar de capturar las descripciones de metadatos para ontologías o recursos/artefactos semánticos en general (tesauros, terminologías, vocabularios, etc.). El archivo MOD se puede usar para crear bases de conocimiento consistentes en registros de metadatos de artefactos semánticos como instancias. El vocabulario MOD puede utilizarse también para definir perfiles específicos para las propiedades de metadatos recomendadas (e.g. el perfil de metadatos mínimo del projecto H2020 FAIRsFAIR). Los usuarios pueden recorrer MOD y elegir las propiedades requeridas para describir su artefactos semánticos."@es;
foaf:homepage <https://github.com/sifrproject/MOD-Ontology> ;
# dcat:landingPage ;
rdfs:comment "This project is connected to the work done within AgroPortal (since MOD1.4). MOD 3.0 is work in progress now within the FAIR-IMPACT Horizon Europe project."@en ,
"Ce projet est lié au travail mis en œuvre dans AgroPortal (depuis MOD1.4). MOD 3.0 est actuellement en cours de développement au sein du projet Horizon Europe FAIR-IMPACT."@fr ,
"Este proyecto está relacionado con el trabajo realizado en AgroPortal (desde MOD1.4). MOD 3.0 es un trabajo en curso en el marco del proyecto Horizonte Europa FAIR-IMPACT."@es ;
dcat:keyword "metadata description, metadata vocabularies, ontology description, ontology profile"@en ,
"description de métadonnées, vocabulaires de métadonnées, description d'ontologie, profil d'ontologie"@fr ,
"descripción de metadatatos, vocabularies de metadatos, descripción de ontologías, perfil de ontologías"@es ;
dcterms:alternative "MOD Vocabulary"@en ,
"Vocabulaire MOD"@fr ,
"MOD Ontology Metadata model"@en ,
"Modèle de métadonnées d'ontologie MOD"@fr ;
skos:hiddenLabel "MOD-Ontology"@en;
dcterms:abstract "MOD provides a set of properties which can be used by ontology or semantic artefact developers, or by semantic artefact catalogues (e.g., library, registry, repository, portal), to describe and publish semantic artefacts. The enriched description of semantic artefacts, in turn, will help users to search, discover, identify and select semantic artefacts."@en ,
"MOD fournit un ensemble de propriétés pouvant être utilisées par les développeurs d’ontologies, d'artefact sémantique ou les catalogues d'artéfact sémantiques (portails, registre, bibliothèque), pour décrire et publier des artefacts sémantiques. La description enrichie des artefacts sémantiques aidera les utilisateurs à rechercher, découvrir, identifier et sélectionner des artefacts sémantiques."@fr ,
"MOD provee un conjunto de propiedades que pueden usarse por desarroladores de ontologías, o artefactos semánticos, o catálogos de artefactos semánticos (e.g., registros, repositorios, portales), para describir y publicar artefactos semánticos. La descripción enriquecida de artefactos semánticos, a su vez, ayudará a los usuarios a buscar, descubrir, identificar y seleccionar los artefactos semánticos."@es ;
dcterms:bibliographicCitation <https://dx.doi.org/10.1007/978-3-319-70863-8_17> ;
dcterms:isReferencedBy <https://doi.org/10.1371/journal.pcbi.1009041> ,
<https://doi.org/10.1007/978-3-031-47243-5_3> ,
<https://doi.org/10.1007/978-3-031-11609-4_17> ,
<https://doi.org/10.5771/0943-7444-2020-2-138> ,
<https://doi.org/10.1007/s13740-018-0091-5> ;
########## Dates ##########
dcterms:created "2015-08-05" ;
dcterms:modified "2024-06-25" ;
# dcterms:valid ;
# pav:curatedOn ;
# dcterms:dateSubmitted ;
########## Persons and organizations ##########
dcat:contactPoint "Biswanath Dutta (bisu@drtc.isibang.ac.in)" ,
"Clement Jonquet (jonquet@lirmm.fr)" ;
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)" ,
"Luiz Bonino (https://orcid.org/0000-0002-1164-1351)" ,
"Yann Le Franc (https://orcid.org/0000-0003-4631-418X)" ,
"Udaya Varadarajan (https://orcid.org/0000-0002-4936-0272)" ,
"Alejandra Gonzalez-Beltran (https://orcid.org/0000-0003-3499-8262)" ,
"Antony Wilson (https://orcid.org/0000-0001-7336-4823)" ;
pav:curatedBy "Anne Toulet (https://orcid.org/0000-0003-0463-0854)" ,
"Alejandra Gonzalez-Beltran (https://orcid.org/0000-0003-3499-8262)" ,
"Clement Jonquet (https://orcid.org/0000-0002-2404-1582)" ;
schema:translator "Alejandra Gonzalez-Beltran (https://orcid.org/0000-0003-3499-8262)" ,
"Clement Jonquet (https://orcid.org/0000-0002-2404-1582)" ;
dcterms:publisher "Indian Statistical Institute, Bangalore Centre, India (https://www.isibang.ac.in)" ,
"LIRMM, University of Montpellier, France (http://www.lirmm.fr)" ;
foaf:fundedBy "Indian Statistical Institute, University of Montpellier, French National Research Agency, European Union’s Horizon 2020 research and innovation programme under the Marie Sklodowska-Curie and Horizon Europe INFRAEOSC program."@en ;
schema:funding "French ANR: ANR-10-LABX-20, ANR-11-BINF-0002, ANR-19-DATA-0019, European Union: No 701771, No 831558, No 101057344."@en ;
mod:endorsedBy "OntoPortal Alliance"@en ,
"Alliance OntoPortal"@fr ,
"Alianza OntoPortal"@es ;
# prov:qualifiedAttributionOf ;
########## Community ##########
# schema:comment ;
# mod:hasEvaluation ;
mod:group "Semantic Web metadata vocabularies"@en ;
mod:usedInProject "Following OntoPortal-based catalogues: AgroPortal, EcoPortal, EarthPortal, BiodivPortal, IndustryPortal; projects SIFR, D2KAB, FAIRsFAIR, FAIR-IMPACT."@en ,
"Catalogues basés sur OntoPortal suivants : AgroPortal, EcoPortal, EarthPortal, BiodivPortal, IndustryPortal; projets SIFR, D2KAB, FAIRsFAIR, FAIR-IMPACT."@fr ,
"Siguiendo los catálogos basados en OntoPortal: AgroPortal, EcoPortal, EarthPortal, BiodivPortal, IndustryPortal; proyectos SIFR, D2KAB, FAIRsFAIR, FAIR-IMPACT."@es ;
dcterms:audience "MOD primary targets ontology (or semantic resource/artefact) developers and semantic artefact catalogue providers."@en ,
"MOD s'adresse en priorité aux dévelopeurs d'ontologies (ou de ressource/artefact sémantiques) ainsi qu'au dévelopeurs de catalogues d'artéfacts sémantiques."@fr ,
"MOD se dirige principalmente a desarrolladores de ontologías (o recursos/artefactos semánticos) y a proveedores de catálogos de artefactos semánticos."@es ;
# mod:analytics ;
doap:repository <https://github.com/FAIR-IMPACT/MOD> ;
doap:bugDatabase <https://github.com/FAIR-IMPACT/MOD/issues> ;
# doap:mailing-list ;
mod:toDoList <https://github.com/FAIR-IMPACT/MOD/issues> ;
schema:award "Published at MTSR 2017"@en ,
"Publiée a MTSR 2017"@fr ;
########## Usage ##########
mod:knownUsage "MOD is used for instance in AgroPortal (http://agroportal.lirmm.fr) to provide equivalences in AgroPortal's ontology metadata model."@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."@fr ,
"MOD se utiliza, por ejemplo, en AgroPortal (http://agroportal.lirmm.fr) para proporcionar equivalencias en el modelo de metadatos de ontología de AgroPortal."@es ;
mod:designedForTask omv:ConfigurationTask ;
dcterms:subject "Metadata descriptions"@en ;
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 ,
"Ontologías o recursos/artefactos semánticos en general (tesauro, terminologías, vocabularios, etc.)"@es ;
vann:example "MOD1.4 is used within AgroPortal, since 2017. MOD2 is the baseline for H2020 project FAIRsFAIR semantic artefact minimum metadata profile."@en ,
"MOD1.4 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 ,
"MOD1.4 se utiliza en AgroPortal desde 2017. MOD2 es la base para el perfil mínimo de metadatos del artefacto semántico FAIRsFAIR del proyecto H2020."@es ;
mod:conformsToKnowledgeRepresentationParadigm "OWL Ontology" ;
mod:usedEngineeringMethodology "MOD 1 has been designed by reviewing in total 23 standard existing metadata vocabularies (e.g., Dublin Core, OMV, DCAT, VoID) and selecting relevant properties for describing ontologies. Then, we studied metadata usage analytics within ontologies and ontology repositories. MOD 2 abandon the integration approach of MOD 1 but re-incorporates properties of several obsolete metadata vocabularies inside its own namespace (DOOR, OMV, VOAF). MOD 2 is designed as an extension of the DCAT 2 metadata vocabulary. MOD3 was built as a consolidaiton of the DCAT 2 profile and include multiple other properties for different objects (not only mod:SemanticArtefact and mod:SemanticArtefactDistribution)."@en ,
"MOD 1 a été conçu en examinant au total 23 vocabulaires de métadonnées standard existants (par exemple, Dublin Core, OMV, DCAT, VoID) et en sélectionnant les propriétés pertinentes pour décrire les ontologies. Ensuite, nous avons étudié l'analyse de l'utilisation des métadonnées au sein des ontologies et des référentiels d'ontologies. MOD 2 abandonne l'approche d'intégration de MOD 1 mais réintègre les propriétés de plusieurs vocabulaires de métadonnées obsolètes dans son propre espace de noms (DOOR, OMV, VOAF). MOD 2 est conçu comme une extension du vocabulaire de métadonnées DCAT 2. MOD3 a été construit comme une consolidation du profil DCAT 2 et inclut plusieurs autres propriétés pour différents objets (pas seulement mod:SemanticArtefact et mod:SemanticArtefactDistribution)."@fr ,
"MOD 1 ha sido diseñado revisando un total de 23 vocabularios de metadatos estándar existentes (por ejemplo, Dublin Core, OMV, DCAT, VoID) y seleccionando propiedades relevantes para describir ontologías. Luego, estudiamos el análisis del uso de metadatos dentro de las ontologías y los repositorios de ontologías. MOD 2 abandona el enfoque de integración de MOD 1, pero reincorpora propiedades de varios vocabularios de metadatos obsoletos dentro de su propio espacio de nombres (DOOR, OMV, VOAF). MOD 2 está diseñado como una extensión del vocabulario de metadatos DCAT 2. MOD3 se construyó como una consolidación del perfil DCAT 2 e incluye múltiples otras propiedades para diferentes objetos (no solo mod:SemanticArtefact y mod:SemanticArtefactDistribution)."@es ;
pav:createdWith "Protégé" ,
"Text editor" ;
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 ,
"Cuando el equipo de desarrolladores identifica la necesidad de una nueva propiedad, revisamos los vocabularios de metadatos clásicos/estándares para identificar si la propiedad deseada ya existe. Si existe en varios vocabularios de metadatos, damos prioridad a la coherencia con las opciones anteriores del MOD, luego a las recomendaciones del W3C y luego a los estándares de la comunidad."@es ;
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 ,
"Se añaden nuevas propiedades a demanda sin una periodicidad específica."@es ;
dcterms:accrualPolicy "Editorial choice of the developer team."@en ,
"Choix éditorial de l'équipe de développeurs."@fr ,
"Elección editorial del equipo desarrollador."@es ;
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 ,
"¿Cómo capturar de forma estandarizada y semántica la descripción de una ontología apoyándose en otros vocabularios de metadatos existentes?"@es ;
mod:sampleQueries "For sample SPARQL queries to query MOD OWL knowledge base, see here: https://github.com/FAIR-IMPACT/MOD/blob/main/resources/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 ,
"Para ver ejemplos de consultas SPARQL para consultar la base de conocimiento MOD OWL, consulte aquí: https://github.com/FAIR-IMPACT/MOD/blob/main/resources/SPARQL_Queries_on_MOD_1.2.3-with-instances.txt"@es ;
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 MOD2, 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 ,
"MOD es el resultado de un proceso manual de identificación, revisión y selección de propiedades candidatas de los vocabularios de metadatos de estándares, si son relevantes para describir una ontología o cualquier tipo de recurso semántico. Cuando no se puede identificar una propiedad, se la puede crear en el espacio de nombres MOD. Desde MOD2, se ha creado como una extensión de DCAT2."@es ;
# prov:wasInvalidatedBy ;
# mod:FairAssessment ;
########## Object description properties ##########
mod:prefLabelProperty rdfs:label ;
mod:synonymProperty skos:altLabel ;
mod:definitionProperty dcterms:description ;
mod:authorProperty pav:importedBy ;
mod:obsoleteProperty owl:deprecated ;
mod:createdProperty dcterms:issued ;
mod:modifiedProperty pav:importedOn ;
mod:hierarchyProperty rdfs:subClassOf ;
########## Links ##########
dcat:accessURL <https://github.com/FAIR-IMPACT/MOD/blob/main/mod.ttl> ;
# dcterms:isFormatOf ;
# dcterms:hasFormat ;
dcat:downloadURL <https://raw.githubusercontent.com/FAIR-IMPACT/MOD/main/mod.ttl> ;
# "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:uriLookupEndpoint ;
# void:openSearchDescription ;
# mod:browsingUI ;
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 ,
"La descripción del origen de MOD está disponible en https://dx.doi.org/10.1007/978-3-319-70863-8_17 y https://doi.org/10.1007/s13740-018-0091-5"@es ;
# sd:sparqlEndpoint ;
# schema:includedInDataCatalog ;
########## Relations ##########
# owl:imports ;
owl:priorVersion <https://w3id.org/mod/3.0> ,
<https://w3id.org/mod/2.0> ,
<https://w3id.org/mod/1.4> ,
<https://w3id.org/mod/1.2> ,
<https://w3id.org/mod/1.1> ,
<https://w3id.org/mod/1.0> ;
# dcterms:isPartOf ;
# dcterms:hasPart ;
mod:specializes <http://www.w3.org/ns/dcat#>;
mod:generalizes <http://omv.ontoware.org/2005/05/ontology> ,
<http://purl.org/vocommons/voaf#> ,
<http://kannel.open.ac.uk/ontology#> ;
# mod:usedBy
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 utiliza o se relaciona con cada uno de estos vocabularios: ADMS, CC, DCAT, DC, DCT, DOAP, DOOR, FOAF, IDOT, OBOINOWL, OMV, OWL, NKOS, PAV, PROV, RDFS, SCHEMA, SD, SKOS, VANN, VOAF, VOID."@es ;
mod:reliesOn <http://www.w3.org/ns/dcat#>;
dcterms:relation <http://www.w3.org/ns/dcat#>;
mod:similar "OMV,VANN,VOAF,VOID" ;
mod:comesFromTheSameDomain "OBOINOWL,OMV,OWL,NKOS,RDFS,SKOS,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 ,
"Las propiedades MOD se 'reutilizan' a partir de las propiedades de cada uno de estos vocabularios: ADMS, CC, DCAT, DC, DCT, DOAP, FOAF, IDOT, OBOINOWL, OWL, NKOS, PAV, PROV, RDFS, SCHEMA, SD, SKOS, VANN, VOID. Las reutilizaciones se formalizan mediante una relación dcterms:. MOD2 redefine las propiedades de DOOR, OMV, VOAF."@es ;
owl:backwardCompatibleWith <http://omv.ontoware.org/2005/05/ontology> ;
owl:incompatibleWith <http://purl.org/vocommons/voaf#> ,
<http://kannel.open.ac.uk/ontology> ;
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 ,
"DOAP (MOD reutiliza las propiedades de ambos objetos doap:Project y foaf:Document que son disjuntos)."@es ;
# mod:hasDisjunctionsWith ;
# schema:workTranslation ;
# schema:translationOfWork ;
########## Content ##########
void:uriRegexPattern "OriginalURI | BaseURI+ShortName" ;
vann:preferredNamespaceUri <https://w3id.org/mod> ;
vann:preferredNamespacePrefix "mod" ;
# mod:obsoleteParent ;
void:exampleResource <https://w3id.org/mod#acronym> ;
foaf:primaryTopic "semantic artefact, ontology, vocabulary, terminology, thesaurus"@en ,
"artefact sémantique, ontologie, vocabulaire, terminologie, thésaurus"@fr ,
"artefacto semántico, ontología, vocabulario, terminología, tesauro"@es ;
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/> ;
# void:rootResource ;
# void:classPartition ;
# void:propertyPartition ;
# dcterms:hasVersion ;
vann:changes "From MOD 1.2: (i) added description of properties, (ii) extended number of properties (from 88 to 128), (iii) separation of profile and ontology files, (iv) new URIs scheme. From MOD2.0: (i) use of w3id URIs, (ii) integration of DOOR, OMV, VOAF properties within MOD namespace, (iii) compliant with DCAT2. After, visit: https://github.com/FAIR-IMPACT/MOD/commits/main/mod.ttl"@en ,
"Depuis MOD 1.2 : (i) ajout de la description des propriétés, (ii) nombre étendu de propriétés (de 88 à 128), (iii) séparation des fichiers de profil et d’ontologie, (iv) nouveaux URI. Depuis MOD2.O : (i) utilisation de w3id pour les URIs, (ii) intégration des propriétés de DOOR, OMV et VOAF dans l'espace de nommage de MOD, (iii) compatible avec DCAT2. Après, visitez : https://github.com/FAIR-IMPACT/MOD/commits/main/mod.ttl"@fr ,
"De MOD 1.2: (i) descripción de propiedades añadida, (ii) número extendido de propiedades (de 88 a 128), (iii) separación de archivos de perfil y ontología, (iv) nuevo esquema de URI. De MOD2.0: (i) uso de URI w3id, (ii) integración de propiedades DOOR, OMV, VOAF dentro del espacio de nombres MOD, (iii) cumplimiento con DCAT2. Después, visite: https://github.com/FAIR-IMPACT/MOD/commits/main/mod.ttl"@es ;
########## Media ##########
schema:associatedMedia <https://drive.google.com/drive/folders/1kSF0XuSr9mwBk-daR6RYut_1Dzzko33v> ;
foaf:depiction <https://github.com/FAIR-IMPACT/MOD/blob/main/figures/MOD2.0_summary.png> ;
# foaf:logo ;
########## Metrics ##########
mod:numberOfClasses 42 ;
mod:numberOfIndividuals 28 ;
mod:numberOfProperties 140 ;
mod:numberOfObjectProperties 70 ;
mod:numberOfDataProperties 70 ;
mod:numberOfAxioms 2522 ;
# mod:numberOfLabels
mod:numberOfDeprecated 0 ;
dcat:byteSize "282Ko" ;
# mod:maxDepth
# mod:maxChildCount
# mod:averageChildCount
# mod:classesWithOneChild
mod:classesWithMoreThan25Children 0 ;
# mod:classesWithNoDefinition
# mod:classesWithNoFormalDefinition
mod:classesWithNoLabel 0 ;
# mod:classesWithNoAuthorMetadata
# mod:classesWithNoDateMetadata
# mod:numberOfNotes
mod:numberOfUsingProjects 5 ;
# mod:numberOfEnsorments
mod:numberOfEvaluations 0 ;
# mod:FairScore
# mod:numberOfUsers
mod:numberOfAgents 15 .
##############################################################################
# End of MOD description using MOD
##############################################################################
#################################################################
# MOD Classes
#################################################################
#################################################################
# Pattern to respect for each MOD classes
#################################################################
#
#### ClassURI
#originalns:xx rdf:type owl:Class ;
# rdfs:subClassOf SUPER CLASS IF ANY
# rdfs:label ""@en ,
# ""@fr ,
# ""@es ;
# dcterms:description DESCCRIPTION FROM ORIGINAL SOURCE OR MOD;
# rdfs:isDefinedBy URI OF ORIGINAL SOURCE ;
# dcterms:issued "DATE OF THE FIRST CREATION OF THE CLASS BY ORIGINAL RESOURCE"^^xsd:date ;
# pav:derivedFrom <http://www.isibang.ac.in/ns/mod/X.X> ;
# pav:importedOn "DATE OF FIRST MOD VERSION INCLUDING"^^xsd:date ;
# dcterms:modified "DATE OF LAST MODIIFCATION WITHIN MOD"^^xsd:date ;
#
# #OPTIONAL STATEMENTS
# prov:wasInfluencedBy <http://www.w3.org/ns/dcat> ;
# skos:historyNote "This class has been adopted from ... and renamed and redefined in the MOD namespace."@en .
#
# #OTHER ORIGINAL STATEMENTS IF ANY
#
#################################################################
### https://w3id.org/mod#SemanticArtefact
mod:SemanticArtefact
rdf:type owl:Class ;
rdfs:subClassOf dcat:Resource ;
rdfs:label "Semantic Artefact"@en ,
"Artéfact Sémantique"@fr ,
"Artefacto Semántico"@es ;
dcterms:description "Semantic Artefact is defined here as a machine-actionable and -readable formalisation of a conceptualisation enabling sharing and reuse by humans and machines. These artefacts may have a broad range of formalisation, from loose set of terms, taxonomies, thesauri to higher-order logics such as ontologies, and include the concepts/terms/classes/properties/individuals constituting these. Moreover, semantic artefacts are encoded with a variety of representation language (e.g., RDF-S, OWL, SKOS) and serialised using a variety of syntaxes (e.g., RDF/XML, Turtle, JSON-LD)."@en ,
"Un artefact sémantique est défini ici comme une formalisation exploitable et lisible par machine d'une conceptualisation permettant le partage et la réutilisation par les humains et les machines. Ces artefacts peuvent avoir une large gamme de formalisation, allant d'un ensemble de termes, de taxonomies, de thésaurus à des logiques d'ordre supérieur, telle que des ontologies, et inclure les concepts/termes/classes/propriétés/individus qui les constituent. De plus, les artefacts sémantiques sont enccodés avec une variété de langages de représentation (e.g., RDF-S, OWL, SKOS) et sérialisés à l'aide d'une variété de syntaxes (e.g., RDF/XML, Turtle, JSON-LD)."@fr ,
"Aquí, se define artefacto semántico como una formalización de una conceptualización que puede ser procesada y leída por máquinas y que permite que humanos y máquinas la compartan y la reutilicen. Estos artefactos pueden tener una amplia gama de formalizaciones, desde conjuntos de términos sueltos, taxonomías y tesauros hasta lógicas de orden superior como las ontologías, e incluyen los conceptos, términos, clases, propiedades e individuos que los constituyen. Además, los artefactos semánticos se codifican con una variedad de lenguajes de representación (por ejemplo, RDF-S, OWL, SKOS) y se serializan utilizando una variedad de sintaxis (por ejemplo, RDF/XML, Turtle, JSON-LD)."@es ;
dcterms:description "A specification of a conceptualization that may be represented by different levels of formalization (including controlled lists, thesauri and ontologies - either lightweight or heavyweight."@en ,
"Une spécification d'une conceptualisation qui peut être représentée par différents niveaux de formalisation (y compris des listes contrôlées, des thésaurus et des ontologies - soit légères, soit lourdes)."@fr ,
"Una especificación de una conceptualización que puede ser representada a distintos niveles de formalización (incluyendo listas controladas, tesaurus y ontologías."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
rdfs:seeAlso owl:Ontology, skos:ConceptScheme ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://www.w3.org/ns/dcat> .
### https://w3id.org/mod#SemanticArtefactDistribution
mod:SemanticArtefactDistribution
rdf:type owl:Class ;
rdfs:subClassOf adms:AssetDistribution ,
dcat:Distribution ;
rdfs:label "Semantic Artefact Distribution"@en ,
"Distribution d'un Artéfact Sémantique"@fr ,
"Distribución de un Artefacto Semántico"@es ;
dcterms:description "A specific representation and/or serialization of a semantic artefact."@en ,
"Une représentation et/ou une sérialisation spécifique d'un artéfact sémantique."@fr ,
"Una representación y/o serialización específica de un artefacto semántico."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://www.w3.org/ns/dcat> .
### https://w3id.org/mod#SemanticArtefactCatalogRecord
mod:SemanticArtefactCatalogRecord
rdf:type owl:Class ;
rdfs:subClassOf dcat:CatalogRecord ;
rdfs:label "Semantic Artefact Catalog Record"@en ,
"Enregistrement d'un Artéfact Sémantique dans un Catalogue"@fr ,
"Registro de un Artefacto Semántico en un Catálogo"@es ;
dcterms:description "A record in a catalog, describing the registration of a single semantic artefact"@en ,
"Un enregistrement dans un catalogue, décrivant l'enregistrement d'un seul artéfact sémantique"@fr ,
"Un registro en un catálogo, que describe el registro de un único artefacto semántico."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://www.w3.org/ns/dcat> .
### https://w3id.org/mod#SemanticArtefactCatalog
mod:SemanticArtefactCatalog
rdf:type owl:Class ;
rdfs:subClassOf dcat:Catalog ;
rdfs:label "Semantic Artefact Catalog"@en ,
"Catalogue d'Artéfacts Sémantiques"@fr ,
"Catálogo de Artefactos Semánticos"@es ;
dcterms:description "A dedicated web-based system that fosters the availability, discoverability and long-term preservation and maintenance of semantic artefacts."@en ,
"Un système Web dédié qui favorise la disponibilité, la découvrabilité et la préservation et la maintenance à long terme des artefacts sémantiques."@fr ,
"Un sistema web dedicado que fomenta la disponibilidad, la capacidad de descubrimiento y la preservación y el mantenimiento a largo plazo de artefactos semánticos."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://www.w3.org/ns/dcat> .
### https://w3id.org/mod#SemanticArtefactService
mod:SemanticArtefactService
rdf:type owl:Class ;
rdfs:subClassOf dcat:DataService ;
rdfs:label "Semantic Artefact Service"@en ,
"Service d'Artéfacts Sémantiques"@fr ,
"Servicio de Artefactos Semánticos"@es ;
dcterms:description "A collection of operations that provides access to one or more semantic artefacts processing functions."@en ,
"Un ensemble d’opérations qui donne accès à une ou plusieurs fonctions de traitement d’artefacts sémantiques."@fr ,
"Una colección de operaciones que proporciona acceso a una o más funciones de procesamiento de artefactos semánticos."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://www.w3.org/ns/dcat> .
### https://w3id.org/mod#Taxonomy
mod:Taxonomy
rdf:type owl:Class ;
rdfs:subClassOf mod:SemanticArtefact ;
rdfs:label "Taxonomy"@en ,
"Taxonomie"@fr ,
"Taxonomía"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date .
### https://w3id.org/mod#Terminology
mod:Terminology
rdf:type owl:Class ;
rdfs:subClassOf mod:SemanticArtefact ;
rdfs:label "Terminology"@en ,
"Terminologie"@fr ,
"Terminología"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date .
### https://w3id.org/mod#Thesaurus
mod:Thesaurus
rdf:type owl:Class ;
rdfs:subClassOf mod:SemanticArtefact ;
rdfs:label "Thesaurus"@en ,
"Thésaurus"@fr ,
"Tesauro"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date .
### https://w3id.org/mod#Analytics
mod:Analytics
rdf:type owl:Class ;
rdfs:label "Analytics"@en ,
"Analytique"@fr ,
"Analítica"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2018-08-02"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/1.4> ;
pav:importedOn "2018-08-02"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date .
### https://w3id.org/mod#EngineeringMethodology
mod:EngineeringMethodology
rdf:type owl:Class ;
rdfs:label "Semantic Artefact Engineering Methodology"@en ,
"Méthodologie d’ingénierie des artefacts sémantiques"@fr ,
"Metodología de ingeniería de artefactos semánticos"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://omv.ontoware.org/2005/05/ontology> ;
skos:historyNote "This class has been adopted from OMV Ontology Metadata Vocabulary, and renamed and redefined in the MOD namespace."@en .
### https://w3id.org/mod#Evaluation
mod:Evaluation
rdf:type owl:Class ;
rdfs:label "Semantic Artefact Evaluation"@en ,
"Évaluation d'un artefact sémantique"@fr ,
"Evaluación de un artefacto semántico."@es ;
dcterms:description "The results of evaluating a semantic artefact. An artefact can have more than one evaluations."@en ,
"Résultats de l'évaluation d'un artefact sémantique. Un artefact peut avoir plusieurs évaluations."@fr ,
"Los resultados de la evaluación de un artefacto semántico. Un artefacto puede tener más de una evaluación."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2015-08-05"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:dateTime ;
dcterms:modified "2024-05-31"^^xsd:date .
### https://w3id.org/mod#FairAssessment
mod:FairAssessment
rdf:type owl:Class ;
rdfs:subClassOf mod:Evaluation ;
rdfs:label "FAIRness assessment"@en ,
"Évaluation du niveau de FAIRness"@fr ,
"Evaluación del nivel de FAIRness"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2024-05-31"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2024-05-31"^^xsd:dateTime .
### https://w3id.org/mod#Group
mod:Group
rdf:type owl:Class ;
rdfs:label "Semantic Artefact Group"@en ,
"Groupe d'artefacts sémantiques"@fr ,
"Grupo de artefactos semánticos"@es ;
dcterms:description "A group of multiple semantic artefacts (e.g., coming from the same source or project)."@en ,
"Un groupe de multiples artefacts sémantiques (par exemple, provenant de la même source ou du même projet)."@fr ,
"Un grupo de artefactos semánticos múltiples (por ejemplo, que provienen de la misma fuente o proyecto)."@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2018-08-02"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/1.4> ;
pav:importedOn "2018-08-02"^^xsd:dateTime ;
dcterms:modified "2024-05-31"^^xsd:date .
### https://w3id.org/mod#KnowledgeRepresentationParadigm
mod:KnowledgeRepresentationParadigm
rdf:type owl:Class ;
rdfs:label "Knowledge Representation Paradigm"@en ,
"Paradigme de la représentation des connaissances"@fr ,
"Paradigma de representación del conocimiento"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://omv.ontoware.org/2005/05/ontology> ;
skos:historyNote "This class has been adopted from OMV Ontology Metadata Vocabulary, and renamed and redefined in the MOD namespace."@en .
### https://w3id.org/mod#SemanticArtefactTask
mod:SemanticArtefactTask
rdf:type owl:Class ;
rdfs:label "Semantic Artefact Task"@en ,
"Tâche d'artefact sémantique"@fr ,
"Tarea de artefacto semántico"@es ;
dcterms:description "(to come)"@en ,
"(to come)"@fr ,
"(to come)"@es ;
rdfs:isDefinedBy <https://w3id.org/mod#> ;
dcterms:issued "2021-12-01"^^xsd:date ;
pav:derivedFrom <https://w3id.org/mod/2.0> ;
pav:importedOn "2021-12-01"^^xsd:date ;
dcterms:modified "2024-05-31"^^xsd:date ;
# #OPTIONAL STATEMENTS
prov:wasInfluencedBy <http://omv.ontoware.org/2005/05/ontology> ;
skos:historyNote "This class has been adopted from OMV Ontology Metadata Vocabulary, and renamed and redefined in the MOD namespace."@en .
#################################################################
# End of MOD Classes
#################################################################
#################################################################
# MOD Properties (sorted as in GSheet working document)
#################################################################
#################################################################
# 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 (if property is in mod namespace)
# dcterms:domainIncludes SUGGESTED DOMAIN INFO (if property is in another namespace)
# rdfs:range RANGE INFO IF ANY (if property is in mod namespace)
# dcterms:rangeIncludes SUGGESTED RANGE INFO (if property is in another namespace)
# 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 ;
# owl:equivalentProperty RELATED PROPERTY IN ANOTHER METADATA (not owl:equivalentProperty);
# pav:derivedFrom <http://www.isibang.ac.in/ns/mod/X.X> ;
# pav:importedOn "DATE OF FIRST MOD VERSION INCLUDING"^^xsd:date ;
#
# #OPTIONAL STATEMENTS
# prov:wasInfluencedBy "MIRO guidelines: ...." ,
# "FAIR principle: F2" ,
# "FAIRsFAIR profile: MANDATORY / RECOMMENDED / OPTIONAL" .
# #OTHER ORIGINAL STATEMENTS IF ANY
#
#################################################################
##########################################
########## General properties ##########
##########################################
### https://w3id.org/mod#acronym
mod:acronym rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf rdfs:label ;
rdfs:label "acronym"@en ,
"acronyme"@fr ,
"acrónimo"@es ;
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 ;
owl:equivalentProperty <http://www.isibang.ac.in/ns/mod/1.0/acronym> ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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 "name"@en ,
"nom"@fr ;
dcterms:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactDistribution ,
mod:SemanticArtefactCatalog ;
rdfs:range rdfs:Literal ;
dcterms:description "DCTERMS: A name given to the resource. OMV: The name by which an ontology is formally known. 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 ;
owl:equivalentProperty rdfs:label ,
cc:attributionName ,
omv:name ,
schema:name ,
skos:prefLabel ,
foaf:name ;
pav:derivedFrom <https://w3id.org/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:date ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "MIRO guidelines: A.1" ,
"FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
### 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 ;
owl:equivalentProperty omv:URI ;
pav:derivedFrom <https://w3id.org/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:date ;
#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 ;
dcterms:domainIncludes mod:SemanticArtefact ;
rdfs:range owl:Ontology ;
dcterms:rangeIncludes mod:SemanticArtefact ;
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 <https://w3id.org/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:date ;
#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 ;
dcterms:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactCatalog ;
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. 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. DCAT: A unique identifier of the item."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
owl:equivalentProperty skos:notation ,
adms:identifier ,
schema:identifier ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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 ;
dcterms:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactCatalog ;
rdfs:range xsd:string ;
dcterms:description "MOD: The version of the released ontology. OMV: The version information of the ontology. 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 ;
owl:equivalentProperty 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 <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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 ,
mod:SemanticArtefactCatalog ;
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'. SCHEMA: The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
owl:equivalentProperty idot:state ,
adms:adms-status ,
schema:creativeWorkStatus ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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 ;
dcterms:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactDistribution ,
mod:SemanticArtefactCatalog ;
rdfs:range rdfs:Resource ;
dcterms:description "OWL: The annotation property that indicates that a given entity has been 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 ;
owl:equivalentProperty idot:obsolete ,
<http://www.isibang.ac.in/ns/mod/1.1/deprecated> ;
pav:derivedFrom <https://w3id.org/mod/1.1> ;
pav:importedOn "2016-09-02"^^xsd:date ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: A2" .
### 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:string ;
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 ;
owl:equivalentProperty omv:hasOntologyLanguage ,
schema:fileFormat ,
<http://www.isibang.ac.in/ns/mod/1.0/ontologyDesignLanguage> ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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 ;
owl:equivalentProperty omv:hasFormalityLevel ,
schema:fileFormat ,
<http://www.isibang.ac.in/ns/mod/1.0/formalityLevel> ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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."@en ;
rdfs:isDefinedBy <http://omv.ontoware.org/2005/05/ontology> ;
dcterms:issued "2009-12-24"^^xsd:date ;
owl:equivalentProperty omv:hasOntologySyntax ,
dcterms:format ,
<http://www.isibang.ac.in/ns/mod/1.0/syntax> ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#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:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactCatalog ;
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."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2008-01-14"^^xsd:date ;
owl:equivalentProperty omv:naturalLanguage ,
schema:inLanguage ,
doap:language ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ,
"FAIRsFAIR profile: RECOMMENDED" ;
#OTHER ORIGINAL STATEMENTS IF ANY
<http://purl.org/dc/dcam/rangeIncludes> dcterms:LinguisticSystem .
### http://purl.org/dc/terms/type
dcterms:type rdf:type rdf:Property ;
rdfs:subPropertyOf dc:type ;
rdfs:label "generic type"@en ,
"type générique"@fr ;
dcterms:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactCatalog ;
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 ;
owl:equivalentProperty omv:isOfType ;
pav:derivedFrom <https://w3id.org/mod/1.2> ;
pav:importedOn "2017-07-06"^^xsd:date ;
#OPTIONAL STATEMENTS
prov:wasInfluencedBy "FAIR principle: F2" ,
"FAIRsFAIR profile: MANDATORY" .
##########################################
######## Licensing properties ############
##########################################
### http://purl.org/dc/terms/accessRights
dcterms:accessRights
rdf:type rdf:Property ;
rdfs:subPropertyOf dc:rights , dcterms:rights ;
rdfs:label "access rights"@en ,
"droits d'accès"@fr ;
dcterms:domainIncludes mod:SemanticArtefact ,
mod:SemanticArtefactCatalog ;
dcterms:description "DCTERMS: Information about who access the resource or an indication of its security status. Access Rights may include information regarding access or restrictions based on privacy, security, or other policies. MOD: Information on access (i.e., read, download) to an ontology."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
dcterms:issued "2003-02-15"^^xsd:date ;
owl:equivalentProperty <http://www.isibang.ac.in/ns/mod/1.0/accessibility> ;
pav:derivedFrom <https://w3id.org/mod/1.0> ;
pav:importedOn "2015-08-05"^^xsd:date ;
#OPTIONAL STATEMENTS