Coder Social home page Coder Social logo

Comments (3)

tfrancart avatar tfrancart commented on July 17, 2024 1

Fixed in 3 variants, added xsd:double and xsd:anyURI where it was missing. Thanks

from owl2shacl.

tfrancart avatar tfrancart commented on July 17, 2024

Thanks for spotting and reporting this ! as a workaround, you could try looking in previous versions of the files to see if this function was present in earlier versions

from owl2shacl.

simonstey avatar simonstey commented on July 17, 2024

yeah as mentioned, I replaced the function with

owl2sh-semi-closed:owlAllValuesFrom2shClassOrDatatype
  rdf:type sh:SPARQLRule ;
  rdfs:comment "For each owl:allValuesFrom restriction, create a corresponding sh:class or sh:datatype constraint." ;
  rdfs:label "owl:allValuesFrom with IRI to sh:class or sh:datatype" ;
  sh:construct """
      CONSTRUCT {
        ?propertyShape ?parameter ?allValuesFrom .
        # ?restriction owl2sh-semi-closed:mappedTo ?propertyShape .
      }
      WHERE {
        {
          $this rdfs:subClassOf ?restriction .
          ?restriction a owl:Restriction .
          FILTER isBlank(?restriction) .
        }
        ?restriction owl:onProperty ?property .
        ?restriction owl:allValuesFrom ?allValuesFrom .
        FILTER isIRI(?allValuesFrom) .
        BIND (owl2sh-semi-closed:getPropertyShape(?property, $this) AS ?propertyShape) .
        BIND (
          IF(
            (?allValuesFrom IN (xsd:boolean, xsd:string, xsd:date, xsd:double, xsd:dateTime, xsd:integer, xsd:float, xsd:duration, xsd:anyURI)),
            sh:datatype,
            sh:class
          )
          AS ?parameter
        ) .
      }
""" ;
  sh:order 4 ;
  sh:prefixes <http://data.sparna.fr/ontologies/owl2sh-semi-closed> ;
.

(and also added xsd:double to the list of datatypes for all relevant rules)

from owl2shacl.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.