<?xml version='1.0'?>

<!-- TBD Indication - Class being used as a predicate -->

<rdf:RDF
  xmlns:rdf ="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:xsd ="http://www.w3.org/2000/10/XMLSchema#"
  xmlns:daml="http://www.daml.org/2001/03/daml+oil#"
  xmlns:ont1="http://www.daml.org/validator/examples/ont1.daml#"
  xmlns     ="http://www.daml.org/validator/examples/st11.daml#"
>

<daml:Class rdf:ID="City"/>

<!-- The class 'City' is being used as a property -->
<ont1:Person rdf:ID="rudy">
   <City>Pittsburgh</City>
</ont1:Person>


<!-- One way to correctly do this would be... -->
<City rdf:ID="Johnstown"/>

<ont1:Person rdf:ID="earl">
   <city rdf:resource="#Johnstown"/>
</ont1:Person>


</rdf:RDF>
