PREFIX : <http://schema.org/>
[] a :Person ;
:name "alice" ;
:knows [
a :Person ;
:name "charlie" ;
] ;
.
PREFIX s: <http://schema.org/> _:a a s:Person ; s:name "alice" . _:b a s:Person ; s:name "charlie". _:a s:knows _:b.
_:c14n0 <http://schema.org/name> "charlie" . _:c14n0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> . _:c14n1 <http://schema.org/knows> _:c14n0 . _:c14n1 <http://schema.org/name> "alice" . _:c14n1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
{
"@context": "https://schema.org/",
"type": "Person",
"name": "alice",
"knows": {
"type": "Person",
"name": "charlie"
}
}
<Person xmlns="http://schema.org/">
<name>alice</name>
<knows>
<Person>
<name>charlie</name>
</Person>
</knows>
</Person>
_:c14n0 <http://schema.org/name> "charlie" . _:c14n0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> . _:c14n1 <http://schema.org/knows> _:c14n0 . _:c14n1 <http://schema.org/name> "alice" . _:c14n1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .
A credential is a set of one or more claims made by the same entity.