as2_core.ex15.json 447 B

1234567891011121314151617181920
  1. {
  2. "@context": [
  3. "https://www.w3.org/ns/activitystreams",
  4. {"vcard": "http://www.w3.org/2006/vcard/ns#"}
  5. ],
  6. "summary": "Sally created a note",
  7. "type": "Create",
  8. "actor": {
  9. "type": ["Person", "vcard:Individual"],
  10. "id": "http://sally.example.org",
  11. "name": "Sally Smith",
  12. "vcard:given-name": "Sally",
  13. "vcard:family-name": "Smith"
  14. },
  15. "object": {
  16. "type": "Note",
  17. "content": "This is a simple note"
  18. }
  19. }