You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<rdfs:Classrdf:about="http://purl.org/linked-data/cube#ComponentProperty">
<rdf:typerdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:labelxml:lang="en">Component property (abstract)</rdfs:label>
<rdfs:subClassOfrdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdfs:commentxml:lang="en">Abstract super-property of all properties representing dimensions, attributes or measures</rdfs:comment>
<rdfs:isDefinedByrdf:resource="http://purl.org/linked-data/cube"/>
</rdfs:Class>
This line suggests that the owl class ComponentProperty is a subclass of rdf:Property, which is not allowed because classes and properties are distinct concepts.
When I load the file with owlready2, this rises the error:
TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
The text was updated successfully, but these errors were encountered:
Hi, in https://github.com/UKGovLD/publishing-statistical-data/blob/ede5e32affb236e4939b09fc63a27cdfc5d2a833/specs/src/main/vocab/cube.rdf is the following in line 110:
This line suggests that the owl class
ComponentProperty
is a subclass ofrdf:Property
, which is not allowed because classes and properties are distinct concepts.When I load the file with owlready2, this rises the error:
The text was updated successfully, but these errors were encountered: