Note

Just a simple FOAF example

Graph


N-Triples [link]

<http://sandbase.semlab.io/entity/Q3> <http://xmlns.com/foaf/0.1/name> "Matt Miller"@en .
<http://sandbase.semlab.io/entity/Q3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://sandbase.semlab.io/entity/Q3> <http://xmlns.com/foaf/0.1/depiction> "https://pbs.twimg.com/profile_images/877555359967318016/vY0Wruzk_400x400.jpg" .
<http://sandbase.semlab.io/entity/Q3> <http://xmlns.com/foaf/0.1/birthday> "02-03"^^<http://www.w3.org/2001/XMLSchema#gMonthDay> .
<http://sandbase.semlab.io/entity/Q3> <http://xmlns.com/foaf/0.1/homepage> "http://www.thisismattmiller.com" .
<http://sandbase.semlab.io/entity/Q3> <http://xmlns.com/foaf/0.1/based_near> <https://www.wikidata.org/entity/Q60> .
<https://www.wikidata.org/entity/Q60> <http://www.w3.org/2000/01/rdf-schema#label> "New York City" .
<http://www.isni.org/isni/0000000126452986> <http://xmlns.com/foaf/0.1/name> "Cristina Pattuelli" .
<http://www.isni.org/isni/0000000126452986> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://sandbase.semlab.io/entity/Q3> <http://xmlns.com/foaf/0.1/knows> <http://www.isni.org/isni/0000000126452986> .

Turtle [link]

@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix sandbox: <http://sandbase.semlab.io/entity/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix wd: <https://www.wikidata.org/entity/>.

sandbox:Q3 foaf:name "Matt Miller"@en;
    a foaf:Person;
    foaf:depiction "https://pbs.twimg.com/profile_images/877555359967318016/vY0Wruzk_400x400.jpg";
    foaf:birthday "02-03"^^xsd:gMonthDay;
    foaf:homepage "http://www.thisismattmiller.com";
    foaf:based_near wd:Q60.
wd:Q60 rdfs:label "New York City".
<http://www.isni.org/isni/0000000126452986> foaf:name "Cristina Pattuelli";
    a foaf:Person.
sandbox:Q3 foaf:knows <http://www.isni.org/isni/0000000126452986>.

JSON-LD [link]

{
   "@context": {
      "foaf": "http://xmlns.com/foaf/0.1/",
      "sandbox": "http://sandbase.semlab.io/entity/",
      "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
      "xsd": "http://www.w3.org/2001/XMLSchema#",
      "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
      "wd": "https://www.wikidata.org/entity/"
   },
   "@graph": [
      {
         "@id": "sandbox:Q3",
         "foaf:name": {
            "@language": "en",
            "@value": "Matt Miller"
         }
      },
      {
         "@id": "sandbox:Q3",
         "@type": "foaf:Person"
      },
      {
         "@id": "sandbox:Q3",
         "foaf:depiction": "https://pbs.twimg.com/profile_images/877555359967318016/vY0Wruzk_400x400.jpg"
      },
      {
         "@id": "sandbox:Q3",
         "foaf:birthday": {
            "@type": "xsd:gMonthDay",
            "@value": "02-03"
         }
      },
      {
         "@id": "sandbox:Q3",
         "foaf:homepage": "http://www.thisismattmiller.com"
      },
      {
         "@id": "sandbox:Q3",
         "foaf:based_near": {
            "@id": "wd:Q60"
         }
      },
      {
         "@id": "wd:Q60",
         "rdfs:label": "New York City"
      },
      {
         "@id": "http://www.isni.org/isni/0000000126452986",
         "foaf:name": "Cristina Pattuelli"
      },
      {
         "@id": "http://www.isni.org/isni/0000000126452986",
         "@type": "foaf:Person"
      },
      {
         "@id": "sandbox:Q3",
         "foaf:knows": {
            "@id": "http://www.isni.org/isni/0000000126452986"
         }
      }
   ]
}