diff --git a/simple0001.json b/simple0001.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/simple0001.json @@ -0,0 +1 @@ +{} diff --git a/simple0002.json b/simple0002.json new file mode 100644 index 0000000..98075cf --- /dev/null +++ b/simple0002.json @@ -0,0 +1,3 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams" +} diff --git a/simple0003.json b/simple0003.json new file mode 100644 index 0000000..5285c5c --- /dev/null +++ b/simple0003.json @@ -0,0 +1,3 @@ +{ + "id": "http://example.org/foo" +} diff --git a/simple0004.json b/simple0004.json new file mode 100644 index 0000000..b4861e1 --- /dev/null +++ b/simple0004.json @@ -0,0 +1,4 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "id": "http://example.org/foo" +} diff --git a/simple0005.json b/simple0005.json new file mode 100644 index 0000000..9add620 --- /dev/null +++ b/simple0005.json @@ -0,0 +1,3 @@ +{ + "@context": ["http://www.w3.org/ns/activitystreams"] +} diff --git a/simple0006.json b/simple0006.json new file mode 100644 index 0000000..cfc54e2 --- /dev/null +++ b/simple0006.json @@ -0,0 +1,3 @@ +{ + "@context": [{},"http://www.w3.org/ns/activitystreams"] +} diff --git a/simple0007.json b/simple0007.json new file mode 100644 index 0000000..e1faf65 --- /dev/null +++ b/simple0007.json @@ -0,0 +1,3 @@ +{ + "@context": ["http://www.w3.org/ns/activitystreams", {}] +} diff --git a/simple0008.json b/simple0008.json new file mode 100644 index 0000000..4528b46 --- /dev/null +++ b/simple0008.json @@ -0,0 +1,5 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "id": "http://example.org/foo", + "type": "Note" +} diff --git a/simple0009.json b/simple0009.json new file mode 100644 index 0000000..245de87 --- /dev/null +++ b/simple0009.json @@ -0,0 +1,5 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "id": "http://example.org/foo", + "type": ["Note","Event"] +} diff --git a/simple0010.json b/simple0010.json new file mode 100644 index 0000000..7e23f03 --- /dev/null +++ b/simple0010.json @@ -0,0 +1,6 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "id": "http://example.org/foo", + "type": "Note", + "name": "Plain < Text & Name" +} diff --git a/simple0011.json b/simple0011.json new file mode 100644 index 0000000..2cdc298 --- /dev/null +++ b/simple0011.json @@ -0,0 +1,8 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "id": "http://example.org/foo", + "type": "Note", + "name": { + "en": "Plain < Text & Name" + } +} diff --git a/simple0012.json b/simple0012.json new file mode 100644 index 0000000..13f05f7 --- /dev/null +++ b/simple0012.json @@ -0,0 +1,9 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "id": "http://example.org/foo", + "type": "Note", + "name": { + "en": "Plain < Text & Name", + "fr": "French Translation of the Plain < Test & Name" + } +} diff --git a/simple0013.json b/simple0013.json new file mode 100644 index 0000000..c0b5a52 --- /dev/null +++ b/simple0013.json @@ -0,0 +1,7 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "id": "http://example.org/some/id", + "type": "Note", + "content": "This is a simple note", + "updated": "2015-12-12T12:34:56Z" +} diff --git a/simple0014.json b/simple0014.json new file mode 100644 index 0000000..ba88156 --- /dev/null +++ b/simple0014.json @@ -0,0 +1,7 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "id": "http://example.org/some/id", + "type": "Note", + "content": "This is a simple note with markup", + "updated": "2015-12-12T12:34:56Z" +} diff --git a/simple0015.json b/simple0015.json new file mode 100644 index 0000000..9d80791 --- /dev/null +++ b/simple0015.json @@ -0,0 +1,8 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "id": "http://example.org/some/id", + "type": "Note", + "mediaType": "text/markdown", + "content": "*This is a simple note with markdown*", + "updated": "2015-12-12T12:34:56Z" +} diff --git a/simple0016.json b/simple0016.json new file mode 100644 index 0000000..03aad69 --- /dev/null +++ b/simple0016.json @@ -0,0 +1,6 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": "http://example.org/sally", + "object": "http://example.org/notes/1" +} diff --git a/simple0017.json b/simple0017.json new file mode 100644 index 0000000..d7e3582 --- /dev/null +++ b/simple0017.json @@ -0,0 +1,10 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": "http://example.org/notes/1" +} diff --git a/simple0018.json b/simple0018.json new file mode 100644 index 0000000..72edde6 --- /dev/null +++ b/simple0018.json @@ -0,0 +1,14 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "id": "http://example.org/notes/1", + "type": "Note", + "content": "This is a note" + } +} diff --git a/simple0019.json b/simple0019.json new file mode 100644 index 0000000..1369bc5 --- /dev/null +++ b/simple0019.json @@ -0,0 +1,15 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "id": "http://example.org/notes/1", + "type": "Note", + "content": "This is a note", + "url": "http://example.org/notes/1" + } +} diff --git a/simple0020.json b/simple0020.json new file mode 100644 index 0000000..b7869e1 --- /dev/null +++ b/simple0020.json @@ -0,0 +1,19 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "id": "http://example.org/notes/1", + "type": "Note", + "content": "This is a note", + "url": { + "type": "Link", + "href": "http://example.org/notes/1", + "mediaType": "text/html" + } + } +} diff --git a/simple0021.json b/simple0021.json new file mode 100644 index 0000000..7e502c5 --- /dev/null +++ b/simple0021.json @@ -0,0 +1,19 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "id": "http://example.org/notes/1", + "type": "Note", + "content": "This is a note", + "url": [{ + "type": "Link", + "href": "http://example.org/notes/1", + "mediaType": "text/html" + }] + } +} diff --git a/simple0022.json b/simple0022.json new file mode 100644 index 0000000..b810a61 --- /dev/null +++ b/simple0022.json @@ -0,0 +1,28 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "id": "http://example.org/notes/1", + "type": "Note", + "content": "This is a note", + "url": [ + { + "type": "Link", + "href": "http://example.org/notes/1", + "hreflang": "en", + "mediaType": "text/html" + }, + { + "type": "Link", + "href": "http://example.org/notes/es/1", + "hreflang": "es", + "mediaType": "text/html" + } + ] + } +} diff --git a/simple0023.json b/simple0023.json new file mode 100644 index 0000000..823c216 --- /dev/null +++ b/simple0023.json @@ -0,0 +1,27 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams#", + "type": "Undo", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "type": "Like", + "actor": { + "type": "Person", + "id": "http://example.org/sally", + "name": "Sally" + }, + "object": { + "id": "http://example.org/notes/1", + "type": "Note", + "content": "This is a note", + "url": [{ + "type": "Link", + "href": "http://example.org/notes/1", + "mediaType": "text/html" + }] + } + } +} diff --git a/simple0024.json b/simple0024.json new file mode 100644 index 0000000..b01cef4 --- /dev/null +++ b/simple0024.json @@ -0,0 +1,4 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "updated": "2015-12-12T12:34Z" +} diff --git a/simple0025.json b/simple0025.json new file mode 100644 index 0000000..0eb571c --- /dev/null +++ b/simple0025.json @@ -0,0 +1,4 @@ +{ + "@context": "http://www.w3.org/ns/activitystreams", + "published": "2015-12-12T12:34Z" +}