@prefix eg: . @prefix rdf: . @prefix xsd: . eg:startsWithC a rdfs:Datatype ; rdfs:label "starts with C" ; owl:onDatatype xsd:string ; owl:withRestrictions ( [ xsd:maxExclusive "D" ] [ xsd:minInclusive "B" ] ) . eg:s rdf:value "Door"^^eg:startsWithC .