gatemezing / Ontology_Workflow_Testing

Verified Permissions ontology
Apache License 2.0
1 stars 0 forks source link

vp:Requirement relation to some class in eli: #12

Open Certiman opened 3 months ago

Certiman commented 3 months ago

The dataset /ERALEX now contains:

eralex:dir-2014-38  rdf:type  vp:Requirement ;
        rdfs:comment    "Amendment to Annex III to Directive 2008/57/EC, as far as noise pollution is concerned"^^<xsd:string> ;
        rdfs:label      "2014/38"^^<xsd:string> ;
        eli:amends      <http://data.europa.eu/eli/dir/2008/57/oj> ;
        rdfs:seeAlso      "https://eur-lex.europa.eu/eli/dir/2014/38/oj"^^<xsd:anyURI> ;
        owl:deprecated  "false"^^<xsd:boolean> ;
        owl:sameAs      <http://data.europa.eu/eli/dir/2014/38/oj> .

I think this infers a link between vp:Requirement and whatever class <http://data.europa.eu/eli/dir/2014/38/oj> is, no?

Certiman commented 3 months ago

As per onto, the range of eli:amends is: eli:Expression or eli:Work:

<rdfs:range>
    <owl:Class>
        <owl:unionOf rdf:parseType="Collection">
            <rdf:Description rdf:about="http://data.europa.eu/eli/ontology#Expression"/>
            <rdf:Description rdf:about="http://data.europa.eu/eli/ontology#Work"/>
        </owl:unionOf>
    </owl:Class>
</rdfs:range>
gatemezing commented 3 months ago

The dataset /ERALEX now contains:

eralex:dir-2014-38  rdf:type  vp:Requirement ;
        rdfs:comment    "Amendment to Annex III to Directive 2008/57/EC, as far as noise pollution is concerned"^^<xsd:string> ;
        rdfs:label      "2014/38"^^<xsd:string> ;
        eli:amends      <http://data.europa.eu/eli/dir/2008/57/oj> ;
        rdfs:seeAlso      "https://eur-lex.europa.eu/eli/dir/2014/38/oj"^^<xsd:anyURI> ;
        owl:deprecated  "false"^^<xsd:boolean> ;
        owl:sameAs      <http://data.europa.eu/eli/dir/2014/38/oj> .

Why do we have owl:deprecated property? I think this infers a link between vp:Requirement and whatever class <http://data.europa.eu/eli/dir/2014/38/oj> is, no? Yes, thatvpa:Requirement is owl:equivalentClass eli:LegalResource.

Full data retrieved using OpenLink Data Sniffer from the Webpage below here

gatemezing commented 1 week ago

The dataset /ERALEX now contains:

eralex:dir-2014-38  rdf:type  vp:Requirement ;
        rdfs:comment    "Amendment to Annex III to Directive 2008/57/EC, as far as noise pollution is concerned"^^<xsd:string> ;
        rdfs:label      "2014/38"^^<xsd:string> ;
        eli:amends      <http://data.europa.eu/eli/dir/2008/57/oj> ;
        rdfs:seeAlso      "https://eur-lex.europa.eu/eli/dir/2014/38/oj"^^<xsd:anyURI> ;
        owl:deprecated  "false"^^<xsd:boolean> ;
        owl:sameAs      <http://data.europa.eu/eli/dir/2014/38/oj> .

I think this infers a link between vp:Requirement and whatever class <http://data.europa.eu/eli/dir/2014/38/oj> is, no?

For the inference, yes. Normally :MyInstance1 owl:sameAs :MyInstance2 infers :ClassOfInstance1 owl:equivalentClass :ClassOfIntance2