# baseURI: http://example.com/priva.shapes # imports: http://datashapes.org/dash # imports: http://example.com/priva @prefix : . @prefix dash: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix sh: . @prefix spin: . @prefix xsd: . :BigSpace rdf:type sh:NodeShape ; sh:property :BigSpace-area ; sh:property :BigSpace-hasPump ; . :BigSpace-area rdf:type sh:PropertyShape ; sh:path :area ; sh:class xsd:float ; . :BigSpace-hasPump rdf:type sh:PropertyShape ; sh:path :hasPump ; sh:class :BigPump ; . :SmallSpace rdf:type sh:NodeShape ; sh:property :SmallSpace-hasPump ; . :SmallSpace-hasPump rdf:type sh:PropertyShape ; sh:path :hasPump ; sh:class :SmallPump ; . :Space rdf:type sh:NodeShape ; sh:property :Space-area ; sh:property :Space-hasPump ; . :Space-area rdf:type sh:PropertyShape ; sh:path :area ; sh:class xsd:float ; . :Space-hasPump rdf:type sh:PropertyShape ; sh:path :hasPump ; sh:class :Pump ; . rdf:type owl:Ontology ; owl:imports ; owl:imports ; .