Jaidyn Ann
cc81dee054
The ActivityStreams package solely held the Object JSON-type, which is now in the ActivityVocabulary package. Files and system definitions have been shuffled around accordingly.
24 lines
352 B
JSON
24 lines
352 B
JSON
{
|
|
"@context": "https://www.w3.org/ns/activitystreams",
|
|
"summary": "Sally invited John and Lisa to a party",
|
|
"type": "Invite",
|
|
"actor": {
|
|
"type": "Person",
|
|
"name": "Sally"
|
|
},
|
|
"object": {
|
|
"type": "Event",
|
|
"name": "A Party"
|
|
},
|
|
"target": [
|
|
{
|
|
"type": "Person",
|
|
"name": "John"
|
|
},
|
|
{
|
|
"type": "Person",
|
|
"name": "Lisa"
|
|
}
|
|
]
|
|
}
|