Add collection fetching module
[akkoma] / test / fixtures / collections / ordered_array.json
diff --git a/test/fixtures/collections/ordered_array.json b/test/fixtures/collections/ordered_array.json
new file mode 100644 (file)
index 0000000..1f196c6
--- /dev/null
@@ -0,0 +1,19 @@
+{
+  "@context": "https://www.w3.org/ns/activitystreams",
+  "id": "https://example.com/collection/ordered_array",
+  "summary": "Object history",
+  "type": "OrderedCollection",
+  "totalItems": 2,
+  "orderedItems": [
+    {
+      "type": "Create",
+      "actor": "http://www.test.example/sally",
+      "object": "http://example.org/foo"
+    },
+    {
+      "type": "Like",
+      "actor": "http://www.test.example/joe",
+      "object": "http://example.org/foo"
+    }
+  ]
+}