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

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

[]
    ex:state        ex:unassigned ;
    ex:reportedBy   [
        foaf:givenName "Bob" ;
        foaf:familyName "Smith" ;
        foaf:mbox <mail:bob@example.org>
    ] ;
    ex:reportedOn   "2013-01-23T10:18:00"^^xsd:dateTime ;
    ex:reproducedBy [
        foaf:givenName "Joe", "Joseph" ;
        foaf:familyName "Thompson" ;
        foaf:phone <tel:+456> ;
        foaf:mbox <mail:joe@example.org>
    ] ;
    ex:reproducedOn "2013-01-23T11:00:00"^^xsd:dateTime
.

