33 lines
761 B
JSON
33 lines
761 B
JSON
|
{
|
||
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||
|
"summary": "Sally's friends list",
|
||
|
"type": "Collection",
|
||
|
"items": [
|
||
|
{
|
||
|
"summary": "Sally is influenced by Joe",
|
||
|
"type": "Relationship",
|
||
|
"subject": {
|
||
|
"type": "Person",
|
||
|
"name": "Sally"
|
||
|
},
|
||
|
"relationship": "http://purl.org/vocab/relationship/influencedBy",
|
||
|
"object": {
|
||
|
"type": "Person",
|
||
|
"name": "Joe"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"summary": "Sally is a friend of Jane",
|
||
|
"type": "Relationship",
|
||
|
"subject": {
|
||
|
"type": "Person",
|
||
|
"name": "Sally"
|
||
|
},
|
||
|
"relationship": "http://purl.org/vocab/relationship/friendOf",
|
||
|
"object": {
|
||
|
"type": "Person",
|
||
|
"name": "Jane"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|