<?xml version='1.0'?>
<!-- Typed Literal Mismatch Indication -->

<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     ="http://www.daml.org/validator/examples/dt1.daml#"
>

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

<daml:DatatypeProperty rdf:ID="age"/>

<!-- OK -->
<Person rdf:ID="Charles">
  <age><xsd:integer rdf:value="10"/></age>
</Person>

<!-- In the following examples the value does not match the datatype -->
<Person rdf:ID="Lucy">
  <age><xsd:integer rdf:value="fifteen"/></age>
</Person>

<Person rdf:ID="Linus">
  <age><xsd:integer rdf:value="9.5"/></age>
</Person>

<Person rdf:ID="Patty">
  <age><xsd:nonNegativeInteger rdf:value="-3"/></age>
</Person>

</rdf:RDF>
