@prefix eg: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @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 .