This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/tests/mocks/object_with_replies.json
2019-01-30 16:42:54 +01:00

18 lines
399 B
JSON

{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Object",
"id": "http://www.test.example/object/1",
"replies": {
"id": "http://www.test.example/object/1/replies",
"type": "Collection",
"totalItems": 1,
"items": [
{
"id": "http://www.test.example/object/1/replies/2",
"type": "Article",
"name": "Example title"
}
]
}
}