FAIR-IMPACT / MOD

Metadata for Ontology Description and Publication Ontology
Creative Commons Attribution 4.0 International
20 stars 8 forks source link

mod:Ontology #61

Open agbeltran opened 4 months ago

agbeltran commented 4 months ago

@jonquet I'm going through the different resources for the MOD 3.0 release and I came across the

    foaf:primaryTopic       mod:Ontology ;

https://github.com/FAIR-IMPACT/MOD/blob/7b78f077082f99c4ca024ac24258949bc37f8182/mod-v2.0_ontology.owl#L179 MOD doesn't define mod:Ontology as far as I know, and I don't think it should.

I suppose you meant mod:SemanticArtefact?

Thanks

agbeltran commented 4 months ago

OK, I've realised those triples are actually describing MOD itself (I will move to a separate file mod_description.ttl), so I suppose it should be:

    foaf:primaryTopic       <https://w3id.org/mod> ;
    void:rootResource       <https://w3id.org/mod> ;
agbeltran commented 4 months ago

You can see how I separated MOD description here: https://github.com/FAIR-IMPACT/MOD/pull/53/files

biswanathdutta commented 4 months ago

@agbeltran MOD 2.0 accommodated "SemanticArtefact" replacing "Ontology". Because of this reason, we could not find "mod:Ontology" class in MOD2.0. In MOD 1.4, it was "mod:"Ontology". The change from mod1.4 to mod2.0 is documented here https://w3id.org/mod#changes (find under "Added classes" and "Deleted classes").

Regarding "foaf:primaryTopic https://w3id.org/mod ;" You are right. "mod-v2.0_profile.ttl" file described an ontology, that is MOD as a resource.

@jonquet