# pass-report1-reproduce1-bnodes.ttl - basic Issue data using labeled bnodes.

#BASE <http://base.example/#>
PREFIX ex: <http://ex.example/#>
PREFIX foaf: <http://xmlns.com/foaf/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

_:Issue1
    ex:state        ex:unassigned ;
    ex:reportedBy   _:User2 ;
    ex:reportedOn   "2013-01-23T10:18:00"^^xsd:dateTime ;
    ex:reproducedBy _:Thompson.J ;
    ex:reproducedOn "2013-01-23T11:00:00"^^xsd:dateTime
.

_:User2
    foaf:givenName "Bob" ;
    foaf:familyName "Smith" ;
    foaf:mbox <mail:bob@example.org>
.

_:Thompson.J
    foaf:givenName "Joe", "Joseph" ;
    foaf:familyName "Thompson" ;
    foaf:phone <tel:+456> ;
    foaf:mbox <mail:joe@example.org>
.

