I'm trying to load an ontology in Protégé but it is not processed as expected. Most problematic is that all the Object and Data Properties appear as Annotation instead of Data Property and Object Property.
I have an Object Property kingdom:
<owl:ObjectProperty rdf:about="&wo;kingdom">
<rdfs:label xml:lang="en">kingdom</rdfs:label>
<rdfs:comment xml:lang="en">associates a taxon rank with a kingdom</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:range rdf:resource="&wo;Kingdom"/>
<rdfs:domain rdf:resource="&wo;TaxonRank"/>
</owl:ObjectProperty>
/nature/life/Chordate#kingdom
has the value /nature/life/Animal#kingdom
for as its kingdom:
<wo:Phylum rdf:about="/nature/life/Chordate#kingdom">
<rdfs:label>Vertebrates</rdfs:label>
<wo:kingdom rdf:resource="/nature/life/Animal#kingdom"/>
</wo:Phylum>
However, in Protégé, the property is showing as an annotation. I do not understand why it is not showing as an object property to kingdom.
Why is this?