File: alice_bob.rdf

package info (click to toggle)
librdf-query-perl 2.919-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,580 kB
  • sloc: perl: 30,628; javascript: 131; sh: 13; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:foaf="http://xmlns.com/foaf/0.1/">
  <foaf:Person rdf:about="http://work.example/people/alice#me">
    <foaf:name>Alice</foaf:name>
    <foaf:mbox rdf:resource="mailto:alice@work.example"/>
    <foaf:knows><foaf:Person rdf:about="http://oldcorp.example.org/bob/uri"/></foaf:knows>
  </foaf:Person>
  <foaf:Person rdf:about="http://oldcorp.example.org/bob/uri">
    <foaf:name>Bob</foaf:name>
    <foaf:mbox rdf:resource="mailto:bob@oldcorp.example.org"/>
    <foaf:knows rdf:resource="http://work.example/people/alice#me"/>
  </foaf:Person>
</rdf:RDF>