1234567891011121314151617181920 |
- {
- "@context": "https://www.w3.org/ns/activitystreams",
- "summary": "Sally's recent activities",
- "type": "Collection",
- "id": "http://example.org/foo",
- "totalItems": 10,
- "first": {
- "type": "CollectionPage",
- "id": "http://example.org/foo?page=1",
- "partOf": "http://example.org/foo",
- "next": "http://example.org/foo?page=2",
- "items": [
- {
- "type": "Create",
- "actor": "http://www.test.example/sally",
- "object": "http://example.org/foo"
- }
- ]
- }
- }
|