How can I model the bold text (Villages are part of Provience)in the example below to owl using Turtle Syntax
- Turkey is made up of Provience and district
- Istanbul, Ankara, Mersin are Provience
- Villages are part of Provience
:Turkey rdf:type owl:class .
:Provience rdf:type owl:class .
:District rdf:type owl:class .
:Istanbul rdf:type owl:class .
:Ankara rdf:type owl:class .
:Mersin rdf:type owl:class .
:Istanbul rdfs:subClassOf owl:Turkey.
:Ankara rdfs:subClassOf owl:Turkey .
:Mersin rdfs:subClassOf owl:Turkey .
In this section I can't decide how to do “Villages are part of Provience” I would be very grateful if someone could give me an idea.
Thanks in advance