From f730f6cacf50f50fd97ec23273b4c9d6772995f4 Mon Sep 17 00:00:00 2001 From: Simeon Warner Date: Mon, 4 Dec 2023 12:43:18 -0500 Subject: [PATCH] Remove outdated and unused examples --- docs/0.1/examples/index.md | 41 ------- .../my-collection/full-cache/entry-point.json | 8 -- .../notifications/document/cd1-add.json | 18 --- .../notifications/document/cd10-m1.json | 18 --- .../notifications/document/cd10-m2.json | 22 ---- .../notifications/document/cd10-m3.json | 22 ---- .../notifications/document/cd10-merge.json | 53 --------- .../notifications/document/cd2-create.json | 18 --- .../notifications/document/cd3-remove.json | 18 --- .../notifications/document/cd4-delete.json | 18 --- .../notifications/document/cd5-update.json | 18 --- .../notifications/document/cd6-d1.json | 18 --- .../notifications/document/cd6-d2.json | 22 ---- .../notifications/document/cd6-deprecate.json | 39 ------ .../notifications/document/cd7-deprecate.json | 22 ---- .../notifications/document/cd8-deprecate.json | 18 --- .../notifications/document/cd9-s1.json | 18 --- .../notifications/document/cd9-s2.json | 18 --- .../notifications/document/cd9-s3.json | 28 ----- .../notifications/document/cd9-split.json | 55 --------- .../notifications/entry-point.json | 18 --- .../my-collection/notifications/sets/1.json | 39 ------ .../my-collection/notifications/sets/2.json | 53 --------- .../my-collection/notifications/sets/3.json | 78 ------------ .../my-collection/notifications/sets/4.json | 111 ------------------ .../partial-cache/entry-point.json | 8 -- 26 files changed, 799 deletions(-) delete mode 100644 docs/0.1/examples/index.md delete mode 100644 docs/0.1/examples/my-collection/full-cache/entry-point.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd1-add.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd10-m1.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd10-m2.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd10-m3.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd10-merge.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd2-create.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd3-remove.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd4-delete.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd5-update.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd6-d1.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd6-d2.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd6-deprecate.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd7-deprecate.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd8-deprecate.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd9-s1.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd9-s2.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd9-s3.json delete mode 100644 docs/0.1/examples/my-collection/notifications/document/cd9-split.json delete mode 100644 docs/0.1/examples/my-collection/notifications/entry-point.json delete mode 100644 docs/0.1/examples/my-collection/notifications/sets/1.json delete mode 100644 docs/0.1/examples/my-collection/notifications/sets/2.json delete mode 100644 docs/0.1/examples/my-collection/notifications/sets/3.json delete mode 100644 docs/0.1/examples/my-collection/notifications/sets/4.json delete mode 100644 docs/0.1/examples/my-collection/partial-cache/entry-point.json diff --git a/docs/0.1/examples/index.md b/docs/0.1/examples/index.md deleted file mode 100644 index 1d829a5..0000000 --- a/docs/0.1/examples/index.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: "EMM Change Document Examples 0.1" -layout: page -tags: [examples] -redirect_from: -- /examples ---- - -## Examples for Use Cases - -There are example implementations for each of the 3 [primary use cases][emm-use-cases]. - -* [Notifications][emm-change-api-example-notifications] - example of providing notifications only that a change has occurred -* [Partial Cache][emm-change-api-example-partialcache] - example of providing notifications of primary label change and patch data for the label change -* [Full Cache][emm-change-api-example-fullcache] - example of providing full patch data supporting incremental updates since a full data download - -### Consistency Across Examples - -There is intentional consistency across examples to show a path from a notification implementation to a partial cache implementation to a full cache implementation. This allows Entity Metadata Providers to start simple and grow over time to support full incremental updates. - -### Directory Structure - -The directories for the three examples are the same across all use cases, although not all examples use all the directories. The naming and structure are examples only and are not meant to be prescriptive. The interconnected linking between files _MUST_{:.strong-term} be maintained regardless of the file naming and directory structure chosen. - -For the examples, the naming and directory structures are as follows: - -* `/entry-point.json` - The entry point for the Entity Metadata Change Management system. -* `/set/*.json` - The `set` directory holds all Change Set pages. -* `/document/*.json` - In the `document` directory, each change has a corresponding Change Document that gives a high level summary. This is the same information provided for each change in the Change Set. -* `/patch/*.json` - In the `patch` directory, each change has a corresponding Patch Document describing the exact changes that occurred to all entity metadata related to the Change Document. - -### Filenames - -Filenames for change documents include the activity type in the name (e.g. `cd1-add.json`). The use of this convention in the examples is to make it easier for readers exploring the code to locate an example for a specific type. It is not a recommendation for production implementations. - -### Summary Descriptions - -Example summary descriptions often include additional information in parentheses. The summary prior to the parenthetical is an example of what might be used as a summary in a production system. The note in parentheses is additional information about the example itself to help with understanding of the example. - - -{% include api/links.md %} diff --git a/docs/0.1/examples/my-collection/full-cache/entry-point.json b/docs/0.1/examples/my-collection/full-cache/entry-point.json deleted file mode 100644 index 6ad8741..0000000 --- a/docs/0.1/examples/my-collection/full-cache/entry-point.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "My Entity Collection - Full Cache", - "FIXME": "FLESH OUT EXAMPLE" -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd1-add.json b/docs/0.1/examples/my-collection/notifications/document/cd1-add.json deleted file mode 100644 index eb9365a..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd1-add.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Add entity for subject Science (already exists in datasource, but not previously available)", - "type": "Add", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd1-add.json", - "published": "2022-02-01T15:04:22Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/1.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1001", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd10-m1.json b/docs/0.1/examples/my-collection/notifications/document/cd10-m1.json deleted file mode 100644 index 498fabe..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd10-m1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Create subject Campaign", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m1.json", - "published": "2022-02-04T15:04:19Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-merge.json", - "type": "Merge" - }, - "object": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd10-m2.json b/docs/0.1/examples/my-collection/notifications/document/cd10-m2.json deleted file mode 100644 index 3650802..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd10-m2.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate subject Juggernaut", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m2.json", - "published": "2022-02-04T15:04:19Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-merge.json", - "type": "Merge" - }, - "object": { - "id": "https://my.authority/subject/1096", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd10-m3.json b/docs/0.1/examples/my-collection/notifications/document/cd10-m3.json deleted file mode 100644 index 589b277..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd10-m3.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate subject Barrage", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m3.json", - "published": "2022-02-04T15:04:19Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-merge.json", - "type": "Merge" - }, - "object": { - "id": "https://my.authority/subject/1338", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd10-merge.json b/docs/0.1/examples/my-collection/notifications/document/cd10-merge.json deleted file mode 100644 index 8fb1dd0..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd10-merge.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Merge subjects Juggernaut and Barrage in to subject Campaign", - "type": "Merge", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-merge.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/4.json", - "type": "OrderedCollection" - }, - "orderedItems": [ - { - "summary": "Create subject Campaign", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m1.json", - "published": "2022-02-04T15:04:19Z", - "object": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } - }, - { - "summary": "Deprecate subject Juggernaut", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m2.json", - "published": "2022-02-04T15:04:19Z", - "object": { - "id": "https://my.authority/subject/1096", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } - }, - { - "summary": "Deprecate subject Barrage", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m3.json", - "published": "2022-02-04T15:04:19Z", - "object": { - "id": "https://my.authority/subject/1338", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd2-create.json b/docs/0.1/examples/my-collection/notifications/document/cd2-create.json deleted file mode 100644 index 42b877e..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd2-create.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Create entity for subject Archery (newly created in the datasource)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd2-create.json", - "published": "2022-02-01T15:06:13Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/1.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1002", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd3-remove.json b/docs/0.1/examples/my-collection/notifications/document/cd3-remove.json deleted file mode 100644 index 5b89314..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd3-remove.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Remove subject Grimalkin (not deleted, but no longer available)", - "type": "Remove", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd3-remove.json", - "published": "2022-02-02T15:03:18Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/2.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1101", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd4-delete.json b/docs/0.1/examples/my-collection/notifications/document/cd4-delete.json deleted file mode 100644 index fe4da2f..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd4-delete.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Delete subject Peeler (deleted from datasource)", - "type": "Delete", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd4-delete.json", - "published": "2022-02-02T15:04:19Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/2.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1096", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd5-update.json b/docs/0.1/examples/my-collection/notifications/document/cd5-update.json deleted file mode 100644 index 9882f67..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd5-update.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Update entity for subject Language", - "type": "Update", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd5-update.json", - "published": "2022-02-02T15:04:21Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/2.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1024", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd6-d1.json b/docs/0.1/examples/my-collection/notifications/document/cd6-d1.json deleted file mode 100644 index 05d6f4c..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd6-d1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Create subject Wagon", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-d1.json", - "published": "2022-02-03T15:04:18Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-deprecate.json", - "type": "Deprecate" - }, - "object": { - "id": "https://my.authority/subject/2034", - "type": "Name" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd6-d2.json b/docs/0.1/examples/my-collection/notifications/document/cd6-d2.json deleted file mode 100644 index 82daea8..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd6-d2.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate subject Wain", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-d2.json", - "published": "2022-02-03T15:04:18Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-deprecate.json", - "type": "Deprecate" - }, - "object": { - "id": "https://my.authority/subject/1019", - "type": "Name" - }, - "useInstead": { - "id": "https://my.authority/subject/2034", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd6-deprecate.json b/docs/0.1/examples/my-collection/notifications/document/cd6-deprecate.json deleted file mode 100644 index 3186de5..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd6-deprecate.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate subject Wain and use subject Wagon instead (when replacement doesn't exist)", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-deprecate.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/3.json", - "type": "OrderedCollection" - }, - "orderedItems": [ - { - "summary": "Create subject Wagon", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-d1.json", - "published": "2022-02-03T15:04:18Z", - "object": { - "id": "https://my.authority/subject/2034", - "type": "Name" - } - }, - { - "summary": "Deprecate subject Wain", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-d2.json", - "published": "2022-02-03T15:04:18Z", - "object": { - "id": "https://my.authority/subject/1019", - "type": "Name" - }, - "useInstead": { - "id": "https://my.authority/subject/2034", - "type": "Subject" - } - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd7-deprecate.json b/docs/0.1/examples/my-collection/notifications/document/cd7-deprecate.json deleted file mode 100644 index 842ea6e..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd7-deprecate.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate subject Cookery and use subject Cooking instead (when replacement does exist)", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd7-deprecate.json", - "published": "2022-02-03T15:06:14Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/3.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1014", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/1985", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd8-deprecate.json b/docs/0.1/examples/my-collection/notifications/document/cd8-deprecate.json deleted file mode 100644 index 00c8f3c..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd8-deprecate.json +++ /dev/null @@ -1,18 +0,0 @@ - - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate subject Ambuscade (no replacement)", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd8-deprecate.json", - "published": "2022-02-03T15:06:14Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/3.json", - "type": "OrderedCollection" - }, - "object": { - "id": "https://my.authority/subject/1015", - "type": "Subject" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd9-s1.json b/docs/0.1/examples/my-collection/notifications/document/cd9-s1.json deleted file mode 100644 index b9b6c55..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd9-s1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Create name Alekseev, B. A. (Electrical engineer)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s1.json", - "published": "2022-02-04T15:04:18Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-split.json", - "type": "Split" - }, - "object": { - "id": "https://my.authority/subject/2191", - "type": "Name" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd9-s2.json b/docs/0.1/examples/my-collection/notifications/document/cd9-s2.json deleted file mode 100644 index dcdf9b7..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd9-s2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Create name Alekseev, B. A. (Mechanical engineer)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s2.json", - "published": "2022-02-04T15:04:18Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-split.json", - "type": "Split" - }, - "object": { - "id": "https://my.authority/subject/2192", - "type": "Name" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd9-s3.json b/docs/0.1/examples/my-collection/notifications/document/cd9-s3.json deleted file mode 100644 index 98c0102..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd9-s3.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Deprecate name Alekseev, B. A.", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s3.json", - "published": "2022-02-04T15:04:18Z", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-split.json", - "type": "Split" - }, - "object": { - "id": "https://my.authority/subject/1101", - "type": "Name" - }, - "useInstead": [ - { - "id": "https://my.authority/subject/2191", - "type": "Subject" - }, - { - "id": "https://my.authority/subject/2192", - "type": "Subject" - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/document/cd9-split.json b/docs/0.1/examples/my-collection/notifications/document/cd9-split.json deleted file mode 100644 index c999e80..0000000 --- a/docs/0.1/examples/my-collection/notifications/document/cd9-split.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "Split name Alekseev, B. A. in to names Alekseev, B. A. (Electrical engineer) and Alekseev, B. A. (Mechanical engineer)", - "type": "Split", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-split.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/4.json", - "type": "OrderedCollection" - }, - "orderedItems": [ - { - "summary": "Create name Alekseev, B. A. (Electrical engineer)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s1.json", - "published": "2022-02-04T15:04:18Z", - "object": { - "id": "https://my.authority/subject/2191", - "type": "Name" - } - }, - { - "summary": "Create name Alekseev, B. A. (Mechanical engineer)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s2.json", - "published": "2022-02-04T15:04:18Z", - "object": { - "id": "https://my.authority/subject/2192", - "type": "Name" - } - }, - { - "summary": "Deprecate name Alekseev, B. A.", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s3.json", - "published": "2022-02-04T15:04:18Z", - "object": { - "id": "https://my.authority/subject/1101", - "type": "Name" - }, - "useInstead": [ - { - "id": "https://my.authority/subject/2191", - "type": "Subject" - }, - { - "id": "https://my.authority/subject/2192", - "type": "Subject" - } - ] - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/entry-point.json b/docs/0.1/examples/my-collection/notifications/entry-point.json deleted file mode 100644 index d0c8552..0000000 --- a/docs/0.1/examples/my-collection/notifications/entry-point.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "My Entity Collection - Notification System", - "type": "OrderedCollection", - "id": "https://emm-spec.org/0.1/examples/my-collection/notifications/entry-point.json", - "totalItems": 7, - "first": { - "id": "https://emm-spec.org/0.1/examples/my-collection/notifications/set/1.json", - "type": "OrderedCollectionPage" - }, - "last": { - "id": "https://emm-spec.org/0.1/examples/my-collection/notifications/set/4.json", - "type": "OrderedCollectionPage" - } -} diff --git a/docs/0.1/examples/my-collection/notifications/sets/1.json b/docs/0.1/examples/my-collection/notifications/sets/1.json deleted file mode 100644 index e79fd06..0000000 --- a/docs/0.1/examples/my-collection/notifications/sets/1.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "type": "OrderedCollectionPage", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/1.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/entry-point.json", - "type": "OrderedCollection" - }, - "totalItems": 2, - "next": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/2.json", - "type": "OrderedCollectionPage" - }, - "orderedItems": [ - { - "summary": "Add entity for subject Science (already exists in datasource, but not previously available)", - "type": "Add", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd1-add.json", - "published": "2022-02-01T15:04:22Z", - "object": { - "id": "https://my.authority/subject/1001", - "type": "Subject" - } - }, - { - "summary": "Create entity for subject Archery (newly created in the datasource)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd2-create.json", - "published": "2022-02-01T15:06:13Z", - "object": { - "id": "https://my.authority/subject/1002", - "type": "Subject" - } - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/sets/2.json b/docs/0.1/examples/my-collection/notifications/sets/2.json deleted file mode 100644 index 448aced..0000000 --- a/docs/0.1/examples/my-collection/notifications/sets/2.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "type": "OrderedCollectionPage", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/2.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/entry-point.json", - "type": "OrderedCollection" - }, - "totalItems": 3, - "prev": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/1.json", - "type": "OrderedCollectionPage" - }, - "next": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/3.json", - "type": "OrderedCollectionPage" - }, - "orderedItems": [ - { - "summary": "Remove subject Grimalkin (not deleted, but no longer available)", - "type": "Remove", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd3-remove.json", - "published": "2022-02-02T15:03:18Z", - "object": { - "id": "https://my.authority/subject/1101", - "type": "Subject" - } - }, - { - "summary": "Delete subject Peeler (deleted from datasource)", - "type": "Delete", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd4-delete.json", - "published": "2022-02-02T15:04:19Z", - "object": { - "id": "https://my.authority/subject/1096", - "type": "Subject" - } - }, - { - "summary": "Update entity for subject Language", - "type": "Update", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd5-update.json", - "published": "2022-02-02T15:04:21Z", - "object": { - "id": "https://my.authority/subject/1024", - "type": "Subject" - } - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/sets/3.json b/docs/0.1/examples/my-collection/notifications/sets/3.json deleted file mode 100644 index ebe572b..0000000 --- a/docs/0.1/examples/my-collection/notifications/sets/3.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "type": "OrderedCollectionPage", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/3.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/entry-point.json", - "type": "OrderedCollection" - }, - "totalItems": 3, - "prev": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/2.json", - "type": "OrderedCollectionPage" - }, - "next": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/4.json", - "type": "OrderedCollectionPage" - }, - "orderedItems": [ - { - "summary": "Deprecate subject Wain and use subject Wagon instead (when replacement doesn't exist)", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-deprecate.json", - "orderedItems": [ - { - "summary": "Create subject Wagon", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-d1.json", - "published": "2022-02-03T15:04:18Z", - "object": { - "id": "https://my.authority/subject/2034", - "type": "Name" - } - }, - { - "summary": "Deprecate subject Wain", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd6-d2.json", - "published": "2022-02-03T15:04:18Z", - "object": { - "id": "https://my.authority/subject/1019", - "type": "Name" - }, - "useInstead": { - "id": "https://my.authority/subject/2034", - "type": "Subject" - } - } - ] - }, - { - "summary": "Deprecate subject Cookery and use subject Cooking instead (when replacement does exist)", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd7-deprecate.json", - "published": "2022-02-03T15:06:14Z", - "object": { - "id": "https://my.authority/subject/1014", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/1985", - "type": "Subject" - } - }, - { - "summary": "Deprecate subject Ambuscade (no replacement)", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd8-deprecate.json", - "published": "2022-02-03T15:06:14Z", - "object": { - "id": "https://my.authority/subject/1015", - "type": "Subject" - } - } - ] -} diff --git a/docs/0.1/examples/my-collection/notifications/sets/4.json b/docs/0.1/examples/my-collection/notifications/sets/4.json deleted file mode 100644 index 3e307b7..0000000 --- a/docs/0.1/examples/my-collection/notifications/sets/4.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "type": "OrderedCollectionPage", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/4.json", - "partOf": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/entry-point.json", - "type": "OrderedCollection" - }, - "totalItems": 2, - "prev": { - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/set/3.json", - "type": "OrderedCollectionPage" - }, - "orderedItems": [ - { - "summary": "Split name Alekseev, B. A. in to names Alekseev, B. A. (Electrical engineer) and Alekseev, B. A. (Mechanical engineer)", - "type": "Split", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-split.json", - "orderedItems": [ - { - "summary": "Create name Alekseev, B. A. (Electrical engineer)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s1.json", - "published": "2022-02-04T15:04:18Z", - "object": { - "id": "https://my.authority/subject/2191", - "type": "Name" - } - }, - { - "summary": "Create name Alekseev, B. A. (Mechanical engineer)", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s2.json", - "published": "2022-02-04T15:04:18Z", - "object": { - "id": "https://my.authority/subject/2192", - "type": "Name" - } - }, - { - "summary": "Deprecate name Alekseev, B. A.", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd9-s3.json", - "published": "2022-02-04T15:04:18Z", - "object": { - "id": "https://my.authority/subject/1101", - "type": "Name" - }, - "useInstead": [ - { - "id": "https://my.authority/subject/2191", - "type": "Subject" - }, - { - "id": "https://my.authority/subject/2192", - "type": "Subject" - } - ] - } - ] - }, - { - "summary": "Merge subjects Juggernaut and Barrage in to subject Campaign", - "type": "Merge", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-merge.json", - "orderedItems": [ - { - "summary": "Create subject Campaign", - "type": "Create", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m1.json", - "published": "2022-02-04T15:04:19Z", - "object": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } - }, - { - "summary": "Deprecate subject Juggernaut", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m2.json", - "published": "2022-02-04T15:04:19Z", - "object": { - "id": "https://my.authority/subject/1096", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } - }, - { - "summary": "Deprecate subject Barrage", - "type": "Deprecate", - "id": "https://ld4.github.io/entity_metadata_management/examples/my-collection/notifications/document/cd10-m3.json", - "published": "2022-02-04T15:04:19Z", - "object": { - "id": "https://my.authority/subject/1338", - "type": "Subject" - }, - "useInstead": { - "id": "https://my.authority/subject/2221", - "type": "Subject" - } - } - ] - } - ] -} diff --git a/docs/0.1/examples/my-collection/partial-cache/entry-point.json b/docs/0.1/examples/my-collection/partial-cache/entry-point.json deleted file mode 100644 index 674e423..0000000 --- a/docs/0.1/examples/my-collection/partial-cache/entry-point.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@vocab": "https://www.w3.org/ns/activitystreams", - "emm": "https://emm-spec.org/0.1/context.json" - }, - "summary": "My Entity Collection - Partial Cache", - "FIXME": "FLESH OUT EXAMPLE" -}