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.
18 lines
357 B
JSON
18 lines
357 B
JSON
{
|
|
"@context": "https://www.w3.org/ns/activitystreams",
|
|
"summary": "Sally tentatively rejected an invitation to a party",
|
|
"type": "TentativeReject",
|
|
"actor": {
|
|
"type": "Person",
|
|
"name": "Sally"
|
|
},
|
|
"object": {
|
|
"type": "Invite",
|
|
"actor": "http://john.example.org",
|
|
"object": {
|
|
"type": "Event",
|
|
"name": "Going-Away Party for Jim"
|
|
}
|
|
}
|
|
}
|