It's better to replace with standard prop classes and datatypes:
md:Model.modelingAuthoritySet a owl:ObjectProperty.
md:Model.profile a owl:ObjectProperty.
dcat:startDate a owl:DatatypeProperty; rdfs:range xsd:dateTimeStamp.
I prefer to represent URLs as real URLs (object props without range) not literals.
If you prefer literals, use this (but the only benefit of xsd:anyURI is that it allows URLs with invalid chars):
md:Model.modelingAuthoritySet a owl:DatatypeProperty; rdfs:range xsd:anyURI.
md:Model.profile a owl:DatatypeProperty; rdfs:range xsd:anyURI.
dcat:startDate a owl:DatatypeProperty; rdfs:range xsd:dateTimeStamp.
Header-AP-Voc-RDFS2020.ttl defines non-standard datatypes:
This is similar to https://github.com/Sveino/Inst4CIM-KG/issues/27, but unlike
profcim
these Primitives are used:It's better to replace with standard prop classes and datatypes:
I prefer to represent URLs as real URLs (object props without range) not literals. If you prefer literals, use this (but the only benefit of
xsd:anyURI
is that it allows URLs with invalid chars):