Files
activitypub-security-poc/examples/create-note.json
2025-11-16 17:20:37 +01:00

17 líneas
605 B
JSON

{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Create",
"id": "https://example.com/activities/test-create-1",
"actor": "https://example.com/users/tester",
"object": {
"type": "Note",
"id": "https://example.com/notes/test-note-1",
"content": "This is a test note from the ActivityPub security PoC toolkit.",
"published": "2025-11-16T00:00:00Z",
"attributedTo": "https://example.com/users/tester",
"to": ["https://www.w3.org/ns/activitystreams#Public"]
},
"published": "2025-11-16T00:00:00Z",
"to": ["https://www.w3.org/ns/activitystreams#Public"]
}