as2_core.ex5.json 738 B

12345678910111213141516171819202122232425262728
  1. {
  2. "@context": "https://www.w3.org/ns/activitystreams",
  3. "summary": "Martin added an article to his blog",
  4. "type": "Add",
  5. "published": "2015-02-10T15:04:55Z",
  6. "actor": {
  7. "type": "Person",
  8. "id": "http://www.test.example/martin",
  9. "name": "Martin Smith",
  10. "url": "http://example.org/martin",
  11. "image": {
  12. "type": "Link",
  13. "href": "http://example.org/martin/image.jpg",
  14. "mediaType": "image/jpeg"
  15. }
  16. },
  17. "object" : {
  18. "id": "http://www.test.example/blog/abc123/xyz",
  19. "type": "Article",
  20. "url": "http://example.org/blog/2011/02/entry",
  21. "name": "Why I love Activity Streams"
  22. },
  23. "target" : {
  24. "id": "http://example.org/blog/",
  25. "type": "OrderedCollection",
  26. "name": "Martin's Blog"
  27. }
  28. }