as2_core.ex20.json 509 B

1234567891011121314151617181920
  1. {
  2. "@context": "https://www.w3.org/ns/activitystreams",
  3. "summary": "Sally's recent activities",
  4. "type": "Collection",
  5. "id": "http://example.org/foo",
  6. "totalItems": 10,
  7. "first": {
  8. "type": "CollectionPage",
  9. "id": "http://example.org/foo?page=1",
  10. "partOf": "http://example.org/foo",
  11. "next": "http://example.org/foo?page=2",
  12. "items": [
  13. {
  14. "type": "Create",
  15. "actor": "http://www.test.example/sally",
  16. "object": "http://example.org/foo"
  17. }
  18. ]
  19. }
  20. }