From 742fc8dd91b1261c9d1ed51991d6cc2321eaf2f4 Mon Sep 17 00:00:00 2001 From: jwen Date: Tue, 27 Feb 2018 13:26:37 -0800 Subject: [PATCH 001/127] Add web schema in context folder for experience event --- package.json | 2 +- schemas/context/experienceevent.schema.json | 2 +- schemas/context/web.example.1.json | 14 +++++++++ schemas/context/web.schema.json | 35 +++++++++++++++++++++ 4 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 schemas/context/web.example.1.json create mode 100644 schemas/context/web.schema.json diff --git a/package.json b/package.json index 183ca51f0b..f84852e444 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 128 + "schemas": 129 }, "scripts": { "clean": "rm -rf docs/reference", diff --git a/schemas/context/experienceevent.schema.json b/schemas/context/experienceevent.schema.json index 1e1f7b0fe4..e610886b2e 100644 --- a/schemas/context/experienceevent.schema.json +++ b/schemas/context/experienceevent.schema.json @@ -84,7 +84,7 @@ }, "xdm:web": { "title": "Web", - "$ref": "https://ns.adobe.com/xdm/channels/web", + "$ref": "https://ns.adobe.com/xdm/context/web", "description": "The information related to web page and link of the ExperienceEvent." }, diff --git a/schemas/context/web.example.1.json b/schemas/context/web.example.1.json new file mode 100644 index 0000000000..0ea8e8a1b9 --- /dev/null +++ b/schemas/context/web.example.1.json @@ -0,0 +1,14 @@ +{ + "xdm:page": { + "xdm:section": "Search section", + "xdm:name": "search", + "xdm:URL": "https://www.google.com", + "xdm:isErrorPage": false, + "xdm:isHomePage": true + }, + "xdm:link": { + "xdm:type": "other", + "xdm:URL": "https://store.google.com/?utm_source=hp_header&utm_medium=google_oo&utm_campaign=GS100042", + "xdm:name": "google store" + } +} diff --git a/schemas/context/web.schema.json b/schemas/context/web.schema.json new file mode 100644 index 0000000000..2cd064331e --- /dev/null +++ b/schemas/context/web.schema.json @@ -0,0 +1,35 @@ +{ + "meta:license": [ + "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/web", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web", + "type": "object", + "description": + "Information about the web page and/or link of the ExperienceEvent.", + "definitions": { + "web": { + "properties": { + "xdm:page": { + "title": "Web Page", + "$ref": "https://ns.adobe.com/xdm/channels/webpage", + "description": "The web page information of the ExperienceEvent." + }, + "xdm:link": { + "title": "Web Link", + "$ref": "https://ns.adobe.com/xdm/context/weblink", + "description": "The web link information of the ExperienceEvent." + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/web" + } + ] +} From 3b487f6b5a210d3d087ae61de287fe2d7976149d Mon Sep 17 00:00:00 2001 From: jwen Date: Tue, 27 Feb 2018 14:25:59 -0800 Subject: [PATCH 002/127] Rename web to webinfo --- schemas/context/experienceevent.schema.json | 2 +- .../{web.example.1.json => webinfo.example.1.json} | 0 schemas/context/{web.schema.json => webinfo.schema.json} | 8 ++++---- 3 files changed, 5 insertions(+), 5 deletions(-) rename schemas/context/{web.example.1.json => webinfo.example.1.json} (100%) rename schemas/context/{web.schema.json => webinfo.schema.json} (88%) diff --git a/schemas/context/experienceevent.schema.json b/schemas/context/experienceevent.schema.json index e610886b2e..fda823050e 100644 --- a/schemas/context/experienceevent.schema.json +++ b/schemas/context/experienceevent.schema.json @@ -84,7 +84,7 @@ }, "xdm:web": { "title": "Web", - "$ref": "https://ns.adobe.com/xdm/context/web", + "$ref": "https://ns.adobe.com/xdm/context/webinfo", "description": "The information related to web page and link of the ExperienceEvent." }, diff --git a/schemas/context/web.example.1.json b/schemas/context/webinfo.example.1.json similarity index 100% rename from schemas/context/web.example.1.json rename to schemas/context/webinfo.example.1.json diff --git a/schemas/context/web.schema.json b/schemas/context/webinfo.schema.json similarity index 88% rename from schemas/context/web.schema.json rename to schemas/context/webinfo.schema.json index 2cd064331e..b7622a3785 100644 --- a/schemas/context/web.schema.json +++ b/schemas/context/webinfo.schema.json @@ -5,14 +5,14 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": "https://ns.adobe.com/xdm/context/web", + "$id": "https://ns.adobe.com/xdm/context/webinfo", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Web", + "title": "Web Information", "type": "object", "description": "Information about the web page and/or link of the ExperienceEvent.", "definitions": { - "web": { + "webinfo": { "properties": { "xdm:page": { "title": "Web Page", @@ -29,7 +29,7 @@ }, "allOf": [ { - "$ref": "#/definitions/web" + "$ref": "#/definitions/webinfo" } ] } From f9a40bc78a142c2de9dd7f2d2a896b9c6a59e942 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Wed, 28 Feb 2018 13:42:22 +0000 Subject: [PATCH 003/127] [trivial] fixed linter --- schemas/context/webinfo.example.1.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index 0ea8e8a1b9..508909f8e8 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -8,7 +8,8 @@ }, "xdm:link": { "xdm:type": "other", - "xdm:URL": "https://store.google.com/?utm_source=hp_header&utm_medium=google_oo&utm_campaign=GS100042", + "xdm:URL": + "https://store.google.com/?utm_source=hp_header&utm_medium=google_oo&utm_campaign=GS100042", "xdm:name": "google store" } } From 3aa0c62c9afc38a4206872bb7b2aaaa1d88ad4e3 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Fri, 2 Mar 2018 15:57:53 -0500 Subject: [PATCH 004/127] Created the Implementation abstract schema Created the implementation schema to hole the version and api details of a sites or apps client side implementation for use with an experience service. --- schemas/context/implementation.schema.json | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 schemas/context/implementation.schema.json diff --git a/schemas/context/implementation.schema.json b/schemas/context/implementation.schema.json new file mode 100644 index 0000000000..1e77689951 --- /dev/null +++ b/schemas/context/implementation.schema.json @@ -0,0 +1,34 @@ +{ + "meta:license": [ + "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/implementation", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Implementation", + "type": "object", + "meta:extensible": true, + "description": "Implementation of an API.", + "definitions": { + "implementation": { + "xdm:properties": { + "name": { + "title": "Name", + "type": "string", + "description": "SDK or endpoint Name, e.g sCode, AppMeasurement." + }, + "xdm:version": { + "title": "Version", + "type": "string", + "description": "The version idenitifier of the API, e.g h.18." + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/implementation" + } + ] +} From d045b38d59b93417ec032763b73cc5d81d541cd5 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Fri, 2 Mar 2018 16:00:59 -0500 Subject: [PATCH 005/127] Created example for implementation schema --- schemas/context/implementation.example.1.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 schemas/context/implementation.example.1.json diff --git a/schemas/context/implementation.example.1.json b/schemas/context/implementation.example.1.json new file mode 100644 index 0000000000..586ce17b33 --- /dev/null +++ b/schemas/context/implementation.example.1.json @@ -0,0 +1,4 @@ +{ + "xdm:name": "AppMeasurement for JavaScript", + "xdm:version": "2.7.0" +} From 8dae3210517f79fc13ffbea14b9769d6892683bf Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Fri, 2 Mar 2018 16:42:18 -0500 Subject: [PATCH 006/127] Locations to record the implementations for the EC Added new extension, that uses the common implementation schema to enable the recording of what client libraries are used. --- .../experience/implementations.schema.json | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 schemas/extensions/adobe/experience/implementations.schema.json diff --git a/schemas/extensions/adobe/experience/implementations.schema.json b/schemas/extensions/adobe/experience/implementations.schema.json new file mode 100644 index 0000000000..086047726b --- /dev/null +++ b/schemas/extensions/adobe/experience/implementations.schema.json @@ -0,0 +1,25 @@ +{ + "$id": "https://ns.adobe.com/xdm-extensions/experience/analytics/analytics-extensions", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Adobe Experience Cloud ExperienceEvent Implementations", + "type": "object", + "meta:extensible": true, + "description": "Details the type and version of Adobe Experience Cloud client implementations. Used for debugging and usage analysis.", + "properties": { + "https://ns.adobe.com/experience/analytics": { + "title": "Adobe Analytics AppMeasurement", + "$ref": "https://ns.adobe.com/xdm/context/implementation", + "description": "Adobe Analytics AppMeasurement implementation." + }, + "https://ns.adobe.com/experience/target": { + "title": "Adobe Target Implementation", + "$ref": "https://ns.adobe.com/xdm/context/implementation", + "description": "Adobe Target mBox implementation." + }, + "https://ns.adobe.com/experience/idService": { + "title": "Adobe Visitor Service Implementation", + "$ref": "https://ns.adobe.com/xdm/context/implementation", + "description": "Experience Cloud ID Service implementation." + } + } +} From 96dd56134ec3e96ac150203a7352087a85b9ca67 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Fri, 2 Mar 2018 17:02:42 -0500 Subject: [PATCH 007/127] Corrected syntax --- schemas/context/implementation.schema.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/schemas/context/implementation.schema.json b/schemas/context/implementation.schema.json index 1e77689951..b0d18141cd 100644 --- a/schemas/context/implementation.schema.json +++ b/schemas/context/implementation.schema.json @@ -13,16 +13,17 @@ "description": "Implementation of an API.", "definitions": { "implementation": { - "xdm:properties": { - "name": { - "title": "Name", - "type": "string", - "description": "SDK or endpoint Name, e.g sCode, AppMeasurement." - }, - "xdm:version": { - "title": "Version", - "type": "string", - "description": "The version idenitifier of the API, e.g h.18." + "properties": { + "xdm:name": { + "title": "Name", + "type": "string", + "description": "SDK or endpoint Name, e.g sCode, AppMeasurement." + }, + "xdm:version": { + "title": "Version", + "type": "string", + "description": "The version idenitifier of the API, e.g h.18." + } } } }, From 944639b661e492f4e73af5f70e58bc9d7d15f8c8 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Tue, 6 Mar 2018 18:21:08 -0500 Subject: [PATCH 008/127] Moved to the extensions folder --- .../adobe/experience/implementations.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename {schemas/extensions => extensions}/adobe/experience/implementations.schema.json (95%) diff --git a/schemas/extensions/adobe/experience/implementations.schema.json b/extensions/adobe/experience/implementations.schema.json similarity index 95% rename from schemas/extensions/adobe/experience/implementations.schema.json rename to extensions/adobe/experience/implementations.schema.json index 086047726b..f8e88ed45f 100644 --- a/schemas/extensions/adobe/experience/implementations.schema.json +++ b/extensions/adobe/experience/implementations.schema.json @@ -16,7 +16,7 @@ "$ref": "https://ns.adobe.com/xdm/context/implementation", "description": "Adobe Target mBox implementation." }, - "https://ns.adobe.com/experience/idService": { + "https://ns.adobe.com/experience/idservice": { "title": "Adobe Visitor Service Implementation", "$ref": "https://ns.adobe.com/xdm/context/implementation", "description": "Experience Cloud ID Service implementation." From e0bfdd24bb62fd8c22abd66568ff547782ee04ed Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Tue, 6 Mar 2018 18:25:56 -0500 Subject: [PATCH 009/127] Create implementation.example.1.json --- .../adobe/experience/implementation.example.1.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 extensions/adobe/experience/implementation.example.1.json diff --git a/extensions/adobe/experience/implementation.example.1.json b/extensions/adobe/experience/implementation.example.1.json new file mode 100644 index 0000000000..2ebda8b86c --- /dev/null +++ b/extensions/adobe/experience/implementation.example.1.json @@ -0,0 +1,10 @@ +{ + "https://ns.adobe.com/experience/analytics": { + "xdm:name": "AppMeasurement for JavaScript", + "xdm:version": "2.7.0" + }, + "https://ns.adobe.com/experience/idservice": { + "xdm:name": "VisitorAPI.js", + "xdm:version": "1.4" + } +} From bafdbe690f9e03f03d14f5af7d98ddd78f7eaef0 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Wed, 7 Mar 2018 10:35:50 +0100 Subject: [PATCH 010/127] Update version number, fix build --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3386867aa5..f679aaa0e8 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "xdm", - "version": "0.5.3", + "version": "0.5.4", "description": "Experience Data Models", "main": "", "config": { "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 130 + "schemas": 131 }, "scripts": { "clean": "rm -rf docs/reference", From 345d554d553c2c6982917e03519e8211cdd85486 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Fri, 9 Mar 2018 12:22:09 -0500 Subject: [PATCH 011/127] Removed option to extend implementations extended schema. Corrected $id URI. Improved title and description changed to use the new name of the abstract schema Implementation Details Changed impleemntationdetails.name to a uri with a enum set of hints. --- .../experience/implementations.schema.json | 25 +++++++++---------- ...n => implementationdetails.example.1.json} | 0 ...json => implementationdetails.schema.json} | 18 ++++++++----- 3 files changed, 24 insertions(+), 19 deletions(-) rename schemas/context/{implementation.example.1.json => implementationdetails.example.1.json} (100%) rename schemas/context/{implementation.schema.json => implementationdetails.schema.json} (58%) diff --git a/extensions/adobe/experience/implementations.schema.json b/extensions/adobe/experience/implementations.schema.json index f8e88ed45f..33a9c80fad 100644 --- a/extensions/adobe/experience/implementations.schema.json +++ b/extensions/adobe/experience/implementations.schema.json @@ -1,25 +1,24 @@ { - "$id": "https://ns.adobe.com/xdm-extensions/experience/analytics/analytics-extensions", + "$id": "https://ns.adobe.com/xdm-extensions/experience/implementations", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Adobe Experience Cloud ExperienceEvent Implementations", + "title": "The Adobe Experience Cloud techncial implementations details for data collection", "type": "object", - "meta:extensible": true, - "description": "Details the type and version of Adobe Experience Cloud client implementations. Used for debugging and usage analysis.", + "description": "Details the type and version of Adobe Experience Cloud client implementations for data collection. Used for debugging and usage analysis.", "properties": { "https://ns.adobe.com/experience/analytics": { - "title": "Adobe Analytics AppMeasurement", - "$ref": "https://ns.adobe.com/xdm/context/implementation", - "description": "Adobe Analytics AppMeasurement implementation." + "title": "Adobe Analytics AppMeasurement details", + "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", + "description": "Adobe Analytics AppMeasurement implementation details." }, "https://ns.adobe.com/experience/target": { - "title": "Adobe Target Implementation", - "$ref": "https://ns.adobe.com/xdm/context/implementation", - "description": "Adobe Target mBox implementation." + "title": "Adobe Target Implementation details", + "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", + "description": "Adobe Target mBox implementation details." }, "https://ns.adobe.com/experience/idservice": { - "title": "Adobe Visitor Service Implementation", - "$ref": "https://ns.adobe.com/xdm/context/implementation", - "description": "Experience Cloud ID Service implementation." + "title": "Adobe Visitor Service Implementation details", + "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", + "description": "Experience Cloud ID Service implementation details." } } } diff --git a/schemas/context/implementation.example.1.json b/schemas/context/implementationdetails.example.1.json similarity index 100% rename from schemas/context/implementation.example.1.json rename to schemas/context/implementationdetails.example.1.json diff --git a/schemas/context/implementation.schema.json b/schemas/context/implementationdetails.schema.json similarity index 58% rename from schemas/context/implementation.schema.json rename to schemas/context/implementationdetails.schema.json index b0d18141cd..d96dcfc207 100644 --- a/schemas/context/implementation.schema.json +++ b/schemas/context/implementationdetails.schema.json @@ -5,19 +5,25 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": "https://ns.adobe.com/xdm/context/implementation", + "$id": "https://ns.adobe.com/xdm/context/implementationdetails", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Implementation", + "title": "Implementation Details", "type": "object", "meta:extensible": true, - "description": "Implementation of an API.", + "description": "Details about the sdk, library or service used in an application's or web page's implementation of a service.", "definitions": { - "implementation": { + "implementationdetails": { "properties": { "xdm:name": { "title": "Name", "type": "string", - "description": "SDK or endpoint Name, e.g sCode, AppMeasurement." + "format": "uri", + "description": "SDK or endpoint Name.", + "meta:enum": { + "sCode": "Adobe Analytics sCode", + "AppMeasurement": "Adobe App Measurement", + "mBox": "Adobe Target mBox" + } }, "xdm:version": { "title": "Version", @@ -29,7 +35,7 @@ }, "allOf": [ { - "$ref": "#/definitions/implementation" + "$ref": "#/definitions/implementationdetails" } ] } From 8fc4ff288a2f0fecea6efd15a2bdfe3c7787d94a Mon Sep 17 00:00:00 2001 From: cdegroot Date: Fri, 9 Mar 2018 12:30:57 -0500 Subject: [PATCH 012/127] Corrected examples Added Visitor Enum --- extensions/adobe/experience/implementation.example.1.json | 4 ++-- schemas/context/implementationdetails.example.1.json | 2 +- schemas/context/implementationdetails.schema.json | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/extensions/adobe/experience/implementation.example.1.json b/extensions/adobe/experience/implementation.example.1.json index 2ebda8b86c..2d49e120ab 100644 --- a/extensions/adobe/experience/implementation.example.1.json +++ b/extensions/adobe/experience/implementation.example.1.json @@ -1,10 +1,10 @@ { "https://ns.adobe.com/experience/analytics": { - "xdm:name": "AppMeasurement for JavaScript", + "xdm:name": "AppMeasurement", "xdm:version": "2.7.0" }, "https://ns.adobe.com/experience/idservice": { - "xdm:name": "VisitorAPI.js", + "xdm:name": "VisitorAPI", "xdm:version": "1.4" } } diff --git a/schemas/context/implementationdetails.example.1.json b/schemas/context/implementationdetails.example.1.json index 586ce17b33..10f05b30d5 100644 --- a/schemas/context/implementationdetails.example.1.json +++ b/schemas/context/implementationdetails.example.1.json @@ -1,4 +1,4 @@ { - "xdm:name": "AppMeasurement for JavaScript", + "xdm:name": "AppMeasurement", "xdm:version": "2.7.0" } diff --git a/schemas/context/implementationdetails.schema.json b/schemas/context/implementationdetails.schema.json index d96dcfc207..0ede97194b 100644 --- a/schemas/context/implementationdetails.schema.json +++ b/schemas/context/implementationdetails.schema.json @@ -22,7 +22,8 @@ "meta:enum": { "sCode": "Adobe Analytics sCode", "AppMeasurement": "Adobe App Measurement", - "mBox": "Adobe Target mBox" + "mBox": "Adobe Target mBox", + "VisitorAPI": "Adobe Visitor Service" } }, "xdm:version": { From 175a3cdaa394937780df80f9194f20966fb2ceb7 Mon Sep 17 00:00:00 2001 From: jwen Date: Mon, 19 Mar 2018 10:41:36 -0700 Subject: [PATCH 013/127] Move webpage to context and change couple of field names --- schemas/context/webinfo.schema.json | 6 +++--- schemas/{channels => context}/webpage.example.1.json | 0 schemas/{channels => context}/webpage.schema.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename schemas/{channels => context}/webpage.example.1.json (100%) rename schemas/{channels => context}/webpage.schema.json (97%) diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index b7622a3785..d3d643ca94 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -14,12 +14,12 @@ "definitions": { "webinfo": { "properties": { - "xdm:page": { + "xdm:webPage": { "title": "Web Page", - "$ref": "https://ns.adobe.com/xdm/channels/webpage", + "$ref": "https://ns.adobe.com/xdm/context/webpage", "description": "The web page information of the ExperienceEvent." }, - "xdm:link": { + "xdm:webLink": { "title": "Web Link", "$ref": "https://ns.adobe.com/xdm/context/weblink", "description": "The web link information of the ExperienceEvent." diff --git a/schemas/channels/webpage.example.1.json b/schemas/context/webpage.example.1.json similarity index 100% rename from schemas/channels/webpage.example.1.json rename to schemas/context/webpage.example.1.json diff --git a/schemas/channels/webpage.schema.json b/schemas/context/webpage.schema.json similarity index 97% rename from schemas/channels/webpage.schema.json rename to schemas/context/webpage.schema.json index ccde831aee..66f77d783c 100644 --- a/schemas/channels/webpage.schema.json +++ b/schemas/context/webpage.schema.json @@ -5,7 +5,7 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": "https://ns.adobe.com/xdm/channels/webpage", + "$id": "https://ns.adobe.com/xdm/context/webpage", "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Page", "type": "object", From 69ca36b9e9ca65b301355d14e6a9cb32600a9d0c Mon Sep 17 00:00:00 2001 From: jwen Date: Mon, 19 Mar 2018 10:51:37 -0700 Subject: [PATCH 014/127] Update field names --- schemas/context/webinfo.example.1.json | 4 ++-- schemas/context/webpage.schema.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index 508909f8e8..cb4a59efd2 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -1,12 +1,12 @@ { - "xdm:page": { + "xdm:webPage": { "xdm:section": "Search section", "xdm:name": "search", "xdm:URL": "https://www.google.com", "xdm:isErrorPage": false, "xdm:isHomePage": true }, - "xdm:link": { + "xdm:webLink": { "xdm:type": "other", "xdm:URL": "https://store.google.com/?utm_source=hp_header&utm_medium=google_oo&utm_campaign=GS100042", diff --git a/schemas/context/webpage.schema.json b/schemas/context/webpage.schema.json index 66f77d783c..3a132066f0 100644 --- a/schemas/context/webpage.schema.json +++ b/schemas/context/webpage.schema.json @@ -50,17 +50,17 @@ "type": "object", "description": "The referrer of the web page.", "properties": { - "URL": { + "xdm:URL": { "title": "URL", "type": "string", "description": "The referrer URL." }, - "domain": { + "xdm:domain": { "title": "Domain", "type": "string", "description": "The domain of the referrer." }, - "type": { + "@type": { "title": "Type", "type": "string", "description": "The referrer type." From aa4ad21d45b2b942ebf29e052fa6b5a2232880bf Mon Sep 17 00:00:00 2001 From: jwen Date: Tue, 3 Apr 2018 17:03:57 -0700 Subject: [PATCH 015/127] Remove xdm:domain --- schemas/context/webpage.schema.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/schemas/context/webpage.schema.json b/schemas/context/webpage.schema.json index 3a132066f0..591f28dafd 100644 --- a/schemas/context/webpage.schema.json +++ b/schemas/context/webpage.schema.json @@ -55,11 +55,6 @@ "type": "string", "description": "The referrer URL." }, - "xdm:domain": { - "title": "Domain", - "type": "string", - "description": "The domain of the referrer." - }, "@type": { "title": "Type", "type": "string", From 2343eda83d60da35b9dd35cfe954c1196c540b52 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Wed, 4 Apr 2018 14:09:50 -0400 Subject: [PATCH 016/127] Addition of core application metrics for desktop and mobile applications. --- schemas/data/metrics.schema.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/schemas/data/metrics.schema.json b/schemas/data/metrics.schema.json index 9967aeb234..c77750245a 100644 --- a/schemas/data/metrics.schema.json +++ b/schemas/data/metrics.schema.json @@ -31,12 +31,32 @@ "https://ns.adobe.com/xdm/data/metrics/advertising/clicks": { "$ref": "https://ns.adobe.com/xdm/data/measure" }, + "https://ns.adobe.com/xdm/data/metrics/application/closes": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Graceful termination of an application." + }, + "https://ns.adobe.com/xdm/data/metrics/application/crashes": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Triggered when the application does not exit gracefully. Event is sent on application launch after a crash." + }, + "https://ns.adobe.com/xdm/data/metrics/application/featureusages": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Activation of an application feature that is being measured." + }, + "https://ns.adobe.com/xdm/data/metrics/application/installs": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Install of an application on a device. Triggered on first launch after install." + }, "https://ns.adobe.com/xdm/data/metrics/advertising/impressions": { "$ref": "https://ns.adobe.com/xdm/data/measure" }, "https://ns.adobe.com/xdm/data/metrics/web/link-clicks": { "$ref": "https://ns.adobe.com/xdm/data/measure" }, + "https://ns.adobe.com/xdm/data/metrics/application/launches": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "A launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded." + }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages": { "$ref": "https://ns.adobe.com/xdm/data/measure" }, @@ -73,6 +93,10 @@ "https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends": { "$ref": "https://ns.adobe.com/xdm/data/measure" }, + "https://ns.adobe.com/xdm/data/metrics/application/upgrades": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Upgrade of an application that has previously been installed. Triggered on first launch after upgrade." + }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints": { "$ref": "https://ns.adobe.com/xdm/data/measure" } From 7a80f3f113ea4111b90ae3deb0322a651bf40b5d Mon Sep 17 00:00:00 2001 From: cdegroot Date: Wed, 4 Apr 2018 14:13:48 -0400 Subject: [PATCH 017/127] Lint + validation --- schemas/data/metrics.schema.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/schemas/data/metrics.schema.json b/schemas/data/metrics.schema.json index c77750245a..fcc5a9a9b4 100644 --- a/schemas/data/metrics.schema.json +++ b/schemas/data/metrics.schema.json @@ -37,15 +37,18 @@ }, "https://ns.adobe.com/xdm/data/metrics/application/crashes": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Triggered when the application does not exit gracefully. Event is sent on application launch after a crash." + "description": + "Triggered when the application does not exit gracefully. Event is sent on application launch after a crash." }, "https://ns.adobe.com/xdm/data/metrics/application/featureusages": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Activation of an application feature that is being measured." + "description": + "Activation of an application feature that is being measured." }, "https://ns.adobe.com/xdm/data/metrics/application/installs": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Install of an application on a device. Triggered on first launch after install." + "description": + "Install of an application on a device. Triggered on first launch after install." }, "https://ns.adobe.com/xdm/data/metrics/advertising/impressions": { "$ref": "https://ns.adobe.com/xdm/data/measure" @@ -55,7 +58,8 @@ }, "https://ns.adobe.com/xdm/data/metrics/application/launches": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "A launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded." + "description": + "A launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages": { "$ref": "https://ns.adobe.com/xdm/data/measure" @@ -95,7 +99,8 @@ }, "https://ns.adobe.com/xdm/data/metrics/application/upgrades": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Upgrade of an application that has previously been installed. Triggered on first launch after upgrade." + "description": + "Upgrade of an application that has previously been installed. Triggered on first launch after upgrade." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints": { "$ref": "https://ns.adobe.com/xdm/data/measure" From 945be1dec53100414189c4df61756a927b0fafd6 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Wed, 4 Apr 2018 12:03:44 -0700 Subject: [PATCH 018/127] Update webinfo.schema.json --- schemas/context/webinfo.schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index d3d643ca94..d952da58c2 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -10,19 +10,19 @@ "title": "Web Information", "type": "object", "description": - "Information about the web page and/or link of the ExperienceEvent.", + "Information about a web interaction recorded via an ExperienceEvent, including the web page and/or link where the interaction occurred.", "definitions": { "webinfo": { "properties": { "xdm:webPage": { "title": "Web Page", "$ref": "https://ns.adobe.com/xdm/context/webpage", - "description": "The web page information of the ExperienceEvent." + "description": "Details about the web page where the web interaction occurred." }, "xdm:webLink": { "title": "Web Link", "$ref": "https://ns.adobe.com/xdm/context/weblink", - "description": "The web link information of the ExperienceEvent." + "description": "Details about the web link (URL) that corresponds to the web page where the interaction occurred." } } } From 2d3eec19550de5ff6dc991244a5753b1d5f4c515 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 5 Apr 2018 11:01:35 -0700 Subject: [PATCH 019/127] updating schemas and examples based on latest feedback --- schemas/context/webinfo.example.1.json | 18 +++++---- schemas/context/webinfo.schema.json | 8 ++-- schemas/context/weblink.example.1.json | 5 +-- schemas/context/weblink.schema.json | 8 ++-- schemas/context/webpage.example.1.json | 13 ++++-- schemas/context/webpage.schema.json | 55 ++++++++++++++++++++------ 6 files changed, 74 insertions(+), 33 deletions(-) diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index cb4a59efd2..f78e542277 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -1,15 +1,19 @@ { "xdm:webPage": { - "xdm:section": "Search section", - "xdm:name": "search", - "xdm:URL": "https://www.google.com", + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", "xdm:isErrorPage": false, - "xdm:isHomePage": true + "xdm:isHomePage": true, + "xdm:referrer": { + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" + } }, "xdm:webLink": { "xdm:type": "other", - "xdm:URL": - "https://store.google.com/?utm_source=hp_header&utm_medium=google_oo&utm_campaign=GS100042", - "xdm:name": "google store" + "xdm:URL": "https://www.example.com/products/store/?view=1", + "xdm:name": "product store" } } diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index d952da58c2..13719ee874 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -10,19 +10,21 @@ "title": "Web Information", "type": "object", "description": - "Information about a web interaction recorded via an ExperienceEvent, including the web page and/or link where the interaction occurred.", + "Information about a web interaction recorded via an `ExperienceEvent`, including the web page and/or link where the interaction occurred.", "definitions": { "webinfo": { "properties": { "xdm:webPage": { "title": "Web Page", "$ref": "https://ns.adobe.com/xdm/context/webpage", - "description": "Details about the web page where the web interaction occurred." + "description": + "Details about the web page where the web interaction occurred." }, "xdm:webLink": { "title": "Web Link", "$ref": "https://ns.adobe.com/xdm/context/weblink", - "description": "Details about the web link (URL) that corresponds to the web page where the interaction occurred." + "description": + "Details about the web link (URL) that corresponds to the web page where the interaction occurred." } } } diff --git a/schemas/context/weblink.example.1.json b/schemas/context/weblink.example.1.json index a41907b22a..fdf5e0a93e 100644 --- a/schemas/context/weblink.example.1.json +++ b/schemas/context/weblink.example.1.json @@ -1,6 +1,5 @@ { "xdm:type": "other", - "xdm:URL": - "https://store.google.com/?utm_source=hp_header&utm_medium=google_oo&utm_campaign=GS100042", - "xdm:name": "google store" + "xdm:URL": "https://www.example.com/products/store/?view=1", + "xdm:name": "product store" } diff --git a/schemas/context/weblink.schema.json b/schemas/context/weblink.schema.json index fb12425b2a..2f53a0a179 100644 --- a/schemas/context/weblink.schema.json +++ b/schemas/context/weblink.schema.json @@ -9,7 +9,8 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Link", "type": "object", - "description": "Information about the web link of the ExperienceEvent.", + "description": + "Details about the web link (URL) that corresponds to the web page where the interaction occurred, as recorded by an `ExperienceEvent`", "definitions": { "weblink": { "properties": { @@ -27,12 +28,13 @@ "xdm:URL": { "title": "URL", "type": "string", - "description": "The link URL." + "description": "The actual link/URL used for this web interaction" }, "xdm:name": { "title": "Name", "type": "string", - "description": "The link name." + "description": + "The normative name used for this web link, used for classification purposes" } } } diff --git a/schemas/context/webpage.example.1.json b/schemas/context/webpage.example.1.json index fc49f0f578..a33cb822e5 100644 --- a/schemas/context/webpage.example.1.json +++ b/schemas/context/webpage.example.1.json @@ -1,7 +1,12 @@ { - "xdm:section": "Search section", - "xdm:name": "search", - "xdm:URL": "https://www.google.com", + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com", "xdm:isErrorPage": false, - "xdm:isHomePage": true + "xdm:isHomePage": true, + "xdm:referrer": { + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" + } } diff --git a/schemas/context/webpage.schema.json b/schemas/context/webpage.schema.json index 591f28dafd..966a3b4553 100644 --- a/schemas/context/webpage.schema.json +++ b/schemas/context/webpage.schema.json @@ -9,56 +9,85 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Page", "type": "object", - "description": "Information about the web page of the `ExperienceEvent`.", + "description": + "Details about the web page where a web interaction occurred, as recorded by an `ExperienceEvent`.", "definitions": { "webpage": { "properties": { - "xdm:section": { - "title": "Section", + "xdm:siteSection": { + "title": "Site Section", "type": "string", - "description": "The section of the web page." + "description": + "The normative name of the site section where this web page resides, which may be used to classify or categorize the interaction" }, "xdm:name": { "title": "Name", "type": "string", - "description": "The name of the web page." + "description": + "The normative name of the web page. This name is not necessarily the page title or directy associate with page content, but is used to organize a site's pages for classification purposes" }, "xdm:URL": { "title": "URL", "type": "string", "format": "uri", - "description": "The web page URL." + "description": + "The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `WebLink`." }, "xdm:server": { "title": "Server", "type": "string", "format": "hostname", - "description": "The server hosts the web page." + "description": + "The normative or usual server that hosts the web page. This may or may not be the host or server that actually served the page interaction, but is used for classification purposes." }, "xdm:isErrorPage": { "title": "Is Error Page", "type": "boolean", - "description": "Indicate if the page is error page or not." + "description": + "Flag that indicate if the page is error page or not. Error here is defined by the application, and may nor may not correspond to a page served with an HTTP error code. This flag is used to broadly categorize web interactions." }, "xdm:isHomePage": { "title": "Is Home Page", "type": "boolean", - "description": "Indicate if the page is home page or not." + "description": + "Flag that indicate if the page is the site home page or not. The definition of home page is determined by the application, but is commonly used to designate a top level landing page or common site entry point. This flag is used to broadly categorize web interactions." }, "xdm:referrer": { "title": "Referrer", "type": "object", - "description": "The referrer of the web page.", + "description": + "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", "properties": { "xdm:URL": { "title": "URL", "type": "string", "description": "The referrer URL." }, - "@type": { - "title": "Type", + "xdm:referrerType": { + "title": "Referrer Type", "type": "string", - "description": "The referrer type." + "description": "The referrer type.", + "enum": [ + "internal", + "external", + "searchEngine", + "typedBookmarked", + "email", + "social" + ], + "meta:enum": { + "internal": + "Referral originated from the current domain or site.", + "external": + "Referral originated from a different domain or site that was not a search or social type.", + "searchEngine": + "Search engine referrers are identified when visitors use a search engine to access the site.", + "typedBookmarked": + "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "email": + "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", + "social": "The referrer is identified as a social network." + } } } } From e02746713354426f796156e3f557bcfa2e0bd883 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 5 Apr 2018 17:40:12 -0400 Subject: [PATCH 020/127] Added missing descriptions. Improved descriptions --- schemas/data/metrics.schema.json | 77 +++++++++++++++++++++++--------- 1 file changed, 55 insertions(+), 22 deletions(-) diff --git a/schemas/data/metrics.schema.json b/schemas/data/metrics.schema.json index fcc5a9a9b4..953521c0ce 100644 --- a/schemas/data/metrics.schema.json +++ b/schemas/data/metrics.schema.json @@ -20,20 +20,27 @@ }, "properties": { "https://ns.adobe.com/xdm/data/metrics/commerce/abandons": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "A product-list has been identified as no longer accessible (e.g purchasable) by the user." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/bounces": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Asynchronous message(s) that have been returned by the receiving system." }, "https://ns.adobe.com/xdm/data/metrics/commerce/checkouts": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "An action during a checkout process of a product list, there can be more than one checkout event if there are multiple steps in a checkout process. If there are multiple steps the event time information and referenced page or experience is used to identify the step individual events represent in order." }, "https://ns.adobe.com/xdm/data/metrics/advertising/clicks": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Click(s) actions on an advertisement." }, "https://ns.adobe.com/xdm/data/metrics/application/closes": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Graceful termination of an application." + "description": "Graceful termination(s) of an application." }, "https://ns.adobe.com/xdm/data/metrics/application/crashes": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -43,7 +50,7 @@ "https://ns.adobe.com/xdm/data/metrics/application/featureusages": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "Activation of an application feature that is being measured." + "Activation(s) of an application feature that is being measured." }, "https://ns.adobe.com/xdm/data/metrics/application/installs": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -51,51 +58,75 @@ "Install of an application on a device. Triggered on first launch after install." }, "https://ns.adobe.com/xdm/data/metrics/advertising/impressions": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Impression(s) of an advertisement to an end user with the potential of being viewed." }, "https://ns.adobe.com/xdm/data/metrics/web/link-clicks": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Click of a web link has occurred." }, "https://ns.adobe.com/xdm/data/metrics/application/launches": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "A launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded." + "Launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Click on a link in a message to an web hosted mirror page." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Asynchronous message(s) failed to deliver in a way that indicates that no future delivery attempts will be successful to the address." }, "https://ns.adobe.com/xdm/data/metrics/web/page-views": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "View(s) of a web page has occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Addition of a product to the product-list. Example a product is added to a shopping cart." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-opens": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Initializations of a new product-list. Example a shopping cart is created." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-removals": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Removal(s) of a product entry from a product-list. Example a product is removed from a shopping cart." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-reopens": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "A product-list that was no longer accessible(abandonded) has been re-activated by the user. Example via a re-marketing activity." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-views": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "View(s) of a product list has occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-views": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "View(s) of a product have occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/purchases": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "An order has been accepted. Purchase is the only required action in a commerce conversion. Purchase must have a product list referenced." }, "https://ns.adobe.com/xdm/data/metrics/commerce/save-for-laters": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Product-list is saved for future use. Example a product wish list." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a persons account/address/device." }, "https://ns.adobe.com/xdm/data/metrics/application/upgrades": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -103,7 +134,9 @@ "Upgrade of an application that has previously been installed. Triggered on first launch after upgrade." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": + "User complaints has been received. This generally occurrs when a recipient of a message reports it as spam." } }, "additionalProperties": false From added16d602d5e4d02d717701cd47c4aa1a7586a Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 5 Apr 2018 17:46:43 -0400 Subject: [PATCH 021/127] Simple spelling corrections. --- schemas/data/metrics.schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/schemas/data/metrics.schema.json b/schemas/data/metrics.schema.json index 953521c0ce..fcc4922d0e 100644 --- a/schemas/data/metrics.schema.json +++ b/schemas/data/metrics.schema.json @@ -10,7 +10,7 @@ "title": "Metrics", "type": "object", "description": - "This is map of metrics and measues. Each key is the valid URI of a known `Metric`. Each value is a `Measure`, i.e. a concrete data point.", + "This is map of metrics and measures. Each key is the valid URI of a known `Metric`. Each value is a `Measure`, i.e. a concrete data point.", "definitions": { "metrics": { "patternProperties": { @@ -74,7 +74,7 @@ "https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "Click on a link in a message to an web hosted mirror page." + "Click on a link in a message to a web hosted mirror page." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -103,7 +103,7 @@ "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-reopens": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "A product-list that was no longer accessible(abandonded) has been re-activated by the user. Example via a re-marketing activity." + "A product-list that was no longer accessible(abandoned) has been re-activated by the user. Example via a re-marketing activity." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-views": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -126,7 +126,7 @@ "https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a persons account/address/device." + "Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a person's account/address/device." }, "https://ns.adobe.com/xdm/data/metrics/application/upgrades": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -136,7 +136,7 @@ "https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "User complaints has been received. This generally occurrs when a recipient of a message reports it as spam." + "User complaints has been received. This generally occurs when a recipient of a message reports it as spam." } }, "additionalProperties": false From 80afff10df845b29b82171378f1af24d704ed129 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 5 Apr 2018 17:57:24 -0400 Subject: [PATCH 022/127] Improved english --- schemas/data/metrics.schema.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/schemas/data/metrics.schema.json b/schemas/data/metrics.schema.json index fcc4922d0e..4094fc8d9f 100644 --- a/schemas/data/metrics.schema.json +++ b/schemas/data/metrics.schema.json @@ -27,12 +27,12 @@ "https://ns.adobe.com/xdm/data/metrics/direct-marketing/bounces": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "Asynchronous message(s) that have been returned by the receiving system." + "Asynchronous message(s) that have been returned as temporarily undeliverable the receiving system." }, "https://ns.adobe.com/xdm/data/metrics/commerce/checkouts": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "An action during a checkout process of a product list, there can be more than one checkout event if there are multiple steps in a checkout process. If there are multiple steps the event time information and referenced page or experience is used to identify the step individual events represent in order." + "An action during a checkout process of a product-list, there can be more than one checkout event if there are multiple steps in a checkout process. If there are multiple steps the event time information and referenced page or experience is used to identify the step individual events represent in order." }, "https://ns.adobe.com/xdm/data/metrics/advertising/clicks": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -64,7 +64,7 @@ }, "https://ns.adobe.com/xdm/data/metrics/web/link-clicks": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Click of a web link has occurred." + "description": "Click of a web-link has occurred." }, "https://ns.adobe.com/xdm/data/metrics/application/launches": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -83,7 +83,7 @@ }, "https://ns.adobe.com/xdm/data/metrics/web/page-views": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "View(s) of a web page has occurred." + "description": "View(s) of a webpage has occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -107,7 +107,7 @@ }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-views": { "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "View(s) of a product list has occurred." + "description": "View(s) of a product-list has occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-views": { "$ref": "https://ns.adobe.com/xdm/data/measure", @@ -116,7 +116,7 @@ "https://ns.adobe.com/xdm/data/metrics/commerce/purchases": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "An order has been accepted. Purchase is the only required action in a commerce conversion. Purchase must have a product list referenced." + "An order has been accepted. Purchase is the only required action in a commerce conversion. Purchase must have a product-list referenced." }, "https://ns.adobe.com/xdm/data/metrics/commerce/save-for-laters": { "$ref": "https://ns.adobe.com/xdm/data/measure", From 3f2bf88cbb6041e41d38a243cbb5f6383aeff0cf Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 10:59:06 -0700 Subject: [PATCH 023/127] Update datasource.schema.json --- schemas/data/datasource.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/datasource.schema.json b/schemas/data/datasource.schema.json index 665d3ac62c..26f5788000 100644 --- a/schemas/data/datasource.schema.json +++ b/schemas/data/datasource.schema.json @@ -46,5 +46,5 @@ "$ref": "#/definitions/datasource" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From c3059b2046b576ec9d840794cf19e5e93b13dbff Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 10:59:53 -0700 Subject: [PATCH 024/127] Update metric.schema.json --- schemas/data/metric.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/metric.schema.json b/schemas/data/metric.schema.json index 4c967ab754..b61861f443 100644 --- a/schemas/data/metric.schema.json +++ b/schemas/data/metric.schema.json @@ -44,5 +44,5 @@ } ], "required": ["@id", "schema:name", "xdm:measurement", "xdm:unit"], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 3d5ce83ae130e083fe721590fa6187aabff5171e Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 11:00:13 -0700 Subject: [PATCH 025/127] Update measure.schema.json --- schemas/data/measure.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/measure.schema.json b/schemas/data/measure.schema.json index 3955f40c83..a0d5bf66e2 100644 --- a/schemas/data/measure.schema.json +++ b/schemas/data/measure.schema.json @@ -53,5 +53,5 @@ } ], "required": ["xdm:value"], - "meta:status": "experimental" + "meta:status": "stabilizing" } From cda99c8bad986661596a1ef35e1c26b680974164 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 11:01:27 -0700 Subject: [PATCH 026/127] Update page-views.schema.json --- schemas/data/page-views.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/page-views.schema.json b/schemas/data/page-views.schema.json index 9fa27fe1f6..d37ddf0821 100644 --- a/schemas/data/page-views.schema.json +++ b/schemas/data/page-views.schema.json @@ -45,5 +45,5 @@ } ], "required": ["@id", "schema:name", "xdm:measurement", "xdm:unit"], - "meta:status": "experimental" + "meta:status": "stabilizing" } From f8d9f8bd41176d7ca388b1d2f97d38de40cfff6b Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:34:32 -0700 Subject: [PATCH 027/127] Update browserdetails.schema.json --- schemas/context/browserdetails.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/browserdetails.schema.json b/schemas/context/browserdetails.schema.json index 76d00e6cf1..194d69604b 100644 --- a/schemas/context/browserdetails.schema.json +++ b/schemas/context/browserdetails.schema.json @@ -96,5 +96,5 @@ "$ref": "#/definitions/browserdetails" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From a4249449cf8268d2dd357d462181e12e08dff25d Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:34:57 -0700 Subject: [PATCH 028/127] Update commerce.schema.json --- schemas/context/commerce.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/commerce.schema.json b/schemas/context/commerce.schema.json index b84bfbf633..7ba8a9e361 100644 --- a/schemas/context/commerce.schema.json +++ b/schemas/context/commerce.schema.json @@ -26,5 +26,5 @@ "$ref": "#/definitions/commerce" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 6c98f3c6eb6148d0ca0f6930873047025a7272df Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:35:16 -0700 Subject: [PATCH 029/127] Update device.schema.json --- schemas/context/device.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/device.schema.json b/schemas/context/device.schema.json index 4116c833cf..e37d43aecd 100644 --- a/schemas/context/device.schema.json +++ b/schemas/context/device.schema.json @@ -89,5 +89,5 @@ "$ref": "#/definitions/device" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From cfcfd589f0fadf7ad62580d273e279a016b52918 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:35:31 -0700 Subject: [PATCH 030/127] Update emailaddress.schema.json --- schemas/context/emailaddress.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/emailaddress.schema.json b/schemas/context/emailaddress.schema.json index ce25549561..7071f7e278 100644 --- a/schemas/context/emailaddress.schema.json +++ b/schemas/context/emailaddress.schema.json @@ -75,5 +75,5 @@ "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 11d47c500fe9903e29e1878719aea79a3163d658 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:35:47 -0700 Subject: [PATCH 031/127] Update enduserids.schema.json --- schemas/context/enduserids.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/enduserids.schema.json b/schemas/context/enduserids.schema.json index 07df00ab00..b01fa5fff3 100644 --- a/schemas/context/enduserids.schema.json +++ b/schemas/context/enduserids.schema.json @@ -44,5 +44,5 @@ "$ref": "https://ns.adobe.com/xdm/context/identity" } }, - "meta:status": "experimental" + "meta:status": "stabilizing" } From d47644dde8a38c5c4fcb8ea5739aac3d37794908 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:36:06 -0700 Subject: [PATCH 032/127] Update environment.schema.json --- schemas/context/environment.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/environment.schema.json b/schemas/context/environment.schema.json index 9406d335e0..cfc07db596 100644 --- a/schemas/context/environment.schema.json +++ b/schemas/context/environment.schema.json @@ -135,5 +135,5 @@ "$ref": "#/definitions/environment" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From b84c6579fc9296ea04bacb23bd1664a178ec56f9 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:36:29 -0700 Subject: [PATCH 033/127] Update identity.schema.json --- schemas/context/identity.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/identity.schema.json b/schemas/context/identity.schema.json index 9e22ddd6af..834272c242 100644 --- a/schemas/context/identity.schema.json +++ b/schemas/context/identity.schema.json @@ -40,5 +40,5 @@ "$ref": "#/definitions/identity" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From bbc93b7dcd048316b9a5cc7445a1348731478ee9 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:36:49 -0700 Subject: [PATCH 034/127] Update locationcontext.schema.json --- schemas/context/locationcontext.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/locationcontext.schema.json b/schemas/context/locationcontext.schema.json index 99d3fdc121..c20ace1739 100644 --- a/schemas/context/locationcontext.schema.json +++ b/schemas/context/locationcontext.schema.json @@ -35,5 +35,5 @@ "$ref": "#/definitions/locationcontext" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 266fca90001ac9a4505c5c5888e8ee67c8be45f1 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:37:08 -0700 Subject: [PATCH 035/127] Update marketing.schema.json --- schemas/context/marketing.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/marketing.schema.json b/schemas/context/marketing.schema.json index a49390be62..41cd4a5df0 100644 --- a/schemas/context/marketing.schema.json +++ b/schemas/context/marketing.schema.json @@ -28,5 +28,5 @@ "$ref": "#/definitions/marketing" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 55524d554d1f7fde143ce74760e13a56f0ceda4a Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:37:32 -0700 Subject: [PATCH 036/127] Update namespace.schema.json --- schemas/context/namespace.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/namespace.schema.json b/schemas/context/namespace.schema.json index e418cb68c5..42821f039d 100644 --- a/schemas/context/namespace.schema.json +++ b/schemas/context/namespace.schema.json @@ -36,5 +36,5 @@ "$ref": "#/definitions/namespace" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 3b78533333df97352e5ae5c3422d5fedd4f95cfb Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:37:51 -0700 Subject: [PATCH 037/127] Update optinout.schema.json --- schemas/context/optinout.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/optinout.schema.json b/schemas/context/optinout.schema.json index ea2d5c36ee..8a90769d77 100644 --- a/schemas/context/optinout.schema.json +++ b/schemas/context/optinout.schema.json @@ -109,5 +109,5 @@ "$ref": "#/definitions/optinout" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 572080ef6f9a0700c6fe10f97049d232f88aaf41 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:38:22 -0700 Subject: [PATCH 038/127] Update person-name.schema.json --- schemas/context/person-name.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/person-name.schema.json b/schemas/context/person-name.schema.json index 38a6148ee7..38e50e4c0f 100644 --- a/schemas/context/person-name.schema.json +++ b/schemas/context/person-name.schema.json @@ -50,5 +50,5 @@ "$ref": "#/definitions/personname" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 84a91b22982af1b3a3eb4d45cd71b9e7ee501c90 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:38:40 -0700 Subject: [PATCH 039/127] Update person.schema.json --- schemas/context/person.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/person.schema.json b/schemas/context/person.schema.json index 5ee8c2e51b..5c004452e3 100644 --- a/schemas/context/person.schema.json +++ b/schemas/context/person.schema.json @@ -67,5 +67,5 @@ "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From acb4818e53f908d5133f32d471e3b28f1dd177a1 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:38:59 -0700 Subject: [PATCH 040/127] Update phonenumber.schema.json --- schemas/context/phonenumber.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/phonenumber.schema.json b/schemas/context/phonenumber.schema.json index 7afb6f29cf..a9ab84687a 100644 --- a/schemas/context/phonenumber.schema.json +++ b/schemas/context/phonenumber.schema.json @@ -73,5 +73,5 @@ "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From a5943702e3b32427dcdd0bf3d0ac7dec0aa46cd9 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:39:27 -0700 Subject: [PATCH 041/127] Update pushnotificationtoken.schema.json --- schemas/context/pushnotificationtoken.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/pushnotificationtoken.schema.json b/schemas/context/pushnotificationtoken.schema.json index acff7a4ce2..bcd3263b4f 100644 --- a/schemas/context/pushnotificationtoken.schema.json +++ b/schemas/context/pushnotificationtoken.schema.json @@ -63,5 +63,5 @@ "$ref": "#/definitions/pushnotificationtoken" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 04b4412bbc656a01974f3b0d6458ee6f4287bf70 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:39:43 -0700 Subject: [PATCH 042/127] Update search.schema.json --- schemas/context/search.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/search.schema.json b/schemas/context/search.schema.json index 22e988637e..8607c6f2b4 100644 --- a/schemas/context/search.schema.json +++ b/schemas/context/search.schema.json @@ -41,5 +41,5 @@ "$ref": "#/definitions/search" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 67bf6a4667dd8caa6d99b489c4bbfa2d95ecc02d Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Fri, 6 Apr 2018 14:40:03 -0700 Subject: [PATCH 043/127] Update subscription.schema.json --- schemas/context/subscription.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/subscription.schema.json b/schemas/context/subscription.schema.json index 99fa08d769..92db4e6e36 100644 --- a/schemas/context/subscription.schema.json +++ b/schemas/context/subscription.schema.json @@ -160,5 +160,5 @@ "$ref": "#/definitions/subscription" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From ee08f24872d7553a85130383b242cc3b397eab13 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Fri, 6 Apr 2018 23:18:18 -0400 Subject: [PATCH 044/127] Corrected typo --- schemas/data/metrics.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/metrics.schema.json b/schemas/data/metrics.schema.json index 4094fc8d9f..b058eb134f 100644 --- a/schemas/data/metrics.schema.json +++ b/schemas/data/metrics.schema.json @@ -136,7 +136,7 @@ "https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints": { "$ref": "https://ns.adobe.com/xdm/data/measure", "description": - "User complaints has been received. This generally occurs when a recipient of a message reports it as spam." + "User complaint(s) have been received. This generally occurs when a recipient of a message reports it as spam." } }, "additionalProperties": false From 08f55d3989c91aba8350721ca3b47db3f126d4fb Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Mon, 9 Apr 2018 11:25:40 +0000 Subject: [PATCH 045/127] [trivial] lint --- schemas/context/implementationdetails.schema.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/schemas/context/implementationdetails.schema.json b/schemas/context/implementationdetails.schema.json index 0ede97194b..4f28f4d0de 100644 --- a/schemas/context/implementationdetails.schema.json +++ b/schemas/context/implementationdetails.schema.json @@ -10,7 +10,8 @@ "title": "Implementation Details", "type": "object", "meta:extensible": true, - "description": "Details about the sdk, library or service used in an application's or web page's implementation of a service.", + "description": + "Details about the sdk, library or service used in an application's or web page's implementation of a service.", "definitions": { "implementationdetails": { "properties": { @@ -20,10 +21,10 @@ "format": "uri", "description": "SDK or endpoint Name.", "meta:enum": { - "sCode": "Adobe Analytics sCode", - "AppMeasurement": "Adobe App Measurement", - "mBox": "Adobe Target mBox", - "VisitorAPI": "Adobe Visitor Service" + "sCode": "Adobe Analytics sCode", + "AppMeasurement": "Adobe App Measurement", + "mBox": "Adobe Target mBox", + "VisitorAPI": "Adobe Visitor Service" } }, "xdm:version": { From 7c36ab71fb84572345b87c7c38b58682f1714d24 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Mon, 9 Apr 2018 11:27:58 +0000 Subject: [PATCH 046/127] [trivial] fix linting errors --- extensions/adobe/experience/implementations.schema.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/extensions/adobe/experience/implementations.schema.json b/extensions/adobe/experience/implementations.schema.json index 33a9c80fad..bd462dbee5 100644 --- a/extensions/adobe/experience/implementations.schema.json +++ b/extensions/adobe/experience/implementations.schema.json @@ -1,9 +1,11 @@ { "$id": "https://ns.adobe.com/xdm-extensions/experience/implementations", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "The Adobe Experience Cloud techncial implementations details for data collection", + "title": + "The Adobe Experience Cloud techncial implementations details for data collection", "type": "object", - "description": "Details the type and version of Adobe Experience Cloud client implementations for data collection. Used for debugging and usage analysis.", + "description": + "Details the type and version of Adobe Experience Cloud client implementations for data collection. Used for debugging and usage analysis.", "properties": { "https://ns.adobe.com/experience/analytics": { "title": "Adobe Analytics AppMeasurement details", From 987e6165329ae9b7682da77679279c20c0bb4e53 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Mon, 9 Apr 2018 11:33:06 +0000 Subject: [PATCH 047/127] Fix failing tests --- schemas/context/implementationdetails.schema.json | 1 - 1 file changed, 1 deletion(-) diff --git a/schemas/context/implementationdetails.schema.json b/schemas/context/implementationdetails.schema.json index 4f28f4d0de..82839bcfa4 100644 --- a/schemas/context/implementationdetails.schema.json +++ b/schemas/context/implementationdetails.schema.json @@ -18,7 +18,6 @@ "xdm:name": { "title": "Name", "type": "string", - "format": "uri", "description": "SDK or endpoint Name.", "meta:enum": { "sCode": "Adobe Analytics sCode", From 34453eb68b4bbd4d823edfa39707bd5f78e67c9d Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 11:30:05 -0400 Subject: [PATCH 048/127] Added license for 2018. Corrected typo. Loosened title/description to better allow for different implementations which may not have Adobe SDKs --- .../experience/implementations.schema.json | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/extensions/adobe/experience/implementations.schema.json b/extensions/adobe/experience/implementations.schema.json index bd462dbee5..dd69719698 100644 --- a/extensions/adobe/experience/implementations.schema.json +++ b/extensions/adobe/experience/implementations.schema.json @@ -1,26 +1,32 @@ { + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], "$id": "https://ns.adobe.com/xdm-extensions/experience/implementations", "$schema": "http://json-schema.org/draft-06/schema#", "title": - "The Adobe Experience Cloud techncial implementations details for data collection", + "The Adobe Experience Cloud technical implementations details for data collection", "type": "object", "description": - "Details the type and version of Adobe Experience Cloud client implementations for data collection. Used for debugging and usage analysis.", + "Details the type and version of client implementations for data collection interacting with Adobe Experience Cloud services. Used for debugging and usage analysis.", "properties": { "https://ns.adobe.com/experience/analytics": { - "title": "Adobe Analytics AppMeasurement details", + "title": "Client Implementation for Adobe Analytics", "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", - "description": "Adobe Analytics AppMeasurement implementation details." + "description": "Client details interacting with Adobe Analytics." }, "https://ns.adobe.com/experience/target": { - "title": "Adobe Target Implementation details", + "title": "Client Implementation for Adobe Target", "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", - "description": "Adobe Target mBox implementation details." + "description": "Client details interacting with Adobe Target." }, "https://ns.adobe.com/experience/idservice": { - "title": "Adobe Visitor Service Implementation details", + "title": "Client Implementation for Adobe Visitor Service", "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", - "description": "Experience Cloud ID Service implementation details." + "description": "Client details interacting with Adobe Experience Cloud ID Service." } } } From 6a16fed4f474fcaafa7d3951f9ae096521467a11 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 11:31:50 -0400 Subject: [PATCH 049/127] Updated date on license Corrected typo Converted enum to use URIs --- schemas/context/implementationdetails.schema.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/schemas/context/implementationdetails.schema.json b/schemas/context/implementationdetails.schema.json index 82839bcfa4..2502272f33 100644 --- a/schemas/context/implementationdetails.schema.json +++ b/schemas/context/implementationdetails.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" @@ -20,16 +20,16 @@ "type": "string", "description": "SDK or endpoint Name.", "meta:enum": { - "sCode": "Adobe Analytics sCode", - "AppMeasurement": "Adobe App Measurement", - "mBox": "Adobe Target mBox", - "VisitorAPI": "Adobe Visitor Service" + "https://ns.adobe.com/experience/analytics/scode": "Adobe Analytics sCode", + "https://ns.adobe.com/experience/analytics/appmeasurement": "Adobe App Measurement", + "https://ns.adobe.com/experience/analytics/mbox": "Adobe Target mBox", + "https://ns.adobe.com/experience/visitorapi": "Adobe Visitor Service" } }, "xdm:version": { "title": "Version", "type": "string", - "description": "The version idenitifier of the API, e.g h.18." + "description": "The version identifier of the API, e.g h.18." } } } From d0043c780d1e6a418c0d88d2c5501ebc829a13c4 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 11:32:40 -0400 Subject: [PATCH 050/127] Updated enum entry to use URI --- schemas/context/implementationdetails.example.1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/implementationdetails.example.1.json b/schemas/context/implementationdetails.example.1.json index 10f05b30d5..33d3d182e7 100644 --- a/schemas/context/implementationdetails.example.1.json +++ b/schemas/context/implementationdetails.example.1.json @@ -1,4 +1,4 @@ { - "xdm:name": "AppMeasurement", + "xdm:name": "https://ns.adobe.com/experience/analytics/appmeasurement", "xdm:version": "2.7.0" } From 16884364246abaaa10ccd4b40686a080d01fa33d Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 11:36:54 -0400 Subject: [PATCH 051/127] Updated enum entries to use URIs --- extensions/adobe/experience/implementation.example.1.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/adobe/experience/implementation.example.1.json b/extensions/adobe/experience/implementation.example.1.json index 2d49e120ab..dc62ff35ee 100644 --- a/extensions/adobe/experience/implementation.example.1.json +++ b/extensions/adobe/experience/implementation.example.1.json @@ -1,10 +1,10 @@ { "https://ns.adobe.com/experience/analytics": { - "xdm:name": "AppMeasurement", + "xdm:name": "https://ns.adobe.com/experience/analytics/appmeasurement", "xdm:version": "2.7.0" }, "https://ns.adobe.com/experience/idservice": { - "xdm:name": "VisitorAPI", + "xdm:name": "https://ns.adobe.com/experience/visitorapi", "xdm:version": "1.4" } } From b33f71186e040499937c581d18d9fca67e282d80 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 11:37:36 -0400 Subject: [PATCH 052/127] JSON Lint fix --- extensions/adobe/experience/implementations.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/adobe/experience/implementations.schema.json b/extensions/adobe/experience/implementations.schema.json index dd69719698..1aa43900fb 100644 --- a/extensions/adobe/experience/implementations.schema.json +++ b/extensions/adobe/experience/implementations.schema.json @@ -26,7 +26,8 @@ "https://ns.adobe.com/experience/idservice": { "title": "Client Implementation for Adobe Visitor Service", "$ref": "https://ns.adobe.com/xdm/context/implementationdetails", - "description": "Client details interacting with Adobe Experience Cloud ID Service." + "description": + "Client details interacting with Adobe Experience Cloud ID Service." } } } From 41f55ae3fa65ccb45a38e4eb717b94364022d1f6 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:07:38 -0400 Subject: [PATCH 053/127] Split referrer out of web page into its own abstract schema. Curated example for new webreferrer schema --- schemas/context/webreferrer.example.1.json | 4 ++ schemas/context/webreferrer.schema.json | 58 ++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 schemas/context/webreferrer.example.1.json create mode 100644 schemas/context/webreferrer.schema.json diff --git a/schemas/context/webreferrer.example.1.json b/schemas/context/webreferrer.example.1.json new file mode 100644 index 0000000000..d00db2cc50 --- /dev/null +++ b/schemas/context/webreferrer.example.1.json @@ -0,0 +1,4 @@ +{ + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" +} diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json new file mode 100644 index 0000000000..4c737fe12c --- /dev/null +++ b/schemas/context/webreferrer.schema.json @@ -0,0 +1,58 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/webreferrer", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web Referrer", + "type": "object", + "description": + "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", + "definitions": { + "webreferrer": { + "properties": { + "xdm:URL": { + "title": "URL", + "type": "string", + "description": "The referrer URL." + }, + "xdm:referrerType": { + "title": "Referrer Type", + "type": "string", + "description": "The referrer type.", + "enum": [ + "internal", + "external", + "search_engine", + "typed_bookmarked", + "email", + "social" + ], + "meta:enum": { + "internal": + "Referral originated from the current domain or site.", + "external": + "Referral originated from a different domain or site that was not a search or social type.", + "searchEngine": + "Search engine referrers are identified when visitors use a search engine to access the site.", + "typedBookmarked": + "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "email": + "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", + "social": "The referrer is identified as a social network." + } + } + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/webreferrer" + } + ], + "meta:status": "experimental" +} From 76f07bed8742df630944eafaee6a729c509599be Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:08:23 -0400 Subject: [PATCH 054/127] Removed referrer Updated license date Corrected type --- schemas/context/webinfo.example.2.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 schemas/context/webinfo.example.2.json diff --git a/schemas/context/webinfo.example.2.json b/schemas/context/webinfo.example.2.json new file mode 100644 index 0000000000..42dd5cad15 --- /dev/null +++ b/schemas/context/webinfo.example.2.json @@ -0,0 +1,19 @@ +{ + "xdm:webPage": { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", + "xdm:isErrorPage": false, + "xdm:isHomePage": true + }, + "xdm:webLink": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/products", + "xdm:referrerType": "internal" + } +} From d910c3904d6928b05b7dc3e130ce5bf842dea410 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:10:32 -0400 Subject: [PATCH 055/127] Used new web referrer schema. Correcte license dates Cleaned up text Cleaned up enumeration naming case Updated examples. Corrected examples to better show the link case in a single page interaction --- schemas/context/webinfo.example.1.json | 13 +++----- schemas/context/webinfo.schema.json | 10 ++++-- schemas/context/weblink.schema.json | 2 +- schemas/context/webpage.example.1.json | 6 +--- schemas/context/webpage.schema.json | 43 ++------------------------ 5 files changed, 16 insertions(+), 58 deletions(-) diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index f78e542277..23af1e61cb 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -5,15 +5,10 @@ "xdm:name": "product home", "xdm:URL": "https://www.example.com/products", "xdm:isErrorPage": false, - "xdm:isHomePage": true, - "xdm:referrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" - } + "xdm:isHomePage": true }, - "xdm:webLink": { - "xdm:type": "other", - "xdm:URL": "https://www.example.com/products/store/?view=1", - "xdm:name": "product store" + "xdm:webReferrer": { + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index 13719ee874..8729e28c59 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" @@ -10,7 +10,7 @@ "title": "Web Information", "type": "object", "description": - "Information about a web interaction recorded via an `ExperienceEvent`, including the web page and/or link where the interaction occurred.", + "Information about a web interaction recorded via an `ExperienceEvent`, including the web page, referrer and/or link related to the interaction.", "definitions": { "webinfo": { "properties": { @@ -25,6 +25,12 @@ "$ref": "https://ns.adobe.com/xdm/context/weblink", "description": "Details about the web link (URL) that corresponds to the web page where the interaction occurred." + }, + "xdm:webReferrer": { + "title": "Web Referrer", + "$ref": "https://ns.adobe.com/xdm/context/webreferrer", + "description": + "The referrer of a web interaction, which is the URL a visitor came from immediately before the current web interaction was recorded." } } } diff --git a/schemas/context/weblink.schema.json b/schemas/context/weblink.schema.json index 2f53a0a179..3fb8ef3189 100644 --- a/schemas/context/weblink.schema.json +++ b/schemas/context/weblink.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" diff --git a/schemas/context/webpage.example.1.json b/schemas/context/webpage.example.1.json index a33cb822e5..6b4a7c37f8 100644 --- a/schemas/context/webpage.example.1.json +++ b/schemas/context/webpage.example.1.json @@ -4,9 +4,5 @@ "xdm:name": "product home", "xdm:URL": "https://www.example.com", "xdm:isErrorPage": false, - "xdm:isHomePage": true, - "xdm:referrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" - } + "xdm:isHomePage": true } diff --git a/schemas/context/webpage.schema.json b/schemas/context/webpage.schema.json index 966a3b4553..9d6e31db35 100644 --- a/schemas/context/webpage.schema.json +++ b/schemas/context/webpage.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" @@ -31,7 +31,7 @@ "type": "string", "format": "uri", "description": - "The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `WebLink`." + "The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `Web Link`." }, "xdm:server": { "title": "Server", @@ -51,45 +51,6 @@ "type": "boolean", "description": "Flag that indicate if the page is the site home page or not. The definition of home page is determined by the application, but is commonly used to designate a top level landing page or common site entry point. This flag is used to broadly categorize web interactions." - }, - "xdm:referrer": { - "title": "Referrer", - "type": "object", - "description": - "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", - "properties": { - "xdm:URL": { - "title": "URL", - "type": "string", - "description": "The referrer URL." - }, - "xdm:referrerType": { - "title": "Referrer Type", - "type": "string", - "description": "The referrer type.", - "enum": [ - "internal", - "external", - "searchEngine", - "typedBookmarked", - "email", - "social" - ], - "meta:enum": { - "internal": - "Referral originated from the current domain or site.", - "external": - "Referral originated from a different domain or site that was not a search or social type.", - "searchEngine": - "Search engine referrers are identified when visitors use a search engine to access the site.", - "typedBookmarked": - "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", - "email": - "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", - "social": "The referrer is identified as a social network." - } - } - } } } } From 38010ed299e91e332f5bb0212cc4ab39cec934a1 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:16:54 -0400 Subject: [PATCH 056/127] formatting fix --- schemas/context/webreferrer.schema.json | 47 +++++++++++-------------- 1 file changed, 20 insertions(+), 27 deletions(-) diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json index 4c737fe12c..a0e6be4dcc 100644 --- a/schemas/context/webreferrer.schema.json +++ b/schemas/context/webreferrer.schema.json @@ -9,21 +9,20 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Referrer", "type": "object", - "description": - "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", + "description": "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", "definitions": { "webreferrer": { - "properties": { - "xdm:URL": { - "title": "URL", - "type": "string", - "description": "The referrer URL." - }, - "xdm:referrerType": { - "title": "Referrer Type", - "type": "string", - "description": "The referrer type.", - "enum": [ + "properties": { + "xdm:URL": { + "title": "URL", + "type": "string", + "description": "The referrer URL." + }, + "xdm:referrerType": { + "title": "Referrer Type", + "type": "string", + "description": "The referrer type.", + "enum": [ "internal", "external", "search_engine", @@ -31,23 +30,17 @@ "email", "social" ], - "meta:enum": { - "internal": - "Referral originated from the current domain or site.", - "external": - "Referral originated from a different domain or site that was not a search or social type.", - "searchEngine": - "Search engine referrers are identified when visitors use a search engine to access the site.", - "typedBookmarked": - "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", - "email": - "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", - "social": "The referrer is identified as a social network." - } - } + "meta:enum": { + "internal": "Referral originated from the current domain or site.", + "external": "Referral originated from a different domain or site that was not a search or social type.", + "searchEngine": "Search engine referrers are identified when visitors use a search engine to access the site.", + "typedBookmarked": "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "email": "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", + "social": "The referrer is identified as a social network." } } } + } }, "allOf": [ { From ed6b3501fb6a42ef023c1afc224d7da49a3bd064 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:27:25 -0400 Subject: [PATCH 057/127] updated minor version as per npm test error --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 79804fea62..eb4e11ddfe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdm", - "version": "0.5.5", + "version": "0.5.6", "description": "Experience Data Models", "main": "", "config": { From 779db0f73a8f43f3e9f656b7e03bf5f050c6e746 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:29:53 -0400 Subject: [PATCH 058/127] Updated the config.schemas to 136 as per npm test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index eb4e11ddfe..0c0fb47dc2 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 134 + "schemas": 136 }, "scripts": { "clean": "rm -rf docs/reference", From 4a8f0a83c37a60f873dd559b8982af2dd81bfcaa Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:50:04 -0400 Subject: [PATCH 059/127] Moved referrer into a peer schema of webpage Updated license dates to 2018 Refined examples to better illustrate a single page case vs a cross site case Changes enum or referrer type to snale case Improved wording of several descriptions. --- schemas/context/webinfo.example.1.json | 13 ++----- schemas/context/webinfo.example.2.json | 19 +++++++++ schemas/context/webinfo.schema.json | 10 ++++- schemas/context/weblink.schema.json | 2 +- schemas/context/webpage.example.1.json | 6 +-- schemas/context/webpage.schema.json | 43 +-------------------- schemas/context/webreferrer.schema.json | 51 +++++++++++++++++++++++++ 7 files changed, 86 insertions(+), 58 deletions(-) create mode 100644 schemas/context/webinfo.example.2.json create mode 100644 schemas/context/webreferrer.schema.json diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index f78e542277..23af1e61cb 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -5,15 +5,10 @@ "xdm:name": "product home", "xdm:URL": "https://www.example.com/products", "xdm:isErrorPage": false, - "xdm:isHomePage": true, - "xdm:referrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" - } + "xdm:isHomePage": true }, - "xdm:webLink": { - "xdm:type": "other", - "xdm:URL": "https://www.example.com/products/store/?view=1", - "xdm:name": "product store" + "xdm:webReferrer": { + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } diff --git a/schemas/context/webinfo.example.2.json b/schemas/context/webinfo.example.2.json new file mode 100644 index 0000000000..42dd5cad15 --- /dev/null +++ b/schemas/context/webinfo.example.2.json @@ -0,0 +1,19 @@ +{ + "xdm:webPage": { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", + "xdm:isErrorPage": false, + "xdm:isHomePage": true + }, + "xdm:webLink": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/products", + "xdm:referrerType": "internal" + } +} diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index 13719ee874..8729e28c59 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" @@ -10,7 +10,7 @@ "title": "Web Information", "type": "object", "description": - "Information about a web interaction recorded via an `ExperienceEvent`, including the web page and/or link where the interaction occurred.", + "Information about a web interaction recorded via an `ExperienceEvent`, including the web page, referrer and/or link related to the interaction.", "definitions": { "webinfo": { "properties": { @@ -25,6 +25,12 @@ "$ref": "https://ns.adobe.com/xdm/context/weblink", "description": "Details about the web link (URL) that corresponds to the web page where the interaction occurred." + }, + "xdm:webReferrer": { + "title": "Web Referrer", + "$ref": "https://ns.adobe.com/xdm/context/webreferrer", + "description": + "The referrer of a web interaction, which is the URL a visitor came from immediately before the current web interaction was recorded." } } } diff --git a/schemas/context/weblink.schema.json b/schemas/context/weblink.schema.json index 2f53a0a179..3fb8ef3189 100644 --- a/schemas/context/weblink.schema.json +++ b/schemas/context/weblink.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" diff --git a/schemas/context/webpage.example.1.json b/schemas/context/webpage.example.1.json index a33cb822e5..6b4a7c37f8 100644 --- a/schemas/context/webpage.example.1.json +++ b/schemas/context/webpage.example.1.json @@ -4,9 +4,5 @@ "xdm:name": "product home", "xdm:URL": "https://www.example.com", "xdm:isErrorPage": false, - "xdm:isHomePage": true, - "xdm:referrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" - } + "xdm:isHomePage": true } diff --git a/schemas/context/webpage.schema.json b/schemas/context/webpage.schema.json index 966a3b4553..9d6e31db35 100644 --- a/schemas/context/webpage.schema.json +++ b/schemas/context/webpage.schema.json @@ -1,6 +1,6 @@ { "meta:license": [ - "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" @@ -31,7 +31,7 @@ "type": "string", "format": "uri", "description": - "The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `WebLink`." + "The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `Web Link`." }, "xdm:server": { "title": "Server", @@ -51,45 +51,6 @@ "type": "boolean", "description": "Flag that indicate if the page is the site home page or not. The definition of home page is determined by the application, but is commonly used to designate a top level landing page or common site entry point. This flag is used to broadly categorize web interactions." - }, - "xdm:referrer": { - "title": "Referrer", - "type": "object", - "description": - "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", - "properties": { - "xdm:URL": { - "title": "URL", - "type": "string", - "description": "The referrer URL." - }, - "xdm:referrerType": { - "title": "Referrer Type", - "type": "string", - "description": "The referrer type.", - "enum": [ - "internal", - "external", - "searchEngine", - "typedBookmarked", - "email", - "social" - ], - "meta:enum": { - "internal": - "Referral originated from the current domain or site.", - "external": - "Referral originated from a different domain or site that was not a search or social type.", - "searchEngine": - "Search engine referrers are identified when visitors use a search engine to access the site.", - "typedBookmarked": - "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", - "email": - "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", - "social": "The referrer is identified as a social network." - } - } - } } } } diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json new file mode 100644 index 0000000000..a0e6be4dcc --- /dev/null +++ b/schemas/context/webreferrer.schema.json @@ -0,0 +1,51 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/webreferrer", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web Referrer", + "type": "object", + "description": "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", + "definitions": { + "webreferrer": { + "properties": { + "xdm:URL": { + "title": "URL", + "type": "string", + "description": "The referrer URL." + }, + "xdm:referrerType": { + "title": "Referrer Type", + "type": "string", + "description": "The referrer type.", + "enum": [ + "internal", + "external", + "search_engine", + "typed_bookmarked", + "email", + "social" + ], + "meta:enum": { + "internal": "Referral originated from the current domain or site.", + "external": "Referral originated from a different domain or site that was not a search or social type.", + "searchEngine": "Search engine referrers are identified when visitors use a search engine to access the site.", + "typedBookmarked": "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "email": "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", + "social": "The referrer is identified as a social network." + } + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/webreferrer" + } + ], + "meta:status": "experimental" +} From 3a15a31cbc8a6fc2504949a6046d80e8cee18d45 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 14:59:30 -0400 Subject: [PATCH 060/127] Added support for unknown/noJavascript Added legacy support for usenet --- schemas/context/webreferrer.schema.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json index a0e6be4dcc..c00d4745b3 100644 --- a/schemas/context/webreferrer.schema.json +++ b/schemas/context/webreferrer.schema.json @@ -28,15 +28,19 @@ "search_engine", "typed_bookmarked", "email", - "social" + "social", + "unknown", + "usenet" ], "meta:enum": { "internal": "Referral originated from the current domain or site.", "external": "Referral originated from a different domain or site that was not a search or social type.", - "searchEngine": "Search engine referrers are identified when visitors use a search engine to access the site.", - "typedBookmarked": "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "search_engine": "Search engine referrers are identified when visitors use a search engine to access the site.", + "typed_bookmarked": "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", "email": "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", - "social": "The referrer is identified as a social network." + "social": "The referrer is identified as a social network.", + "unknown": "The referrer is unidentifiable (unknown). `No JavaScript` could be the cause.", + "usenet": "The URL of a referrer started with news://. As such, the referrer link was posted on a Usenet newsgroup rather than a web page." } } } From cc7d220552293876ac9a2d1bab3edf1e235c5c98 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 15:02:21 -0400 Subject: [PATCH 061/127] added support for unknown/noJs Added legacy support for Usenet --- schemas/context/webreferrer.schema.json | 39 +++++++++++++++---------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json index c00d4745b3..5f674a40ef 100644 --- a/schemas/context/webreferrer.schema.json +++ b/schemas/context/webreferrer.schema.json @@ -9,7 +9,8 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Referrer", "type": "object", - "description": "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", + "description": + "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", "definitions": { "webreferrer": { "properties": { @@ -23,24 +24,30 @@ "type": "string", "description": "The referrer type.", "enum": [ - "internal", - "external", - "search_engine", - "typed_bookmarked", - "email", - "social", - "unknown", - "usenet" - ], + "internal", + "external", + "search_engine", + "typed_bookmarked", + "email", + "social", + "unknown", + "usenet" + ], "meta:enum": { "internal": "Referral originated from the current domain or site.", - "external": "Referral originated from a different domain or site that was not a search or social type.", - "search_engine": "Search engine referrers are identified when visitors use a search engine to access the site.", - "typed_bookmarked": "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", - "email": "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", + "external": + "Referral originated from a different domain or site that was not a search or social type.", + "search_engine": + "Search engine referrers are identified when visitors use a search engine to access the site.", + "typed_bookmarked": + "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "email": + "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", "social": "The referrer is identified as a social network.", - "unknown": "The referrer is unidentifiable (unknown). `No JavaScript` could be the cause.", - "usenet": "The URL of a referrer started with news://. As such, the referrer link was posted on a Usenet newsgroup rather than a web page." + "unknown": + "The referrer is unidentifiable (unknown). `No JavaScript` could be the cause.", + "usenet": + "The URL of a referrer started with news://. As such, the referrer link was posted on a Usenet newsgroup rather than a web page." } } } From 8625012099f431fd05f831f01d9aec67c16b41a5 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 15:03:39 -0400 Subject: [PATCH 062/127] Added example for webreferrer --- schemas/context/webreferrer.example.1.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 schemas/context/webreferrer.example.1.json diff --git a/schemas/context/webreferrer.example.1.json b/schemas/context/webreferrer.example.1.json new file mode 100644 index 0000000000..d00db2cc50 --- /dev/null +++ b/schemas/context/webreferrer.example.1.json @@ -0,0 +1,4 @@ +{ + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" +} From 5fff9d42b681b88926240e8208462a33ac365be9 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Mon, 9 Apr 2018 15:04:30 -0400 Subject: [PATCH 063/127] Updated package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7997ae12b4..ef91cc6c7f 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "xdm", - "version": "0.5.4", + "version": "0.5.5", "description": "Experience Data Models", "main": "", "config": { "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 131 + "schemas": 133 }, "scripts": { "clean": "rm -rf docs/reference", From ebca7ac41da3d8a8e4a79a90a49162150e1f3f54 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Mon, 9 Apr 2018 16:37:23 -0400 Subject: [PATCH 064/127] Simplified Type To conform to XDM standards --- schemas/context/webreferrer.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json index 5f674a40ef..bc8f85f669 100644 --- a/schemas/context/webreferrer.schema.json +++ b/schemas/context/webreferrer.schema.json @@ -19,8 +19,8 @@ "type": "string", "description": "The referrer URL." }, - "xdm:referrerType": { - "title": "Referrer Type", + "xdm:type": { + "title": "Type", "type": "string", "description": "The referrer type.", "enum": [ From 5982bffb478de7d33f1684d79f430b2ef68b9456 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Mon, 9 Apr 2018 16:38:12 -0400 Subject: [PATCH 065/127] Changed to xdm:type from referrerType --- schemas/context/webreferrer.example.1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/webreferrer.example.1.json b/schemas/context/webreferrer.example.1.json index d00db2cc50..a3da15877e 100644 --- a/schemas/context/webreferrer.example.1.json +++ b/schemas/context/webreferrer.example.1.json @@ -1,4 +1,4 @@ { "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:type": "external" } From 7430cb81a82c2fd8057d2f6bbc92239b692aa04a Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Mon, 9 Apr 2018 16:38:44 -0400 Subject: [PATCH 066/127] Changed to xdm:type from referrerType --- schemas/context/webinfo.example.1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index 23af1e61cb..7b4149e87b 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -9,6 +9,6 @@ }, "xdm:webReferrer": { "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:type": "external" } } From bc7d2328d1f06d5830abb48933a9d691adb4fcd3 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Mon, 9 Apr 2018 16:39:18 -0400 Subject: [PATCH 067/127] Changed to xdm:type from referrerType --- schemas/context/webinfo.example.2.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/webinfo.example.2.json b/schemas/context/webinfo.example.2.json index 42dd5cad15..322b581855 100644 --- a/schemas/context/webinfo.example.2.json +++ b/schemas/context/webinfo.example.2.json @@ -14,6 +14,6 @@ }, "xdm:webReferrer": { "xdm:URL": "https://www.example.com/products", - "xdm:referrerType": "internal" + "xdm:type": "internal" } } From 1cfc6059ac52dab89dbac02802cbdaaa3f7b9b8d Mon Sep 17 00:00:00 2001 From: jwen Date: Mon, 9 Apr 2018 16:58:25 -0700 Subject: [PATCH 068/127] Split the experienceevent to smaller schemas --- .../analytics/customdimensions.schema.json | 2687 ++++++ .../analytics/customevents.schema.json | 5022 +++++++++++ .../analytics/experienceevent.schema.json | 7676 +---------------- 3 files changed, 7719 insertions(+), 7666 deletions(-) create mode 100644 extensions/adobe/experience/analytics/customdimensions.schema.json create mode 100644 extensions/adobe/experience/analytics/customevents.schema.json diff --git a/extensions/adobe/experience/analytics/customdimensions.schema.json b/extensions/adobe/experience/analytics/customdimensions.schema.json new file mode 100644 index 0000000000..70a739f3e1 --- /dev/null +++ b/extensions/adobe/experience/analytics/customdimensions.schema.json @@ -0,0 +1,2687 @@ +{ + "meta:license": [ + "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/experience/analytics/customdimensions", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Adobe Analytics Cloud Experience Event Custom Dimensions", + "type": "object", + "description": "Adobe Analytics Cloud Experience Event Custom Dimensions.", + "definitions": { + "customdimensions": { + "properties": { + "https://ns.adobe.com/experience/analytics/evars/evar1": { + "title": "eVar1", + "type": "string", + "description": "Custom conversion variable 1." + }, + "https://ns.adobe.com/experience/analytics/evars/evar2": { + "title": "eVar2", + "type": "string", + "description": "Custom conversion variable 2." + }, + "https://ns.adobe.com/experience/analytics/evars/evar3": { + "title": "eVar3", + "type": "string", + "description": "Custom conversion variable 3." + }, + "https://ns.adobe.com/experience/analytics/evars/evar4": { + "title": "eVar4", + "type": "string", + "description": "Custom conversion variable 4." + }, + "https://ns.adobe.com/experience/analytics/evars/evar5": { + "title": "eVar5", + "type": "string", + "description": "Custom conversion variable 5." + }, + "https://ns.adobe.com/experience/analytics/evars/evar6": { + "title": "eVar6", + "type": "string", + "description": "Custom conversion variable 6." + }, + "https://ns.adobe.com/experience/analytics/evars/evar7": { + "title": "eVar7", + "type": "string", + "description": "Custom conversion variable 7." + }, + "https://ns.adobe.com/experience/analytics/evars/evar8": { + "title": "eVar8", + "type": "string", + "description": "Custom conversion variable 8." + }, + "https://ns.adobe.com/experience/analytics/evars/evar9": { + "title": "eVar9", + "type": "string", + "description": "Custom conversion variable 9." + }, + "https://ns.adobe.com/experience/analytics/evars/evar10": { + "title": "eVar10", + "type": "string", + "description": "Custom conversion variable 10." + }, + "https://ns.adobe.com/experience/analytics/evars/evar11": { + "title": "eVar11", + "type": "string", + "description": "Custom conversion variable 11." + }, + "https://ns.adobe.com/experience/analytics/evars/evar12": { + "title": "eVar12", + "type": "string", + "description": "Custom conversion variable 12." + }, + "https://ns.adobe.com/experience/analytics/evars/evar13": { + "title": "eVar13", + "type": "string", + "description": "Custom conversion variable 13." + }, + "https://ns.adobe.com/experience/analytics/evars/evar14": { + "title": "eVar14", + "type": "string", + "description": "Custom conversion variable 14." + }, + "https://ns.adobe.com/experience/analytics/evars/evar15": { + "title": "eVar15", + "type": "string", + "description": "Custom conversion variable 15." + }, + "https://ns.adobe.com/experience/analytics/evars/evar16": { + "title": "eVar16", + "type": "string", + "description": "Custom conversion variable 16." + }, + "https://ns.adobe.com/experience/analytics/evars/evar17": { + "title": "eVar17", + "type": "string", + "description": "Custom conversion variable 17." + }, + "https://ns.adobe.com/experience/analytics/evars/evar18": { + "title": "eVar18", + "type": "string", + "description": "Custom conversion variable 18." + }, + "https://ns.adobe.com/experience/analytics/evars/evar19": { + "title": "eVar19", + "type": "string", + "description": "Custom conversion variable 19." + }, + "https://ns.adobe.com/experience/analytics/evars/evar20": { + "title": "eVar20", + "type": "string", + "description": "Custom conversion variable 20." + }, + "https://ns.adobe.com/experience/analytics/evars/evar21": { + "title": "eVar21", + "type": "string", + "description": "Custom conversion variable 21." + }, + "https://ns.adobe.com/experience/analytics/evars/evar22": { + "title": "eVar22", + "type": "string", + "description": "Custom conversion variable 22." + }, + "https://ns.adobe.com/experience/analytics/evars/evar23": { + "title": "eVar23", + "type": "string", + "description": "Custom conversion variable 23." + }, + "https://ns.adobe.com/experience/analytics/evars/evar24": { + "title": "eVar24", + "type": "string", + "description": "Custom conversion variable 24." + }, + "https://ns.adobe.com/experience/analytics/evars/evar25": { + "title": "eVar25", + "type": "string", + "description": "Custom conversion variable 25." + }, + "https://ns.adobe.com/experience/analytics/evars/evar26": { + "title": "eVar26", + "type": "string", + "description": "Custom conversion variable 26." + }, + "https://ns.adobe.com/experience/analytics/evars/evar27": { + "title": "eVar27", + "type": "string", + "description": "Custom conversion variable 27." + }, + "https://ns.adobe.com/experience/analytics/evars/evar28": { + "title": "eVar28", + "type": "string", + "description": "Custom conversion variable 28." + }, + "https://ns.adobe.com/experience/analytics/evars/evar29": { + "title": "eVar29", + "type": "string", + "description": "Custom conversion variable 29." + }, + "https://ns.adobe.com/experience/analytics/evars/evar30": { + "title": "eVar30", + "type": "string", + "description": "Custom conversion variable 30." + }, + "https://ns.adobe.com/experience/analytics/evars/evar31": { + "title": "eVar31", + "type": "string", + "description": "Custom conversion variable 31." + }, + "https://ns.adobe.com/experience/analytics/evars/evar32": { + "title": "eVar32", + "type": "string", + "description": "Custom conversion variable 32." + }, + "https://ns.adobe.com/experience/analytics/evars/evar33": { + "title": "eVar33", + "type": "string", + "description": "Custom conversion variable 33." + }, + "https://ns.adobe.com/experience/analytics/evars/evar34": { + "title": "eVar34", + "type": "string", + "description": "Custom conversion variable 34." + }, + "https://ns.adobe.com/experience/analytics/evars/evar35": { + "title": "eVar35", + "type": "string", + "description": "Custom conversion variable 35." + }, + "https://ns.adobe.com/experience/analytics/evars/evar36": { + "title": "eVar36", + "type": "string", + "description": "Custom conversion variable 36." + }, + "https://ns.adobe.com/experience/analytics/evars/evar37": { + "title": "eVar37", + "type": "string", + "description": "Custom conversion variable 37." + }, + "https://ns.adobe.com/experience/analytics/evars/evar38": { + "title": "eVar38", + "type": "string", + "description": "Custom conversion variable 38." + }, + "https://ns.adobe.com/experience/analytics/evars/evar39": { + "title": "eVar39", + "type": "string", + "description": "Custom conversion variable 39." + }, + "https://ns.adobe.com/experience/analytics/evars/evar40": { + "title": "eVar40", + "type": "string", + "description": "Custom conversion variable 40." + }, + "https://ns.adobe.com/experience/analytics/evars/evar41": { + "title": "eVar41", + "type": "string", + "description": "Custom conversion variable 41." + }, + "https://ns.adobe.com/experience/analytics/evars/evar42": { + "title": "eVar42", + "type": "string", + "description": "Custom conversion variable 42." + }, + "https://ns.adobe.com/experience/analytics/evars/evar43": { + "title": "eVar43", + "type": "string", + "description": "Custom conversion variable 43." + }, + "https://ns.adobe.com/experience/analytics/evars/evar44": { + "title": "eVar44", + "type": "string", + "description": "Custom conversion variable 44." + }, + "https://ns.adobe.com/experience/analytics/evars/evar45": { + "title": "eVar45", + "type": "string", + "description": "Custom conversion variable 45." + }, + "https://ns.adobe.com/experience/analytics/evars/evar46": { + "title": "eVar46", + "type": "string", + "description": "Custom conversion variable 46." + }, + "https://ns.adobe.com/experience/analytics/evars/evar47": { + "title": "eVar47", + "type": "string", + "description": "Custom conversion variable 47." + }, + "https://ns.adobe.com/experience/analytics/evars/evar48": { + "title": "eVar48", + "type": "string", + "description": "Custom conversion variable 48." + }, + "https://ns.adobe.com/experience/analytics/evars/evar49": { + "title": "eVar49", + "type": "string", + "description": "Custom conversion variable 49." + }, + "https://ns.adobe.com/experience/analytics/evars/evar50": { + "title": "eVar50", + "type": "string", + "description": "Custom conversion variable 50." + }, + "https://ns.adobe.com/experience/analytics/evars/evar51": { + "title": "eVar51", + "type": "string", + "description": "Custom conversion variable 51." + }, + "https://ns.adobe.com/experience/analytics/evars/evar52": { + "title": "eVar52", + "type": "string", + "description": "Custom conversion variable 52." + }, + "https://ns.adobe.com/experience/analytics/evars/evar53": { + "title": "eVar53", + "type": "string", + "description": "Custom conversion variable 53." + }, + "https://ns.adobe.com/experience/analytics/evars/evar54": { + "title": "eVar54", + "type": "string", + "description": "Custom conversion variable 54." + }, + "https://ns.adobe.com/experience/analytics/evars/evar55": { + "title": "eVar55", + "type": "string", + "description": "Custom conversion variable 55." + }, + "https://ns.adobe.com/experience/analytics/evars/evar56": { + "title": "eVar56", + "type": "string", + "description": "Custom conversion variable 56." + }, + "https://ns.adobe.com/experience/analytics/evars/evar57": { + "title": "eVar57", + "type": "string", + "description": "Custom conversion variable 57." + }, + "https://ns.adobe.com/experience/analytics/evars/evar58": { + "title": "eVar58", + "type": "string", + "description": "Custom conversion variable 58." + }, + "https://ns.adobe.com/experience/analytics/evars/evar59": { + "title": "eVar59", + "type": "string", + "description": "Custom conversion variable 59." + }, + "https://ns.adobe.com/experience/analytics/evars/evar60": { + "title": "eVar60", + "type": "string", + "description": "Custom conversion variable 60." + }, + "https://ns.adobe.com/experience/analytics/evars/evar61": { + "title": "eVar61", + "type": "string", + "description": "Custom conversion variable 61." + }, + "https://ns.adobe.com/experience/analytics/evars/evar62": { + "title": "eVar62", + "type": "string", + "description": "Custom conversion variable 62." + }, + "https://ns.adobe.com/experience/analytics/evars/evar63": { + "title": "eVar63", + "type": "string", + "description": "Custom conversion variable 63." + }, + "https://ns.adobe.com/experience/analytics/evars/evar64": { + "title": "eVar64", + "type": "string", + "description": "Custom conversion variable 64." + }, + "https://ns.adobe.com/experience/analytics/evars/evar65": { + "title": "eVar65", + "type": "string", + "description": "Custom conversion variable 65." + }, + "https://ns.adobe.com/experience/analytics/evars/evar66": { + "title": "eVar66", + "type": "string", + "description": "Custom conversion variable 66." + }, + "https://ns.adobe.com/experience/analytics/evars/evar67": { + "title": "eVar67", + "type": "string", + "description": "Custom conversion variable 67." + }, + "https://ns.adobe.com/experience/analytics/evars/evar68": { + "title": "eVar68", + "type": "string", + "description": "Custom conversion variable 68." + }, + "https://ns.adobe.com/experience/analytics/evars/evar69": { + "title": "eVar69", + "type": "string", + "description": "Custom conversion variable 69." + }, + "https://ns.adobe.com/experience/analytics/evars/evar70": { + "title": "eVar70", + "type": "string", + "description": "Custom conversion variable 70." + }, + "https://ns.adobe.com/experience/analytics/evars/evar71": { + "title": "eVar71", + "type": "string", + "description": "Custom conversion variable 71." + }, + "https://ns.adobe.com/experience/analytics/evars/evar72": { + "title": "eVar72", + "type": "string", + "description": "Custom conversion variable 72." + }, + "https://ns.adobe.com/experience/analytics/evars/evar73": { + "title": "eVar73", + "type": "string", + "description": "Custom conversion variable 73." + }, + "https://ns.adobe.com/experience/analytics/evars/evar74": { + "title": "eVar74", + "type": "string", + "description": "Custom conversion variable 74." + }, + "https://ns.adobe.com/experience/analytics/evars/evar75": { + "title": "eVar75", + "type": "string", + "description": "Custom conversion variable 75." + }, + "https://ns.adobe.com/experience/analytics/evars/evar76": { + "title": "eVar76", + "type": "string", + "description": "Custom conversion variable 76." + }, + "https://ns.adobe.com/experience/analytics/evars/evar77": { + "title": "eVar77", + "type": "string", + "description": "Custom conversion variable 77." + }, + "https://ns.adobe.com/experience/analytics/evars/evar78": { + "title": "eVar78", + "type": "string", + "description": "Custom conversion variable 78." + }, + "https://ns.adobe.com/experience/analytics/evars/evar79": { + "title": "eVar79", + "type": "string", + "description": "Custom conversion variable 79." + }, + "https://ns.adobe.com/experience/analytics/evars/evar80": { + "title": "eVar80", + "type": "string", + "description": "Custom conversion variable 80." + }, + "https://ns.adobe.com/experience/analytics/evars/evar81": { + "title": "eVar81", + "type": "string", + "description": "Custom conversion variable 81." + }, + "https://ns.adobe.com/experience/analytics/evars/evar82": { + "title": "eVar82", + "type": "string", + "description": "Custom conversion variable 82." + }, + "https://ns.adobe.com/experience/analytics/evars/evar83": { + "title": "eVar83", + "type": "string", + "description": "Custom conversion variable 83." + }, + "https://ns.adobe.com/experience/analytics/evars/evar84": { + "title": "eVar84", + "type": "string", + "description": "Custom conversion variable 84." + }, + "https://ns.adobe.com/experience/analytics/evars/evar85": { + "title": "eVar85", + "type": "string", + "description": "Custom conversion variable 85." + }, + "https://ns.adobe.com/experience/analytics/evars/evar86": { + "title": "eVar86", + "type": "string", + "description": "Custom conversion variable 86." + }, + "https://ns.adobe.com/experience/analytics/evars/evar87": { + "title": "eVar87", + "type": "string", + "description": "Custom conversion variable 87." + }, + "https://ns.adobe.com/experience/analytics/evars/evar88": { + "title": "eVar88", + "type": "string", + "description": "Custom conversion variable 88." + }, + "https://ns.adobe.com/experience/analytics/evars/evar89": { + "title": "eVar89", + "type": "string", + "description": "Custom conversion variable 89." + }, + "https://ns.adobe.com/experience/analytics/evars/evar90": { + "title": "eVar90", + "type": "string", + "description": "Custom conversion variable 90." + }, + "https://ns.adobe.com/experience/analytics/evars/evar91": { + "title": "eVar91", + "type": "string", + "description": "Custom conversion variable 91." + }, + "https://ns.adobe.com/experience/analytics/evars/evar92": { + "title": "eVar92", + "type": "string", + "description": "Custom conversion variable 92." + }, + "https://ns.adobe.com/experience/analytics/evars/evar93": { + "title": "eVar93", + "type": "string", + "description": "Custom conversion variable 93." + }, + "https://ns.adobe.com/experience/analytics/evars/evar94": { + "title": "eVar94", + "type": "string", + "description": "Custom conversion variable 94." + }, + "https://ns.adobe.com/experience/analytics/evars/evar95": { + "title": "eVar95", + "type": "string", + "description": "Custom conversion variable 95." + }, + "https://ns.adobe.com/experience/analytics/evars/evar96": { + "title": "eVar96", + "type": "string", + "description": "Custom conversion variable 96." + }, + "https://ns.adobe.com/experience/analytics/evars/evar97": { + "title": "eVar97", + "type": "string", + "description": "Custom conversion variable 97." + }, + "https://ns.adobe.com/experience/analytics/evars/evar98": { + "title": "eVar98", + "type": "string", + "description": "Custom conversion variable 98." + }, + "https://ns.adobe.com/experience/analytics/evars/evar99": { + "title": "eVar99", + "type": "string", + "description": "Custom conversion variable 99." + }, + "https://ns.adobe.com/experience/analytics/evars/evar100": { + "title": "eVar100", + "type": "string", + "description": "Custom conversion variable 100." + }, + "https://ns.adobe.com/experience/analytics/evars/evar101": { + "title": "eVar101", + "type": "string", + "description": "Custom conversion variable 101." + }, + "https://ns.adobe.com/experience/analytics/evars/evar102": { + "title": "eVar102", + "type": "string", + "description": "Custom conversion variable 102." + }, + "https://ns.adobe.com/experience/analytics/evars/evar103": { + "title": "eVar103", + "type": "string", + "description": "Custom conversion variable 103." + }, + "https://ns.adobe.com/experience/analytics/evars/evar104": { + "title": "eVar104", + "type": "string", + "description": "Custom conversion variable 104." + }, + "https://ns.adobe.com/experience/analytics/evars/evar105": { + "title": "eVar105", + "type": "string", + "description": "Custom conversion variable 105." + }, + "https://ns.adobe.com/experience/analytics/evars/evar106": { + "title": "eVar106", + "type": "string", + "description": "Custom conversion variable 106." + }, + "https://ns.adobe.com/experience/analytics/evars/evar107": { + "title": "eVar107", + "type": "string", + "description": "Custom conversion variable 107." + }, + "https://ns.adobe.com/experience/analytics/evars/evar108": { + "title": "eVar108", + "type": "string", + "description": "Custom conversion variable 108." + }, + "https://ns.adobe.com/experience/analytics/evars/evar109": { + "title": "eVar109", + "type": "string", + "description": "Custom conversion variable 109." + }, + "https://ns.adobe.com/experience/analytics/evars/evar110": { + "title": "eVar110", + "type": "string", + "description": "Custom conversion variable 110." + }, + "https://ns.adobe.com/experience/analytics/evars/evar111": { + "title": "eVar111", + "type": "string", + "description": "Custom conversion variable 111." + }, + "https://ns.adobe.com/experience/analytics/evars/evar112": { + "title": "eVar112", + "type": "string", + "description": "Custom conversion variable 112." + }, + "https://ns.adobe.com/experience/analytics/evars/evar113": { + "title": "eVar113", + "type": "string", + "description": "Custom conversion variable 113." + }, + "https://ns.adobe.com/experience/analytics/evars/evar114": { + "title": "eVar114", + "type": "string", + "description": "Custom conversion variable 114." + }, + "https://ns.adobe.com/experience/analytics/evars/evar115": { + "title": "eVar115", + "type": "string", + "description": "Custom conversion variable 115." + }, + "https://ns.adobe.com/experience/analytics/evars/evar116": { + "title": "eVar116", + "type": "string", + "description": "Custom conversion variable 116." + }, + "https://ns.adobe.com/experience/analytics/evars/evar117": { + "title": "eVar117", + "type": "string", + "description": "Custom conversion variable 117." + }, + "https://ns.adobe.com/experience/analytics/evars/evar118": { + "title": "eVar118", + "type": "string", + "description": "Custom conversion variable 118." + }, + "https://ns.adobe.com/experience/analytics/evars/evar119": { + "title": "eVar119", + "type": "string", + "description": "Custom conversion variable 119." + }, + "https://ns.adobe.com/experience/analytics/evars/evar120": { + "title": "eVar120", + "type": "string", + "description": "Custom conversion variable 120." + }, + "https://ns.adobe.com/experience/analytics/evars/evar121": { + "title": "eVar121", + "type": "string", + "description": "Custom conversion variable 121." + }, + "https://ns.adobe.com/experience/analytics/evars/evar122": { + "title": "eVar122", + "type": "string", + "description": "Custom conversion variable 122." + }, + "https://ns.adobe.com/experience/analytics/evars/evar123": { + "title": "eVar123", + "type": "string", + "description": "Custom conversion variable 123." + }, + "https://ns.adobe.com/experience/analytics/evars/evar124": { + "title": "eVar124", + "type": "string", + "description": "Custom conversion variable 124." + }, + "https://ns.adobe.com/experience/analytics/evars/evar125": { + "title": "eVar125", + "type": "string", + "description": "Custom conversion variable 125." + }, + "https://ns.adobe.com/experience/analytics/evars/evar126": { + "title": "eVar126", + "type": "string", + "description": "Custom conversion variable 126." + }, + "https://ns.adobe.com/experience/analytics/evars/evar127": { + "title": "eVar127", + "type": "string", + "description": "Custom conversion variable 127." + }, + "https://ns.adobe.com/experience/analytics/evars/evar128": { + "title": "eVar128", + "type": "string", + "description": "Custom conversion variable 128." + }, + "https://ns.adobe.com/experience/analytics/evars/evar129": { + "title": "eVar129", + "type": "string", + "description": "Custom conversion variable 129." + }, + "https://ns.adobe.com/experience/analytics/evars/evar130": { + "title": "eVar130", + "type": "string", + "description": "Custom conversion variable 130." + }, + "https://ns.adobe.com/experience/analytics/evars/evar131": { + "title": "eVar131", + "type": "string", + "description": "Custom conversion variable 131." + }, + "https://ns.adobe.com/experience/analytics/evars/evar132": { + "title": "eVar132", + "type": "string", + "description": "Custom conversion variable 132." + }, + "https://ns.adobe.com/experience/analytics/evars/evar133": { + "title": "eVar133", + "type": "string", + "description": "Custom conversion variable 133." + }, + "https://ns.adobe.com/experience/analytics/evars/evar134": { + "title": "eVar134", + "type": "string", + "description": "Custom conversion variable 134." + }, + "https://ns.adobe.com/experience/analytics/evars/evar135": { + "title": "eVar135", + "type": "string", + "description": "Custom conversion variable 135." + }, + "https://ns.adobe.com/experience/analytics/evars/evar136": { + "title": "eVar136", + "type": "string", + "description": "Custom conversion variable 136." + }, + "https://ns.adobe.com/experience/analytics/evars/evar137": { + "title": "eVar137", + "type": "string", + "description": "Custom conversion variable 137." + }, + "https://ns.adobe.com/experience/analytics/evars/evar138": { + "title": "eVar138", + "type": "string", + "description": "Custom conversion variable 138." + }, + "https://ns.adobe.com/experience/analytics/evars/evar139": { + "title": "eVar139", + "type": "string", + "description": "Custom conversion variable 139." + }, + "https://ns.adobe.com/experience/analytics/evars/evar140": { + "title": "eVar140", + "type": "string", + "description": "Custom conversion variable 140." + }, + "https://ns.adobe.com/experience/analytics/evars/evar141": { + "title": "eVar141", + "type": "string", + "description": "Custom conversion variable 141." + }, + "https://ns.adobe.com/experience/analytics/evars/evar142": { + "title": "eVar142", + "type": "string", + "description": "Custom conversion variable 142." + }, + "https://ns.adobe.com/experience/analytics/evars/evar143": { + "title": "eVar143", + "type": "string", + "description": "Custom conversion variable 143." + }, + "https://ns.adobe.com/experience/analytics/evars/evar144": { + "title": "eVar144", + "type": "string", + "description": "Custom conversion variable 144." + }, + "https://ns.adobe.com/experience/analytics/evars/evar145": { + "title": "eVar145", + "type": "string", + "description": "Custom conversion variable 145." + }, + "https://ns.adobe.com/experience/analytics/evars/evar146": { + "title": "eVar146", + "type": "string", + "description": "Custom conversion variable 146." + }, + "https://ns.adobe.com/experience/analytics/evars/evar147": { + "title": "eVar147", + "type": "string", + "description": "Custom conversion variable 147." + }, + "https://ns.adobe.com/experience/analytics/evars/evar148": { + "title": "eVar148", + "type": "string", + "description": "Custom conversion variable 148." + }, + "https://ns.adobe.com/experience/analytics/evars/evar149": { + "title": "eVar149", + "type": "string", + "description": "Custom conversion variable 149." + }, + "https://ns.adobe.com/experience/analytics/evars/evar150": { + "title": "eVar150", + "type": "string", + "description": "Custom conversion variable 150." + }, + "https://ns.adobe.com/experience/analytics/evars/evar151": { + "title": "eVar151", + "type": "string", + "description": "Custom conversion variable 151." + }, + "https://ns.adobe.com/experience/analytics/evars/evar152": { + "title": "eVar152", + "type": "string", + "description": "Custom conversion variable 152." + }, + "https://ns.adobe.com/experience/analytics/evars/evar153": { + "title": "eVar153", + "type": "string", + "description": "Custom conversion variable 153." + }, + "https://ns.adobe.com/experience/analytics/evars/evar154": { + "title": "eVar154", + "type": "string", + "description": "Custom conversion variable 154." + }, + "https://ns.adobe.com/experience/analytics/evars/evar155": { + "title": "eVar155", + "type": "string", + "description": "Custom conversion variable 155." + }, + "https://ns.adobe.com/experience/analytics/evars/evar156": { + "title": "eVar156", + "type": "string", + "description": "Custom conversion variable 156." + }, + "https://ns.adobe.com/experience/analytics/evars/evar157": { + "title": "eVar157", + "type": "string", + "description": "Custom conversion variable 157." + }, + "https://ns.adobe.com/experience/analytics/evars/evar158": { + "title": "eVar158", + "type": "string", + "description": "Custom conversion variable 158." + }, + "https://ns.adobe.com/experience/analytics/evars/evar159": { + "title": "eVar159", + "type": "string", + "description": "Custom conversion variable 159." + }, + "https://ns.adobe.com/experience/analytics/evars/evar160": { + "title": "eVar160", + "type": "string", + "description": "Custom conversion variable 160." + }, + "https://ns.adobe.com/experience/analytics/evars/evar161": { + "title": "eVar161", + "type": "string", + "description": "Custom conversion variable 161." + }, + "https://ns.adobe.com/experience/analytics/evars/evar162": { + "title": "eVar162", + "type": "string", + "description": "Custom conversion variable 162." + }, + "https://ns.adobe.com/experience/analytics/evars/evar163": { + "title": "eVar163", + "type": "string", + "description": "Custom conversion variable 163." + }, + "https://ns.adobe.com/experience/analytics/evars/evar164": { + "title": "eVar164", + "type": "string", + "description": "Custom conversion variable 164." + }, + "https://ns.adobe.com/experience/analytics/evars/evar165": { + "title": "eVar165", + "type": "string", + "description": "Custom conversion variable 165." + }, + "https://ns.adobe.com/experience/analytics/evars/evar166": { + "title": "eVar166", + "type": "string", + "description": "Custom conversion variable 166." + }, + "https://ns.adobe.com/experience/analytics/evars/evar167": { + "title": "eVar167", + "type": "string", + "description": "Custom conversion variable 167." + }, + "https://ns.adobe.com/experience/analytics/evars/evar168": { + "title": "eVar168", + "type": "string", + "description": "Custom conversion variable 168." + }, + "https://ns.adobe.com/experience/analytics/evars/evar169": { + "title": "eVar169", + "type": "string", + "description": "Custom conversion variable 169." + }, + "https://ns.adobe.com/experience/analytics/evars/evar170": { + "title": "eVar170", + "type": "string", + "description": "Custom conversion variable 170." + }, + "https://ns.adobe.com/experience/analytics/evars/evar171": { + "title": "eVar171", + "type": "string", + "description": "Custom conversion variable 171." + }, + "https://ns.adobe.com/experience/analytics/evars/evar172": { + "title": "eVar172", + "type": "string", + "description": "Custom conversion variable 172." + }, + "https://ns.adobe.com/experience/analytics/evars/evar173": { + "title": "eVar173", + "type": "string", + "description": "Custom conversion variable 173." + }, + "https://ns.adobe.com/experience/analytics/evars/evar174": { + "title": "eVar174", + "type": "string", + "description": "Custom conversion variable 174." + }, + "https://ns.adobe.com/experience/analytics/evars/evar175": { + "title": "eVar175", + "type": "string", + "description": "Custom conversion variable 175." + }, + "https://ns.adobe.com/experience/analytics/evars/evar176": { + "title": "eVar176", + "type": "string", + "description": "Custom conversion variable 176." + }, + "https://ns.adobe.com/experience/analytics/evars/evar177": { + "title": "eVar177", + "type": "string", + "description": "Custom conversion variable 177." + }, + "https://ns.adobe.com/experience/analytics/evars/evar178": { + "title": "eVar178", + "type": "string", + "description": "Custom conversion variable 178." + }, + "https://ns.adobe.com/experience/analytics/evars/evar179": { + "title": "eVar179", + "type": "string", + "description": "Custom conversion variable 179." + }, + "https://ns.adobe.com/experience/analytics/evars/evar180": { + "title": "eVar180", + "type": "string", + "description": "Custom conversion variable 180." + }, + "https://ns.adobe.com/experience/analytics/evars/evar181": { + "title": "eVar181", + "type": "string", + "description": "Custom conversion variable 181." + }, + "https://ns.adobe.com/experience/analytics/evars/evar182": { + "title": "eVar182", + "type": "string", + "description": "Custom conversion variable 182." + }, + "https://ns.adobe.com/experience/analytics/evars/evar183": { + "title": "eVar183", + "type": "string", + "description": "Custom conversion variable 183." + }, + "https://ns.adobe.com/experience/analytics/evars/evar184": { + "title": "eVar184", + "type": "string", + "description": "Custom conversion variable 184." + }, + "https://ns.adobe.com/experience/analytics/evars/evar185": { + "title": "eVar185", + "type": "string", + "description": "Custom conversion variable 185." + }, + "https://ns.adobe.com/experience/analytics/evars/evar186": { + "title": "eVar186", + "type": "string", + "description": "Custom conversion variable 186." + }, + "https://ns.adobe.com/experience/analytics/evars/evar187": { + "title": "eVar187", + "type": "string", + "description": "Custom conversion variable 187." + }, + "https://ns.adobe.com/experience/analytics/evars/evar188": { + "title": "eVar188", + "type": "string", + "description": "Custom conversion variable 188." + }, + "https://ns.adobe.com/experience/analytics/evars/evar189": { + "title": "eVar189", + "type": "string", + "description": "Custom conversion variable 189." + }, + "https://ns.adobe.com/experience/analytics/evars/evar190": { + "title": "eVar190", + "type": "string", + "description": "Custom conversion variable 190." + }, + "https://ns.adobe.com/experience/analytics/evars/evar191": { + "title": "eVar191", + "type": "string", + "description": "Custom conversion variable 191." + }, + "https://ns.adobe.com/experience/analytics/evars/evar192": { + "title": "eVar192", + "type": "string", + "description": "Custom conversion variable 192." + }, + "https://ns.adobe.com/experience/analytics/evars/evar193": { + "title": "eVar193", + "type": "string", + "description": "Custom conversion variable 193." + }, + "https://ns.adobe.com/experience/analytics/evars/evar194": { + "title": "eVar194", + "type": "string", + "description": "Custom conversion variable 194." + }, + "https://ns.adobe.com/experience/analytics/evars/evar195": { + "title": "eVar195", + "type": "string", + "description": "Custom conversion variable 195." + }, + "https://ns.adobe.com/experience/analytics/evars/evar196": { + "title": "eVar196", + "type": "string", + "description": "Custom conversion variable 196." + }, + "https://ns.adobe.com/experience/analytics/evars/evar197": { + "title": "eVar197", + "type": "string", + "description": "Custom conversion variable 197." + }, + "https://ns.adobe.com/experience/analytics/evars/evar198": { + "title": "eVar198", + "type": "string", + "description": "Custom conversion variable 198." + }, + "https://ns.adobe.com/experience/analytics/evars/evar199": { + "title": "eVar199", + "type": "string", + "description": "Custom conversion variable 199." + }, + "https://ns.adobe.com/experience/analytics/evars/evar200": { + "title": "eVar200", + "type": "string", + "description": "Custom conversion variable 200." + }, + "https://ns.adobe.com/experience/analytics/evars/evar201": { + "title": "eVar201", + "type": "string", + "description": "Custom conversion variable 201." + }, + "https://ns.adobe.com/experience/analytics/evars/evar202": { + "title": "eVar202", + "type": "string", + "description": "Custom conversion variable 202." + }, + "https://ns.adobe.com/experience/analytics/evars/evar203": { + "title": "eVar203", + "type": "string", + "description": "Custom conversion variable 203." + }, + "https://ns.adobe.com/experience/analytics/evars/evar204": { + "title": "eVar204", + "type": "string", + "description": "Custom conversion variable 204." + }, + "https://ns.adobe.com/experience/analytics/evars/evar205": { + "title": "eVar205", + "type": "string", + "description": "Custom conversion variable 205." + }, + "https://ns.adobe.com/experience/analytics/evars/evar206": { + "title": "eVar206", + "type": "string", + "description": "Custom conversion variable 206." + }, + "https://ns.adobe.com/experience/analytics/evars/evar207": { + "title": "eVar207", + "type": "string", + "description": "Custom conversion variable 207." + }, + "https://ns.adobe.com/experience/analytics/evars/evar208": { + "title": "eVar208", + "type": "string", + "description": "Custom conversion variable 208." + }, + "https://ns.adobe.com/experience/analytics/evars/evar209": { + "title": "eVar209", + "type": "string", + "description": "Custom conversion variable 209." + }, + "https://ns.adobe.com/experience/analytics/evars/evar210": { + "title": "eVar210", + "type": "string", + "description": "Custom conversion variable 210." + }, + "https://ns.adobe.com/experience/analytics/evars/evar211": { + "title": "eVar211", + "type": "string", + "description": "Custom conversion variable 211." + }, + "https://ns.adobe.com/experience/analytics/evars/evar212": { + "title": "eVar212", + "type": "string", + "description": "Custom conversion variable 212." + }, + "https://ns.adobe.com/experience/analytics/evars/evar213": { + "title": "eVar213", + "type": "string", + "description": "Custom conversion variable 213." + }, + "https://ns.adobe.com/experience/analytics/evars/evar214": { + "title": "eVar214", + "type": "string", + "description": "Custom conversion variable 214." + }, + "https://ns.adobe.com/experience/analytics/evars/evar215": { + "title": "eVar215", + "type": "string", + "description": "Custom conversion variable 215." + }, + "https://ns.adobe.com/experience/analytics/evars/evar216": { + "title": "eVar216", + "type": "string", + "description": "Custom conversion variable 216." + }, + "https://ns.adobe.com/experience/analytics/evars/evar217": { + "title": "eVar217", + "type": "string", + "description": "Custom conversion variable 217." + }, + "https://ns.adobe.com/experience/analytics/evars/evar218": { + "title": "eVar218", + "type": "string", + "description": "Custom conversion variable 218." + }, + "https://ns.adobe.com/experience/analytics/evars/evar219": { + "title": "eVar219", + "type": "string", + "description": "Custom conversion variable 219." + }, + "https://ns.adobe.com/experience/analytics/evars/evar220": { + "title": "eVar220", + "type": "string", + "description": "Custom conversion variable 220." + }, + "https://ns.adobe.com/experience/analytics/evars/evar221": { + "title": "eVar221", + "type": "string", + "description": "Custom conversion variable 221." + }, + "https://ns.adobe.com/experience/analytics/evars/evar222": { + "title": "eVar222", + "type": "string", + "description": "Custom conversion variable 222." + }, + "https://ns.adobe.com/experience/analytics/evars/evar223": { + "title": "eVar223", + "type": "string", + "description": "Custom conversion variable 223." + }, + "https://ns.adobe.com/experience/analytics/evars/evar224": { + "title": "eVar224", + "type": "string", + "description": "Custom conversion variable 224." + }, + "https://ns.adobe.com/experience/analytics/evars/evar225": { + "title": "eVar225", + "type": "string", + "description": "Custom conversion variable 225." + }, + "https://ns.adobe.com/experience/analytics/evars/evar226": { + "title": "eVar226", + "type": "string", + "description": "Custom conversion variable 226." + }, + "https://ns.adobe.com/experience/analytics/evars/evar227": { + "title": "eVar227", + "type": "string", + "description": "Custom conversion variable 227." + }, + "https://ns.adobe.com/experience/analytics/evars/evar228": { + "title": "eVar228", + "type": "string", + "description": "Custom conversion variable 228." + }, + "https://ns.adobe.com/experience/analytics/evars/evar229": { + "title": "eVar229", + "type": "string", + "description": "Custom conversion variable 229." + }, + "https://ns.adobe.com/experience/analytics/evars/evar230": { + "title": "eVar230", + "type": "string", + "description": "Custom conversion variable 230." + }, + "https://ns.adobe.com/experience/analytics/evars/evar231": { + "title": "eVar231", + "type": "string", + "description": "Custom conversion variable 231." + }, + "https://ns.adobe.com/experience/analytics/evars/evar232": { + "title": "eVar232", + "type": "string", + "description": "Custom conversion variable 232." + }, + "https://ns.adobe.com/experience/analytics/evars/evar233": { + "title": "eVar233", + "type": "string", + "description": "Custom conversion variable 233." + }, + "https://ns.adobe.com/experience/analytics/evars/evar234": { + "title": "eVar234", + "type": "string", + "description": "Custom conversion variable 234." + }, + "https://ns.adobe.com/experience/analytics/evars/evar235": { + "title": "eVar235", + "type": "string", + "description": "Custom conversion variable 235." + }, + "https://ns.adobe.com/experience/analytics/evars/evar236": { + "title": "eVar236", + "type": "string", + "description": "Custom conversion variable 236." + }, + "https://ns.adobe.com/experience/analytics/evars/evar237": { + "title": "eVar237", + "type": "string", + "description": "Custom conversion variable 237." + }, + "https://ns.adobe.com/experience/analytics/evars/evar238": { + "title": "eVar238", + "type": "string", + "description": "Custom conversion variable 238." + }, + "https://ns.adobe.com/experience/analytics/evars/evar239": { + "title": "eVar239", + "type": "string", + "description": "Custom conversion variable 239." + }, + "https://ns.adobe.com/experience/analytics/evars/evar240": { + "title": "eVar240", + "type": "string", + "description": "Custom conversion variable 240." + }, + "https://ns.adobe.com/experience/analytics/evars/evar241": { + "title": "eVar241", + "type": "string", + "description": "Custom conversion variable 241." + }, + "https://ns.adobe.com/experience/analytics/evars/evar242": { + "title": "eVar242", + "type": "string", + "description": "Custom conversion variable 242." + }, + "https://ns.adobe.com/experience/analytics/evars/evar243": { + "title": "eVar243", + "type": "string", + "description": "Custom conversion variable 243." + }, + "https://ns.adobe.com/experience/analytics/evars/evar244": { + "title": "eVar244", + "type": "string", + "description": "Custom conversion variable 244." + }, + "https://ns.adobe.com/experience/analytics/evars/evar245": { + "title": "eVar245", + "type": "string", + "description": "Custom conversion variable 245." + }, + "https://ns.adobe.com/experience/analytics/evars/evar246": { + "title": "eVar246", + "type": "string", + "description": "Custom conversion variable 246." + }, + "https://ns.adobe.com/experience/analytics/evars/evar247": { + "title": "eVar247", + "type": "string", + "description": "Custom conversion variable 247." + }, + "https://ns.adobe.com/experience/analytics/evars/evar248": { + "title": "eVar248", + "type": "string", + "description": "Custom conversion variable 248." + }, + "https://ns.adobe.com/experience/analytics/evars/evar249": { + "title": "eVar249", + "type": "string", + "description": "Custom conversion variable 249." + }, + "https://ns.adobe.com/experience/analytics/evars/evar250": { + "title": "eVar250", + "type": "string", + "description": "Custom conversion variable 250." + }, + "https://ns.adobe.com/experience/analytics/props/prop1": { + "title": "prop1", + "type": "string", + "description": "Custom property variable 1." + }, + "https://ns.adobe.com/experience/analytics/props/prop2": { + "title": "prop2", + "type": "string", + "description": "Custom property variable 2." + }, + "https://ns.adobe.com/experience/analytics/props/prop3": { + "title": "prop3", + "type": "string", + "description": "Custom property variable 3." + }, + "https://ns.adobe.com/experience/analytics/props/prop4": { + "title": "prop4", + "type": "string", + "description": "Custom property variable 4." + }, + "https://ns.adobe.com/experience/analytics/props/prop5": { + "title": "prop5", + "type": "string", + "description": "Custom property variable 5." + }, + "https://ns.adobe.com/experience/analytics/props/prop6": { + "title": "prop6", + "type": "string", + "description": "Custom property variable 6." + }, + "https://ns.adobe.com/experience/analytics/props/prop7": { + "title": "prop7", + "type": "string", + "description": "Custom property variable 7." + }, + "https://ns.adobe.com/experience/analytics/props/prop8": { + "title": "prop8", + "type": "string", + "description": "Custom property variable 8." + }, + "https://ns.adobe.com/experience/analytics/props/prop9": { + "title": "prop9", + "type": "string", + "description": "Custom property variable 9." + }, + "https://ns.adobe.com/experience/analytics/props/prop10": { + "title": "prop10", + "type": "string", + "description": "Custom property variable 10." + }, + "https://ns.adobe.com/experience/analytics/props/prop11": { + "title": "prop11", + "type": "string", + "description": "Custom property variable 11." + }, + "https://ns.adobe.com/experience/analytics/props/prop12": { + "title": "prop12", + "type": "string", + "description": "Custom property variable 12." + }, + "https://ns.adobe.com/experience/analytics/props/prop13": { + "title": "prop13", + "type": "string", + "description": "Custom property variable 13." + }, + "https://ns.adobe.com/experience/analytics/props/prop14": { + "title": "prop14", + "type": "string", + "description": "Custom property variable 14." + }, + "https://ns.adobe.com/experience/analytics/props/prop15": { + "title": "prop15", + "type": "string", + "description": "Custom property variable 15." + }, + "https://ns.adobe.com/experience/analytics/props/prop16": { + "title": "prop16", + "type": "string", + "description": "Custom property variable 16." + }, + "https://ns.adobe.com/experience/analytics/props/prop17": { + "title": "prop17", + "type": "string", + "description": "Custom property variable 17." + }, + "https://ns.adobe.com/experience/analytics/props/prop18": { + "title": "prop18", + "type": "string", + "description": "Custom property variable 18." + }, + "https://ns.adobe.com/experience/analytics/props/prop19": { + "title": "prop19", + "type": "string", + "description": "Custom property variable 19." + }, + "https://ns.adobe.com/experience/analytics/props/prop20": { + "title": "prop20", + "type": "string", + "description": "Custom property variable 20." + }, + "https://ns.adobe.com/experience/analytics/props/prop21": { + "title": "prop21", + "type": "string", + "description": "Custom property variable 21." + }, + "https://ns.adobe.com/experience/analytics/props/prop22": { + "title": "prop22", + "type": "string", + "description": "Custom property variable 22." + }, + "https://ns.adobe.com/experience/analytics/props/prop23": { + "title": "prop23", + "type": "string", + "description": "Custom property variable 23." + }, + "https://ns.adobe.com/experience/analytics/props/prop24": { + "title": "prop24", + "type": "string", + "description": "Custom property variable 24." + }, + "https://ns.adobe.com/experience/analytics/props/prop25": { + "title": "prop25", + "type": "string", + "description": "Custom property variable 25." + }, + "https://ns.adobe.com/experience/analytics/props/prop26": { + "title": "prop26", + "type": "string", + "description": "Custom property variable 26." + }, + "https://ns.adobe.com/experience/analytics/props/prop27": { + "title": "prop27", + "type": "string", + "description": "Custom property variable 27." + }, + "https://ns.adobe.com/experience/analytics/props/prop28": { + "title": "prop28", + "type": "string", + "description": "Custom property variable 28." + }, + "https://ns.adobe.com/experience/analytics/props/prop29": { + "title": "prop29", + "type": "string", + "description": "Custom property variable 29." + }, + "https://ns.adobe.com/experience/analytics/props/prop30": { + "title": "prop30", + "type": "string", + "description": "Custom property variable 30." + }, + "https://ns.adobe.com/experience/analytics/props/prop31": { + "title": "prop31", + "type": "string", + "description": "Custom property variable 31." + }, + "https://ns.adobe.com/experience/analytics/props/prop32": { + "title": "prop32", + "type": "string", + "description": "Custom property variable 32." + }, + "https://ns.adobe.com/experience/analytics/props/prop33": { + "title": "prop33", + "type": "string", + "description": "Custom property variable 33." + }, + "https://ns.adobe.com/experience/analytics/props/prop34": { + "title": "prop34", + "type": "string", + "description": "Custom property variable 34." + }, + "https://ns.adobe.com/experience/analytics/props/prop35": { + "title": "prop35", + "type": "string", + "description": "Custom property variable 35." + }, + "https://ns.adobe.com/experience/analytics/props/prop36": { + "title": "prop36", + "type": "string", + "description": "Custom property variable 36." + }, + "https://ns.adobe.com/experience/analytics/props/prop37": { + "title": "prop37", + "type": "string", + "description": "Custom property variable 37." + }, + "https://ns.adobe.com/experience/analytics/props/prop38": { + "title": "prop38", + "type": "string", + "description": "Custom property variable 38." + }, + "https://ns.adobe.com/experience/analytics/props/prop39": { + "title": "prop39", + "type": "string", + "description": "Custom property variable 39." + }, + "https://ns.adobe.com/experience/analytics/props/prop40": { + "title": "prop40", + "type": "string", + "description": "Custom property variable 40." + }, + "https://ns.adobe.com/experience/analytics/props/prop41": { + "title": "prop41", + "type": "string", + "description": "Custom property variable 41." + }, + "https://ns.adobe.com/experience/analytics/props/prop42": { + "title": "prop42", + "type": "string", + "description": "Custom property variable 42." + }, + "https://ns.adobe.com/experience/analytics/props/prop43": { + "title": "prop43", + "type": "string", + "description": "Custom property variable 43." + }, + "https://ns.adobe.com/experience/analytics/props/prop44": { + "title": "prop44", + "type": "string", + "description": "Custom property variable 44." + }, + "https://ns.adobe.com/experience/analytics/props/prop45": { + "title": "prop45", + "type": "string", + "description": "Custom property variable 45." + }, + "https://ns.adobe.com/experience/analytics/props/prop46": { + "title": "prop46", + "type": "string", + "description": "Custom property variable 46." + }, + "https://ns.adobe.com/experience/analytics/props/prop47": { + "title": "prop47", + "type": "string", + "description": "Custom property variable 47." + }, + "https://ns.adobe.com/experience/analytics/props/prop48": { + "title": "prop48", + "type": "string", + "description": "Custom property variable 48." + }, + "https://ns.adobe.com/experience/analytics/props/prop49": { + "title": "prop49", + "type": "string", + "description": "Custom property variable 49." + }, + "https://ns.adobe.com/experience/analytics/props/prop50": { + "title": "prop50", + "type": "string", + "description": "Custom property variable 50." + }, + "https://ns.adobe.com/experience/analytics/props/prop51": { + "title": "prop51", + "type": "string", + "description": "Custom property variable 51." + }, + "https://ns.adobe.com/experience/analytics/props/prop52": { + "title": "prop52", + "type": "string", + "description": "Custom property variable 52." + }, + "https://ns.adobe.com/experience/analytics/props/prop53": { + "title": "prop53", + "type": "string", + "description": "Custom property variable 53." + }, + "https://ns.adobe.com/experience/analytics/props/prop54": { + "title": "prop54", + "type": "string", + "description": "Custom property variable 54." + }, + "https://ns.adobe.com/experience/analytics/props/prop55": { + "title": "prop55", + "type": "string", + "description": "Custom property variable 55." + }, + "https://ns.adobe.com/experience/analytics/props/prop56": { + "title": "prop56", + "type": "string", + "description": "Custom property variable 56." + }, + "https://ns.adobe.com/experience/analytics/props/prop57": { + "title": "prop57", + "type": "string", + "description": "Custom property variable 57." + }, + "https://ns.adobe.com/experience/analytics/props/prop58": { + "title": "prop58", + "type": "string", + "description": "Custom property variable 58." + }, + "https://ns.adobe.com/experience/analytics/props/prop59": { + "title": "prop59", + "type": "string", + "description": "Custom property variable 59." + }, + "https://ns.adobe.com/experience/analytics/props/prop60": { + "title": "prop60", + "type": "string", + "description": "Custom property variable 60." + }, + "https://ns.adobe.com/experience/analytics/props/prop61": { + "title": "prop61", + "type": "string", + "description": "Custom property variable 61." + }, + "https://ns.adobe.com/experience/analytics/props/prop62": { + "title": "prop62", + "type": "string", + "description": "Custom property variable 62." + }, + "https://ns.adobe.com/experience/analytics/props/prop63": { + "title": "prop63", + "type": "string", + "description": "Custom property variable 63." + }, + "https://ns.adobe.com/experience/analytics/props/prop64": { + "title": "prop64", + "type": "string", + "description": "Custom property variable 64." + }, + "https://ns.adobe.com/experience/analytics/props/prop65": { + "title": "prop65", + "type": "string", + "description": "Custom property variable 65." + }, + "https://ns.adobe.com/experience/analytics/props/prop66": { + "title": "prop66", + "type": "string", + "description": "Custom property variable 66." + }, + "https://ns.adobe.com/experience/analytics/props/prop67": { + "title": "prop67", + "type": "string", + "description": "Custom property variable 67." + }, + "https://ns.adobe.com/experience/analytics/props/prop68": { + "title": "prop68", + "type": "string", + "description": "Custom property variable 68." + }, + "https://ns.adobe.com/experience/analytics/props/prop69": { + "title": "prop69", + "type": "string", + "description": "Custom property variable 69." + }, + "https://ns.adobe.com/experience/analytics/props/prop70": { + "title": "prop70", + "type": "string", + "description": "Custom property variable 70." + }, + "https://ns.adobe.com/experience/analytics/props/prop71": { + "title": "prop71", + "type": "string", + "description": "Custom property variable 71." + }, + "https://ns.adobe.com/experience/analytics/props/prop72": { + "title": "prop72", + "type": "string", + "description": "Custom property variable 72." + }, + "https://ns.adobe.com/experience/analytics/props/prop73": { + "title": "prop73", + "type": "string", + "description": "Custom property variable 73." + }, + "https://ns.adobe.com/experience/analytics/props/prop74": { + "title": "prop74", + "type": "string", + "description": "Custom property variable 74." + }, + "https://ns.adobe.com/experience/analytics/props/prop75": { + "title": "prop75", + "type": "string", + "description": "Custom property variable 75." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop1/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop1/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop2/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop2/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop3/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop3/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop4/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop4/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop5/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop5/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop6/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop6/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop7/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop7/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop8/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop8/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop9/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop9/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop10/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop10/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop11/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop11/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop12/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop12/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop13/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop13/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop14/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop14/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop15/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop15/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop16/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop16/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop17/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop17/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop18/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop18/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop19/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop19/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop20/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop20/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop21/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop21/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop22/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop22/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop23/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop23/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop24/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop24/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop25/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop25/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop26/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop26/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop27/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop27/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop28/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop28/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop29/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop29/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop30/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop30/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop31/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop31/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop32/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop32/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop33/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop33/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop34/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop34/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop35/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop35/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop36/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop36/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop37/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop37/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop38/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop38/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop39/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop39/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop40/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop40/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop41/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop41/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop42/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop42/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop43/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop43/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop44/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop44/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop45/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop45/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop46/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop46/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop47/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop47/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop48/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop48/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop49/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop49/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop50/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop50/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop51/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop51/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop52/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop52/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop53/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop53/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop54/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop54/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop55/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop55/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop56/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop56/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop57/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop57/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop58/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop58/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop59/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop59/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop60/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop60/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop61/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop61/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop62/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop62/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop63/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop63/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop64/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop64/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop65/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop65/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop66/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop66/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop67/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop67/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop68/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop68/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop69/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop69/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop70/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop70/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop71/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop71/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop72/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop72/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop73/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop73/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop74/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop74/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop75/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/listprops/prop75/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier1/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier1/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier2/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier2/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier3/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier3/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier4/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier4/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier5/values": { + "title": "List Values", + "type": "array", + "items": { + "type": "string" + }, + "description": "List of values." + }, + "https://ns.adobe.com/experience/analytics/hierarchies/hier5/delimiter": { + "title": "Original List Delimiter", + "type": "string", + "description": "The original delimiter used to generate the list." + } + } + } + }, + "allOf": [{ + "$ref": "#/definitions/customdimensions" + }] +} diff --git a/extensions/adobe/experience/analytics/customevents.schema.json b/extensions/adobe/experience/analytics/customevents.schema.json new file mode 100644 index 0000000000..1b8e3d2e68 --- /dev/null +++ b/extensions/adobe/experience/analytics/customevents.schema.json @@ -0,0 +1,5022 @@ +{ + "meta:license": [ + "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/experience/analytics/customevents", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Adobe Analytics Cloud Experience Custom Events", + "type": "object", + "description": "Adobe Analytics Cloud Experience Custom Events.", + "definitions": { + "customevents": { + "properties": { + "https://ns.adobe.com/experience/analytics/event1to100/event1": { + "title": "event1", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 1." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event2": { + "title": "event2", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 2." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event3": { + "title": "event3", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 3." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event4": { + "title": "event4", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 4." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event5": { + "title": "event5", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 5." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event6": { + "title": "event6", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 6." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event7": { + "title": "event7", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 7." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event8": { + "title": "event8", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 8." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event9": { + "title": "event9", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 9." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event10": { + "title": "event10", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 10." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event11": { + "title": "event11", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 11." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event12": { + "title": "event12", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 12." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event13": { + "title": "event13", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 13." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event14": { + "title": "event14", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 14." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event15": { + "title": "event15", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 15." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event16": { + "title": "event16", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 16." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event17": { + "title": "event17", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 17." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event18": { + "title": "event18", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 18." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event19": { + "title": "event19", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 19." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event20": { + "title": "event20", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 20." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event21": { + "title": "event21", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 21." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event22": { + "title": "event22", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 22." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event23": { + "title": "event23", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 23." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event24": { + "title": "event24", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 24." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event25": { + "title": "event25", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 25." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event26": { + "title": "event26", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 26." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event27": { + "title": "event27", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 27." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event28": { + "title": "event28", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 28." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event29": { + "title": "event29", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 29." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event30": { + "title": "event30", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 30." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event31": { + "title": "event31", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 31." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event32": { + "title": "event32", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 32." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event33": { + "title": "event33", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 33." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event34": { + "title": "event34", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 34." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event35": { + "title": "event35", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 35." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event36": { + "title": "event36", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 36." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event37": { + "title": "event37", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 37." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event38": { + "title": "event38", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 38." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event39": { + "title": "event39", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 39." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event40": { + "title": "event40", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 40." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event41": { + "title": "event41", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 41." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event42": { + "title": "event42", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 42." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event43": { + "title": "event43", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 43." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event44": { + "title": "event44", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 44." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event45": { + "title": "event45", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 45." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event46": { + "title": "event46", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 46." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event47": { + "title": "event47", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 47." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event48": { + "title": "event48", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 48." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event49": { + "title": "event49", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 49." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event50": { + "title": "event50", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 50." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event51": { + "title": "event51", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 51." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event52": { + "title": "event52", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 52." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event53": { + "title": "event53", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 53." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event54": { + "title": "event54", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 54." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event55": { + "title": "event55", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 55." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event56": { + "title": "event56", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 56." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event57": { + "title": "event57", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 57." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event58": { + "title": "event58", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 58." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event59": { + "title": "event59", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 59." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event60": { + "title": "event60", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 60." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event61": { + "title": "event61", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 61." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event62": { + "title": "event62", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 62." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event63": { + "title": "event63", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 63." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event64": { + "title": "event64", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 64." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event65": { + "title": "event65", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 65." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event66": { + "title": "event66", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 66." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event67": { + "title": "event67", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 67." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event68": { + "title": "event68", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 68." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event69": { + "title": "event69", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 69." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event70": { + "title": "event70", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 70." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event71": { + "title": "event71", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 71." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event72": { + "title": "event72", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 72." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event73": { + "title": "event73", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 73." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event74": { + "title": "event74", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 74." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event75": { + "title": "event75", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 75." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event76": { + "title": "event76", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 76." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event77": { + "title": "event77", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 77." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event78": { + "title": "event78", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 78." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event79": { + "title": "event79", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 79." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event80": { + "title": "event80", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 80." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event81": { + "title": "event81", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 81." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event82": { + "title": "event82", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 82." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event83": { + "title": "event83", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 83." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event84": { + "title": "event84", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 84." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event85": { + "title": "event85", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 85." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event86": { + "title": "event86", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 86." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event87": { + "title": "event87", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 87." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event88": { + "title": "event88", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 88." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event89": { + "title": "event89", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 89." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event90": { + "title": "event90", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 90." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event91": { + "title": "event91", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 91." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event92": { + "title": "event92", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 92." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event93": { + "title": "event93", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 93." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event94": { + "title": "event94", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 94." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event95": { + "title": "event95", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 95." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event96": { + "title": "event96", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 96." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event97": { + "title": "event97", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 97." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event98": { + "title": "event98", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 98." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event99": { + "title": "event99", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 99." + }, + "https://ns.adobe.com/experience/analytics/event1to100/event100": { + "title": "event100", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 100." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event101": { + "title": "event101", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 101." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event102": { + "title": "event102", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 102." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event103": { + "title": "event103", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 103." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event104": { + "title": "event104", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 104." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event105": { + "title": "event105", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 105." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event106": { + "title": "event106", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 106." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event107": { + "title": "event107", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 107." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event108": { + "title": "event108", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 108." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event109": { + "title": "event109", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 109." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event110": { + "title": "event110", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 110." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event111": { + "title": "event111", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 111." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event112": { + "title": "event112", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 112." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event113": { + "title": "event113", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 113." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event114": { + "title": "event114", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 114." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event115": { + "title": "event115", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 115." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event116": { + "title": "event116", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 116." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event117": { + "title": "event117", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 117." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event118": { + "title": "event118", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 118." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event119": { + "title": "event119", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 119." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event120": { + "title": "event120", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 120." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event121": { + "title": "event121", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 121." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event122": { + "title": "event122", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 122." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event123": { + "title": "event123", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 123." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event124": { + "title": "event124", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 124." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event125": { + "title": "event125", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 125." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event126": { + "title": "event126", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 126." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event127": { + "title": "event127", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 127." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event128": { + "title": "event128", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 128." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event129": { + "title": "event129", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 129." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event130": { + "title": "event130", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 130." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event131": { + "title": "event131", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 131." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event132": { + "title": "event132", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 132." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event133": { + "title": "event133", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 133." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event134": { + "title": "event134", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 134." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event135": { + "title": "event135", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 135." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event136": { + "title": "event136", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 136." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event137": { + "title": "event137", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 137." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event138": { + "title": "event138", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 138." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event139": { + "title": "event139", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 139." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event140": { + "title": "event140", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 140." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event141": { + "title": "event141", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 141." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event142": { + "title": "event142", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 142." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event143": { + "title": "event143", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 143." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event144": { + "title": "event144", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 144." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event145": { + "title": "event145", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 145." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event146": { + "title": "event146", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 146." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event147": { + "title": "event147", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 147." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event148": { + "title": "event148", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 148." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event149": { + "title": "event149", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 149." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event150": { + "title": "event150", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 150." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event151": { + "title": "event151", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 151." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event152": { + "title": "event152", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 152." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event153": { + "title": "event153", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 153." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event154": { + "title": "event154", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 154." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event155": { + "title": "event155", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 155." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event156": { + "title": "event156", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 156." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event157": { + "title": "event157", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 157." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event158": { + "title": "event158", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 158." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event159": { + "title": "event159", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 159." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event160": { + "title": "event160", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 160." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event161": { + "title": "event161", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 161." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event162": { + "title": "event162", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 162." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event163": { + "title": "event163", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 163." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event164": { + "title": "event164", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 164." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event165": { + "title": "event165", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 165." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event166": { + "title": "event166", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 166." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event167": { + "title": "event167", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 167." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event168": { + "title": "event168", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 168." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event169": { + "title": "event169", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 169." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event170": { + "title": "event170", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 170." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event171": { + "title": "event171", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 171." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event172": { + "title": "event172", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 172." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event173": { + "title": "event173", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 173." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event174": { + "title": "event174", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 174." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event175": { + "title": "event175", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 175." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event176": { + "title": "event176", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 176." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event177": { + "title": "event177", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 177." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event178": { + "title": "event178", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 178." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event179": { + "title": "event179", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 179." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event180": { + "title": "event180", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 180." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event181": { + "title": "event181", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 181." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event182": { + "title": "event182", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 182." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event183": { + "title": "event183", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 183." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event184": { + "title": "event184", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 184." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event185": { + "title": "event185", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 185." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event186": { + "title": "event186", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 186." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event187": { + "title": "event187", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 187." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event188": { + "title": "event188", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 188." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event189": { + "title": "event189", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 189." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event190": { + "title": "event190", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 190." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event191": { + "title": "event191", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 191." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event192": { + "title": "event192", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 192." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event193": { + "title": "event193", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 193." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event194": { + "title": "event194", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 194." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event195": { + "title": "event195", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 195." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event196": { + "title": "event196", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 196." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event197": { + "title": "event197", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 197." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event198": { + "title": "event198", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 198." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event199": { + "title": "event199", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 199." + }, + "https://ns.adobe.com/experience/analytics/event101to200/event200": { + "title": "event200", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 200." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event201": { + "title": "event201", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 201." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event202": { + "title": "event202", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 202." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event203": { + "title": "event203", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 203." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event204": { + "title": "event204", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 204." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event205": { + "title": "event205", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 205." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event206": { + "title": "event206", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 206." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event207": { + "title": "event207", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 207." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event208": { + "title": "event208", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 208." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event209": { + "title": "event209", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 209." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event210": { + "title": "event210", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 210." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event211": { + "title": "event211", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 211." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event212": { + "title": "event212", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 212." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event213": { + "title": "event213", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 213." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event214": { + "title": "event214", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 214." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event215": { + "title": "event215", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 215." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event216": { + "title": "event216", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 216." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event217": { + "title": "event217", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 217." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event218": { + "title": "event218", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 218." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event219": { + "title": "event219", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 219." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event220": { + "title": "event220", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 220." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event221": { + "title": "event221", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 221." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event222": { + "title": "event222", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 222." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event223": { + "title": "event223", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 223." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event224": { + "title": "event224", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 224." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event225": { + "title": "event225", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 225." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event226": { + "title": "event226", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 226." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event227": { + "title": "event227", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 227." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event228": { + "title": "event228", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 228." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event229": { + "title": "event229", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 229." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event230": { + "title": "event230", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 230." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event231": { + "title": "event231", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 231." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event232": { + "title": "event232", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 232." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event233": { + "title": "event233", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 233." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event234": { + "title": "event234", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 234." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event235": { + "title": "event235", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 235." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event236": { + "title": "event236", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 236." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event237": { + "title": "event237", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 237." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event238": { + "title": "event238", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 238." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event239": { + "title": "event239", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 239." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event240": { + "title": "event240", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 240." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event241": { + "title": "event241", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 241." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event242": { + "title": "event242", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 242." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event243": { + "title": "event243", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 243." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event244": { + "title": "event244", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 244." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event245": { + "title": "event245", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 245." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event246": { + "title": "event246", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 246." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event247": { + "title": "event247", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 247." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event248": { + "title": "event248", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 248." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event249": { + "title": "event249", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 249." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event250": { + "title": "event250", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 250." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event251": { + "title": "event251", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 251." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event252": { + "title": "event252", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 252." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event253": { + "title": "event253", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 253." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event254": { + "title": "event254", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 254." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event255": { + "title": "event255", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 255." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event256": { + "title": "event256", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 256." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event257": { + "title": "event257", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 257." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event258": { + "title": "event258", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 258." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event259": { + "title": "event259", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 259." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event260": { + "title": "event260", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 260." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event261": { + "title": "event261", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 261." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event262": { + "title": "event262", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 262." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event263": { + "title": "event263", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 263." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event264": { + "title": "event264", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 264." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event265": { + "title": "event265", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 265." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event266": { + "title": "event266", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 266." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event267": { + "title": "event267", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 267." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event268": { + "title": "event268", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 268." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event269": { + "title": "event269", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 269." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event270": { + "title": "event270", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 270." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event271": { + "title": "event271", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 271." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event272": { + "title": "event272", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 272." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event273": { + "title": "event273", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 273." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event274": { + "title": "event274", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 274." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event275": { + "title": "event275", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 275." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event276": { + "title": "event276", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 276." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event277": { + "title": "event277", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 277." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event278": { + "title": "event278", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 278." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event279": { + "title": "event279", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 279." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event280": { + "title": "event280", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 280." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event281": { + "title": "event281", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 281." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event282": { + "title": "event282", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 282." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event283": { + "title": "event283", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 283." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event284": { + "title": "event284", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 284." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event285": { + "title": "event285", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 285." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event286": { + "title": "event286", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 286." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event287": { + "title": "event287", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 287." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event288": { + "title": "event288", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 288." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event289": { + "title": "event289", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 289." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event290": { + "title": "event290", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 290." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event291": { + "title": "event291", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 291." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event292": { + "title": "event292", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 292." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event293": { + "title": "event293", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 293." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event294": { + "title": "event294", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 294." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event295": { + "title": "event295", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 295." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event296": { + "title": "event296", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 296." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event297": { + "title": "event297", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 297." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event298": { + "title": "event298", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 298." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event299": { + "title": "event299", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 299." + }, + "https://ns.adobe.com/experience/analytics/event201to300/event300": { + "title": "event300", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 300." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event301": { + "title": "event301", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 301." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event302": { + "title": "event302", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 302." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event303": { + "title": "event303", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 303." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event304": { + "title": "event304", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 304." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event305": { + "title": "event305", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 305." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event306": { + "title": "event306", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 306." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event307": { + "title": "event307", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 307." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event308": { + "title": "event308", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 308." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event309": { + "title": "event309", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 309." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event310": { + "title": "event310", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 310." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event311": { + "title": "event311", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 311." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event312": { + "title": "event312", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 312." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event313": { + "title": "event313", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 313." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event314": { + "title": "event314", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 314." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event315": { + "title": "event315", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 315." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event316": { + "title": "event316", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 316." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event317": { + "title": "event317", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 317." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event318": { + "title": "event318", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 318." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event319": { + "title": "event319", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 319." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event320": { + "title": "event320", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 320." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event321": { + "title": "event321", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 321." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event322": { + "title": "event322", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 322." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event323": { + "title": "event323", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 323." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event324": { + "title": "event324", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 324." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event325": { + "title": "event325", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 325." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event326": { + "title": "event326", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 326." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event327": { + "title": "event327", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 327." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event328": { + "title": "event328", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 328." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event329": { + "title": "event329", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 329." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event330": { + "title": "event330", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 330." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event331": { + "title": "event331", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 331." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event332": { + "title": "event332", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 332." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event333": { + "title": "event333", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 333." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event334": { + "title": "event334", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 334." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event335": { + "title": "event335", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 335." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event336": { + "title": "event336", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 336." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event337": { + "title": "event337", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 337." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event338": { + "title": "event338", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 338." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event339": { + "title": "event339", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 339." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event340": { + "title": "event340", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 340." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event341": { + "title": "event341", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 341." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event342": { + "title": "event342", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 342." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event343": { + "title": "event343", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 343." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event344": { + "title": "event344", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 344." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event345": { + "title": "event345", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 345." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event346": { + "title": "event346", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 346." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event347": { + "title": "event347", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 347." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event348": { + "title": "event348", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 348." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event349": { + "title": "event349", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 349." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event350": { + "title": "event350", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 350." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event351": { + "title": "event351", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 351." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event352": { + "title": "event352", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 352." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event353": { + "title": "event353", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 353." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event354": { + "title": "event354", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 354." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event355": { + "title": "event355", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 355." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event356": { + "title": "event356", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 356." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event357": { + "title": "event357", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 357." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event358": { + "title": "event358", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 358." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event359": { + "title": "event359", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 359." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event360": { + "title": "event360", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 360." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event361": { + "title": "event361", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 361." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event362": { + "title": "event362", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 362." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event363": { + "title": "event363", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 363." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event364": { + "title": "event364", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 364." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event365": { + "title": "event365", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 365." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event366": { + "title": "event366", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 366." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event367": { + "title": "event367", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 367." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event368": { + "title": "event368", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 368." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event369": { + "title": "event369", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 369." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event370": { + "title": "event370", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 370." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event371": { + "title": "event371", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 371." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event372": { + "title": "event372", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 372." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event373": { + "title": "event373", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 373." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event374": { + "title": "event374", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 374." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event375": { + "title": "event375", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 375." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event376": { + "title": "event376", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 376." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event377": { + "title": "event377", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 377." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event378": { + "title": "event378", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 378." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event379": { + "title": "event379", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 379." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event380": { + "title": "event380", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 380." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event381": { + "title": "event381", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 381." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event382": { + "title": "event382", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 382." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event383": { + "title": "event383", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 383." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event384": { + "title": "event384", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 384." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event385": { + "title": "event385", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 385." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event386": { + "title": "event386", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 386." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event387": { + "title": "event387", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 387." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event388": { + "title": "event388", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 388." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event389": { + "title": "event389", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 389." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event390": { + "title": "event390", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 390." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event391": { + "title": "event391", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 391." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event392": { + "title": "event392", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 392." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event393": { + "title": "event393", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 393." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event394": { + "title": "event394", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 394." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event395": { + "title": "event395", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 395." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event396": { + "title": "event396", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 396." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event397": { + "title": "event397", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 397." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event398": { + "title": "event398", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 398." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event399": { + "title": "event399", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 399." + }, + "https://ns.adobe.com/experience/analytics/event301to400/event400": { + "title": "event400", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 400." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event401": { + "title": "event401", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 401." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event402": { + "title": "event402", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 402." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event403": { + "title": "event403", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 403." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event404": { + "title": "event404", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 404." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event405": { + "title": "event405", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 405." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event406": { + "title": "event406", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 406." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event407": { + "title": "event407", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 407." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event408": { + "title": "event408", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 408." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event409": { + "title": "event409", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 409." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event410": { + "title": "event410", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 410." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event411": { + "title": "event411", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 411." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event412": { + "title": "event412", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 412." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event413": { + "title": "event413", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 413." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event414": { + "title": "event414", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 414." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event415": { + "title": "event415", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 415." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event416": { + "title": "event416", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 416." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event417": { + "title": "event417", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 417." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event418": { + "title": "event418", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 418." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event419": { + "title": "event419", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 419." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event420": { + "title": "event420", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 420." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event421": { + "title": "event421", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 421." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event422": { + "title": "event422", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 422." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event423": { + "title": "event423", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 423." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event424": { + "title": "event424", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 424." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event425": { + "title": "event425", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 425." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event426": { + "title": "event426", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 426." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event427": { + "title": "event427", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 427." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event428": { + "title": "event428", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 428." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event429": { + "title": "event429", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 429." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event430": { + "title": "event430", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 430." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event431": { + "title": "event431", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 431." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event432": { + "title": "event432", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 432." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event433": { + "title": "event433", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 433." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event434": { + "title": "event434", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 434." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event435": { + "title": "event435", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 435." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event436": { + "title": "event436", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 436." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event437": { + "title": "event437", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 437." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event438": { + "title": "event438", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 438." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event439": { + "title": "event439", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 439." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event440": { + "title": "event440", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 440." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event441": { + "title": "event441", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 441." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event442": { + "title": "event442", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 442." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event443": { + "title": "event443", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 443." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event444": { + "title": "event444", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 444." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event445": { + "title": "event445", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 445." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event446": { + "title": "event446", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 446." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event447": { + "title": "event447", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 447." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event448": { + "title": "event448", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 448." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event449": { + "title": "event449", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 449." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event450": { + "title": "event450", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 450." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event451": { + "title": "event451", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 451." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event452": { + "title": "event452", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 452." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event453": { + "title": "event453", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 453." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event454": { + "title": "event454", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 454." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event455": { + "title": "event455", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 455." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event456": { + "title": "event456", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 456." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event457": { + "title": "event457", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 457." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event458": { + "title": "event458", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 458." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event459": { + "title": "event459", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 459." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event460": { + "title": "event460", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 460." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event461": { + "title": "event461", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 461." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event462": { + "title": "event462", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 462." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event463": { + "title": "event463", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 463." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event464": { + "title": "event464", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 464." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event465": { + "title": "event465", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 465." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event466": { + "title": "event466", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 466." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event467": { + "title": "event467", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 467." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event468": { + "title": "event468", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 468." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event469": { + "title": "event469", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 469." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event470": { + "title": "event470", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 470." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event471": { + "title": "event471", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 471." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event472": { + "title": "event472", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 472." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event473": { + "title": "event473", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 473." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event474": { + "title": "event474", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 474." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event475": { + "title": "event475", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 475." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event476": { + "title": "event476", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 476." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event477": { + "title": "event477", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 477." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event478": { + "title": "event478", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 478." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event479": { + "title": "event479", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 479." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event480": { + "title": "event480", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 480." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event481": { + "title": "event481", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 481." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event482": { + "title": "event482", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 482." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event483": { + "title": "event483", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 483." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event484": { + "title": "event484", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 484." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event485": { + "title": "event485", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 485." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event486": { + "title": "event486", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 486." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event487": { + "title": "event487", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 487." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event488": { + "title": "event488", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 488." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event489": { + "title": "event489", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 489." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event490": { + "title": "event490", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 490." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event491": { + "title": "event491", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 491." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event492": { + "title": "event492", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 492." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event493": { + "title": "event493", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 493." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event494": { + "title": "event494", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 494." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event495": { + "title": "event495", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 495." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event496": { + "title": "event496", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 496." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event497": { + "title": "event497", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 497." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event498": { + "title": "event498", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 498." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event499": { + "title": "event499", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 499." + }, + "https://ns.adobe.com/experience/analytics/event401to500/event500": { + "title": "event500", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 500." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event501": { + "title": "event501", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 501." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event502": { + "title": "event502", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 502." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event503": { + "title": "event503", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 503." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event504": { + "title": "event504", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 504." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event505": { + "title": "event505", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 505." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event506": { + "title": "event506", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 506." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event507": { + "title": "event507", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 507." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event508": { + "title": "event508", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 508." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event509": { + "title": "event509", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 509." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event510": { + "title": "event510", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 510." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event511": { + "title": "event511", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 511." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event512": { + "title": "event512", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 512." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event513": { + "title": "event513", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 513." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event514": { + "title": "event514", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 514." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event515": { + "title": "event515", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 515." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event516": { + "title": "event516", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 516." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event517": { + "title": "event517", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 517." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event518": { + "title": "event518", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 518." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event519": { + "title": "event519", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 519." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event520": { + "title": "event520", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 520." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event521": { + "title": "event521", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 521." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event522": { + "title": "event522", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 522." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event523": { + "title": "event523", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 523." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event524": { + "title": "event524", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 524." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event525": { + "title": "event525", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 525." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event526": { + "title": "event526", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 526." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event527": { + "title": "event527", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 527." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event528": { + "title": "event528", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 528." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event529": { + "title": "event529", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 529." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event530": { + "title": "event530", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 530." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event531": { + "title": "event531", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 531." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event532": { + "title": "event532", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 532." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event533": { + "title": "event533", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 533." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event534": { + "title": "event534", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 534." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event535": { + "title": "event535", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 535." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event536": { + "title": "event536", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 536." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event537": { + "title": "event537", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 537." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event538": { + "title": "event538", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 538." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event539": { + "title": "event539", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 539." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event540": { + "title": "event540", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 540." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event541": { + "title": "event541", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 541." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event542": { + "title": "event542", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 542." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event543": { + "title": "event543", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 543." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event544": { + "title": "event544", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 544." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event545": { + "title": "event545", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 545." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event546": { + "title": "event546", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 546." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event547": { + "title": "event547", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 547." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event548": { + "title": "event548", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 548." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event549": { + "title": "event549", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 549." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event550": { + "title": "event550", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 550." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event551": { + "title": "event551", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 551." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event552": { + "title": "event552", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 552." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event553": { + "title": "event553", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 553." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event554": { + "title": "event554", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 554." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event555": { + "title": "event555", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 555." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event556": { + "title": "event556", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 556." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event557": { + "title": "event557", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 557." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event558": { + "title": "event558", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 558." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event559": { + "title": "event559", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 559." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event560": { + "title": "event560", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 560." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event561": { + "title": "event561", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 561." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event562": { + "title": "event562", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 562." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event563": { + "title": "event563", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 563." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event564": { + "title": "event564", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 564." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event565": { + "title": "event565", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 565." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event566": { + "title": "event566", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 566." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event567": { + "title": "event567", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 567." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event568": { + "title": "event568", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 568." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event569": { + "title": "event569", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 569." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event570": { + "title": "event570", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 570." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event571": { + "title": "event571", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 571." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event572": { + "title": "event572", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 572." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event573": { + "title": "event573", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 573." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event574": { + "title": "event574", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 574." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event575": { + "title": "event575", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 575." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event576": { + "title": "event576", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 576." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event577": { + "title": "event577", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 577." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event578": { + "title": "event578", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 578." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event579": { + "title": "event579", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 579." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event580": { + "title": "event580", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 580." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event581": { + "title": "event581", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 581." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event582": { + "title": "event582", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 582." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event583": { + "title": "event583", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 583." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event584": { + "title": "event584", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 584." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event585": { + "title": "event585", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 585." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event586": { + "title": "event586", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 586." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event587": { + "title": "event587", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 587." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event588": { + "title": "event588", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 588." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event589": { + "title": "event589", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 589." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event590": { + "title": "event590", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 590." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event591": { + "title": "event591", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 591." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event592": { + "title": "event592", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 592." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event593": { + "title": "event593", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 593." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event594": { + "title": "event594", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 594." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event595": { + "title": "event595", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 595." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event596": { + "title": "event596", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 596." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event597": { + "title": "event597", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 597." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event598": { + "title": "event598", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 598." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event599": { + "title": "event599", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 599." + }, + "https://ns.adobe.com/experience/analytics/event501to600/event600": { + "title": "event600", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 600." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event601": { + "title": "event601", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 601." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event602": { + "title": "event602", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 602." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event603": { + "title": "event603", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 603." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event604": { + "title": "event604", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 604." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event605": { + "title": "event605", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 605." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event606": { + "title": "event606", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 606." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event607": { + "title": "event607", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 607." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event608": { + "title": "event608", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 608." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event609": { + "title": "event609", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 609." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event610": { + "title": "event610", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 610." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event611": { + "title": "event611", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 611." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event612": { + "title": "event612", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 612." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event613": { + "title": "event613", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 613." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event614": { + "title": "event614", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 614." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event615": { + "title": "event615", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 615." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event616": { + "title": "event616", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 616." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event617": { + "title": "event617", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 617." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event618": { + "title": "event618", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 618." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event619": { + "title": "event619", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 619." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event620": { + "title": "event620", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 620." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event621": { + "title": "event621", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 621." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event622": { + "title": "event622", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 622." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event623": { + "title": "event623", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 623." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event624": { + "title": "event624", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 624." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event625": { + "title": "event625", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 625." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event626": { + "title": "event626", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 626." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event627": { + "title": "event627", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 627." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event628": { + "title": "event628", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 628." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event629": { + "title": "event629", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 629." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event630": { + "title": "event630", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 630." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event631": { + "title": "event631", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 631." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event632": { + "title": "event632", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 632." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event633": { + "title": "event633", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 633." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event634": { + "title": "event634", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 634." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event635": { + "title": "event635", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 635." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event636": { + "title": "event636", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 636." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event637": { + "title": "event637", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 637." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event638": { + "title": "event638", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 638." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event639": { + "title": "event639", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 639." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event640": { + "title": "event640", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 640." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event641": { + "title": "event641", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 641." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event642": { + "title": "event642", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 642." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event643": { + "title": "event643", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 643." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event644": { + "title": "event644", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 644." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event645": { + "title": "event645", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 645." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event646": { + "title": "event646", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 646." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event647": { + "title": "event647", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 647." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event648": { + "title": "event648", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 648." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event649": { + "title": "event649", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 649." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event650": { + "title": "event650", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 650." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event651": { + "title": "event651", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 651." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event652": { + "title": "event652", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 652." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event653": { + "title": "event653", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 653." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event654": { + "title": "event654", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 654." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event655": { + "title": "event655", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 655." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event656": { + "title": "event656", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 656." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event657": { + "title": "event657", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 657." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event658": { + "title": "event658", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 658." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event659": { + "title": "event659", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 659." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event660": { + "title": "event660", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 660." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event661": { + "title": "event661", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 661." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event662": { + "title": "event662", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 662." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event663": { + "title": "event663", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 663." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event664": { + "title": "event664", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 664." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event665": { + "title": "event665", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 665." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event666": { + "title": "event666", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 666." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event667": { + "title": "event667", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 667." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event668": { + "title": "event668", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 668." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event669": { + "title": "event669", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 669." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event670": { + "title": "event670", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 670." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event671": { + "title": "event671", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 671." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event672": { + "title": "event672", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 672." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event673": { + "title": "event673", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 673." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event674": { + "title": "event674", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 674." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event675": { + "title": "event675", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 675." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event676": { + "title": "event676", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 676." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event677": { + "title": "event677", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 677." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event678": { + "title": "event678", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 678." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event679": { + "title": "event679", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 679." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event680": { + "title": "event680", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 680." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event681": { + "title": "event681", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 681." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event682": { + "title": "event682", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 682." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event683": { + "title": "event683", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 683." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event684": { + "title": "event684", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 684." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event685": { + "title": "event685", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 685." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event686": { + "title": "event686", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 686." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event687": { + "title": "event687", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 687." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event688": { + "title": "event688", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 688." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event689": { + "title": "event689", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 689." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event690": { + "title": "event690", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 690." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event691": { + "title": "event691", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 691." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event692": { + "title": "event692", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 692." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event693": { + "title": "event693", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 693." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event694": { + "title": "event694", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 694." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event695": { + "title": "event695", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 695." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event696": { + "title": "event696", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 696." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event697": { + "title": "event697", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 697." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event698": { + "title": "event698", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 698." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event699": { + "title": "event699", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 699." + }, + "https://ns.adobe.com/experience/analytics/event601to700/event700": { + "title": "event700", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 700." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event701": { + "title": "event701", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 701." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event702": { + "title": "event702", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 702." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event703": { + "title": "event703", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 703." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event704": { + "title": "event704", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 704." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event705": { + "title": "event705", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 705." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event706": { + "title": "event706", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 706." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event707": { + "title": "event707", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 707." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event708": { + "title": "event708", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 708." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event709": { + "title": "event709", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 709." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event710": { + "title": "event710", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 710." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event711": { + "title": "event711", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 711." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event712": { + "title": "event712", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 712." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event713": { + "title": "event713", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 713." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event714": { + "title": "event714", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 714." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event715": { + "title": "event715", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 715." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event716": { + "title": "event716", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 716." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event717": { + "title": "event717", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 717." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event718": { + "title": "event718", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 718." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event719": { + "title": "event719", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 719." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event720": { + "title": "event720", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 720." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event721": { + "title": "event721", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 721." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event722": { + "title": "event722", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 722." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event723": { + "title": "event723", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 723." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event724": { + "title": "event724", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 724." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event725": { + "title": "event725", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 725." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event726": { + "title": "event726", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 726." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event727": { + "title": "event727", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 727." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event728": { + "title": "event728", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 728." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event729": { + "title": "event729", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 729." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event730": { + "title": "event730", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 730." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event731": { + "title": "event731", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 731." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event732": { + "title": "event732", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 732." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event733": { + "title": "event733", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 733." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event734": { + "title": "event734", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 734." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event735": { + "title": "event735", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 735." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event736": { + "title": "event736", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 736." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event737": { + "title": "event737", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 737." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event738": { + "title": "event738", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 738." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event739": { + "title": "event739", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 739." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event740": { + "title": "event740", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 740." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event741": { + "title": "event741", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 741." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event742": { + "title": "event742", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 742." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event743": { + "title": "event743", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 743." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event744": { + "title": "event744", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 744." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event745": { + "title": "event745", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 745." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event746": { + "title": "event746", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 746." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event747": { + "title": "event747", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 747." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event748": { + "title": "event748", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 748." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event749": { + "title": "event749", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 749." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event750": { + "title": "event750", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 750." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event751": { + "title": "event751", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 751." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event752": { + "title": "event752", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 752." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event753": { + "title": "event753", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 753." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event754": { + "title": "event754", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 754." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event755": { + "title": "event755", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 755." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event756": { + "title": "event756", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 756." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event757": { + "title": "event757", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 757." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event758": { + "title": "event758", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 758." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event759": { + "title": "event759", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 759." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event760": { + "title": "event760", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 760." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event761": { + "title": "event761", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 761." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event762": { + "title": "event762", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 762." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event763": { + "title": "event763", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 763." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event764": { + "title": "event764", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 764." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event765": { + "title": "event765", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 765." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event766": { + "title": "event766", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 766." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event767": { + "title": "event767", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 767." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event768": { + "title": "event768", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 768." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event769": { + "title": "event769", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 769." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event770": { + "title": "event770", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 770." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event771": { + "title": "event771", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 771." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event772": { + "title": "event772", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 772." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event773": { + "title": "event773", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 773." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event774": { + "title": "event774", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 774." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event775": { + "title": "event775", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 775." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event776": { + "title": "event776", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 776." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event777": { + "title": "event777", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 777." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event778": { + "title": "event778", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 778." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event779": { + "title": "event779", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 779." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event780": { + "title": "event780", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 780." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event781": { + "title": "event781", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 781." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event782": { + "title": "event782", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 782." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event783": { + "title": "event783", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 783." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event784": { + "title": "event784", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 784." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event785": { + "title": "event785", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 785." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event786": { + "title": "event786", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 786." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event787": { + "title": "event787", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 787." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event788": { + "title": "event788", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 788." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event789": { + "title": "event789", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 789." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event790": { + "title": "event790", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 790." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event791": { + "title": "event791", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 791." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event792": { + "title": "event792", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 792." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event793": { + "title": "event793", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 793." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event794": { + "title": "event794", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 794." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event795": { + "title": "event795", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 795." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event796": { + "title": "event796", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 796." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event797": { + "title": "event797", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 797." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event798": { + "title": "event798", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 798." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event799": { + "title": "event799", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 799." + }, + "https://ns.adobe.com/experience/analytics/event701to800/event800": { + "title": "event800", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 800." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event801": { + "title": "event801", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 801." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event802": { + "title": "event802", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 802." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event803": { + "title": "event803", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 803." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event804": { + "title": "event804", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 804." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event805": { + "title": "event805", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 805." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event806": { + "title": "event806", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 806." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event807": { + "title": "event807", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 807." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event808": { + "title": "event808", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 808." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event809": { + "title": "event809", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 809." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event810": { + "title": "event810", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 810." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event811": { + "title": "event811", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 811." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event812": { + "title": "event812", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 812." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event813": { + "title": "event813", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 813." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event814": { + "title": "event814", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 814." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event815": { + "title": "event815", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 815." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event816": { + "title": "event816", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 816." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event817": { + "title": "event817", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 817." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event818": { + "title": "event818", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 818." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event819": { + "title": "event819", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 819." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event820": { + "title": "event820", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 820." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event821": { + "title": "event821", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 821." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event822": { + "title": "event822", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 822." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event823": { + "title": "event823", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 823." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event824": { + "title": "event824", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 824." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event825": { + "title": "event825", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 825." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event826": { + "title": "event826", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 826." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event827": { + "title": "event827", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 827." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event828": { + "title": "event828", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 828." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event829": { + "title": "event829", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 829." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event830": { + "title": "event830", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 830." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event831": { + "title": "event831", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 831." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event832": { + "title": "event832", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 832." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event833": { + "title": "event833", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 833." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event834": { + "title": "event834", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 834." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event835": { + "title": "event835", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 835." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event836": { + "title": "event836", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 836." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event837": { + "title": "event837", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 837." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event838": { + "title": "event838", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 838." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event839": { + "title": "event839", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 839." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event840": { + "title": "event840", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 840." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event841": { + "title": "event841", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 841." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event842": { + "title": "event842", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 842." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event843": { + "title": "event843", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 843." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event844": { + "title": "event844", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 844." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event845": { + "title": "event845", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 845." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event846": { + "title": "event846", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 846." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event847": { + "title": "event847", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 847." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event848": { + "title": "event848", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 848." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event849": { + "title": "event849", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 849." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event850": { + "title": "event850", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 850." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event851": { + "title": "event851", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 851." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event852": { + "title": "event852", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 852." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event853": { + "title": "event853", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 853." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event854": { + "title": "event854", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 854." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event855": { + "title": "event855", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 855." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event856": { + "title": "event856", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 856." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event857": { + "title": "event857", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 857." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event858": { + "title": "event858", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 858." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event859": { + "title": "event859", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 859." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event860": { + "title": "event860", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 860." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event861": { + "title": "event861", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 861." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event862": { + "title": "event862", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 862." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event863": { + "title": "event863", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 863." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event864": { + "title": "event864", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 864." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event865": { + "title": "event865", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 865." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event866": { + "title": "event866", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 866." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event867": { + "title": "event867", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 867." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event868": { + "title": "event868", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 868." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event869": { + "title": "event869", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 869." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event870": { + "title": "event870", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 870." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event871": { + "title": "event871", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 871." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event872": { + "title": "event872", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 872." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event873": { + "title": "event873", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 873." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event874": { + "title": "event874", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 874." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event875": { + "title": "event875", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 875." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event876": { + "title": "event876", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 876." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event877": { + "title": "event877", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 877." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event878": { + "title": "event878", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 878." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event879": { + "title": "event879", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 879." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event880": { + "title": "event880", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 880." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event881": { + "title": "event881", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 881." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event882": { + "title": "event882", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 882." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event883": { + "title": "event883", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 883." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event884": { + "title": "event884", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 884." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event885": { + "title": "event885", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 885." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event886": { + "title": "event886", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 886." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event887": { + "title": "event887", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 887." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event888": { + "title": "event888", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 888." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event889": { + "title": "event889", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 889." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event890": { + "title": "event890", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 890." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event891": { + "title": "event891", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 891." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event892": { + "title": "event892", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 892." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event893": { + "title": "event893", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 893." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event894": { + "title": "event894", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 894." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event895": { + "title": "event895", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 895." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event896": { + "title": "event896", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 896." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event897": { + "title": "event897", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 897." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event898": { + "title": "event898", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 898." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event899": { + "title": "event899", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 899." + }, + "https://ns.adobe.com/experience/analytics/event801to900/event900": { + "title": "event900", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 900." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event901": { + "title": "event901", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 901." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event902": { + "title": "event902", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 902." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event903": { + "title": "event903", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 903." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event904": { + "title": "event904", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 904." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event905": { + "title": "event905", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 905." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event906": { + "title": "event906", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 906." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event907": { + "title": "event907", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 907." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event908": { + "title": "event908", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 908." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event909": { + "title": "event909", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 909." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event910": { + "title": "event910", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 910." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event911": { + "title": "event911", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 911." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event912": { + "title": "event912", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 912." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event913": { + "title": "event913", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 913." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event914": { + "title": "event914", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 914." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event915": { + "title": "event915", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 915." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event916": { + "title": "event916", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 916." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event917": { + "title": "event917", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 917." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event918": { + "title": "event918", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 918." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event919": { + "title": "event919", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 919." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event920": { + "title": "event920", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 920." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event921": { + "title": "event921", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 921." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event922": { + "title": "event922", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 922." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event923": { + "title": "event923", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 923." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event924": { + "title": "event924", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 924." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event925": { + "title": "event925", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 925." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event926": { + "title": "event926", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 926." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event927": { + "title": "event927", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 927." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event928": { + "title": "event928", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 928." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event929": { + "title": "event929", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 929." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event930": { + "title": "event930", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 930." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event931": { + "title": "event931", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 931." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event932": { + "title": "event932", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 932." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event933": { + "title": "event933", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 933." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event934": { + "title": "event934", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 934." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event935": { + "title": "event935", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 935." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event936": { + "title": "event936", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 936." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event937": { + "title": "event937", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 937." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event938": { + "title": "event938", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 938." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event939": { + "title": "event939", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 939." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event940": { + "title": "event940", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 940." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event941": { + "title": "event941", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 941." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event942": { + "title": "event942", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 942." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event943": { + "title": "event943", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 943." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event944": { + "title": "event944", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 944." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event945": { + "title": "event945", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 945." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event946": { + "title": "event946", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 946." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event947": { + "title": "event947", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 947." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event948": { + "title": "event948", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 948." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event949": { + "title": "event949", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 949." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event950": { + "title": "event950", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 950." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event951": { + "title": "event951", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 951." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event952": { + "title": "event952", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 952." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event953": { + "title": "event953", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 953." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event954": { + "title": "event954", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 954." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event955": { + "title": "event955", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 955." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event956": { + "title": "event956", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 956." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event957": { + "title": "event957", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 957." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event958": { + "title": "event958", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 958." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event959": { + "title": "event959", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 959." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event960": { + "title": "event960", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 960." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event961": { + "title": "event961", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 961." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event962": { + "title": "event962", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 962." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event963": { + "title": "event963", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 963." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event964": { + "title": "event964", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 964." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event965": { + "title": "event965", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 965." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event966": { + "title": "event966", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 966." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event967": { + "title": "event967", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 967." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event968": { + "title": "event968", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 968." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event969": { + "title": "event969", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 969." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event970": { + "title": "event970", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 970." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event971": { + "title": "event971", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 971." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event972": { + "title": "event972", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 972." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event973": { + "title": "event973", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 973." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event974": { + "title": "event974", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 974." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event975": { + "title": "event975", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 975." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event976": { + "title": "event976", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 976." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event977": { + "title": "event977", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 977." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event978": { + "title": "event978", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 978." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event979": { + "title": "event979", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 979." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event980": { + "title": "event980", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 980." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event981": { + "title": "event981", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 981." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event982": { + "title": "event982", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 982." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event983": { + "title": "event983", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 983." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event984": { + "title": "event984", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 984." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event985": { + "title": "event985", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 985." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event986": { + "title": "event986", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 986." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event987": { + "title": "event987", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 987." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event988": { + "title": "event988", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 988." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event989": { + "title": "event989", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 989." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event990": { + "title": "event990", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 990." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event991": { + "title": "event991", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 991." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event992": { + "title": "event992", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 992." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event993": { + "title": "event993", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 993." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event994": { + "title": "event994", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 994." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event995": { + "title": "event995", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 995." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event996": { + "title": "event996", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 996." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event997": { + "title": "event997", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 997." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event998": { + "title": "event998", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 998." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event999": { + "title": "event999", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 999." + }, + "https://ns.adobe.com/experience/analytics/event901to1000/event1000": { + "title": "event1000", + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Custom event 1000." + } + } + } + }, + "allOf": [{ + "$ref": "#/definitions/customevents" + }] +} diff --git a/extensions/adobe/experience/analytics/experienceevent.schema.json b/extensions/adobe/experience/analytics/experienceevent.schema.json index 3da19c6228..ec48e3cbd0 100644 --- a/extensions/adobe/experience/analytics/experienceevent.schema.json +++ b/extensions/adobe/experience/analytics/experienceevent.schema.json @@ -5,8 +5,7 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": - "https://ns.adobe.com/xdm-extensions/adobe/experience/analytics/analytics-extensions", + "$id": "https://ns.adobe.com/experience/analytics/experienceevent", "$schema": "http://json-schema.org/draft-06/schema#", "title": "Adobe Analytics Cloud Experience Event Extension", "type": "object", @@ -15,7670 +14,15 @@ "definitions": { "experienceevent": { "properties": { - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar1": { - "title": "eVar1", - "type": "string", - "description": "Custom conversion variable 1." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar2": { - "title": "eVar2", - "type": "string", - "description": "Custom conversion variable 2." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar3": { - "title": "eVar3", - "type": "string", - "description": "Custom conversion variable 3." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar4": { - "title": "eVar4", - "type": "string", - "description": "Custom conversion variable 4." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar5": { - "title": "eVar5", - "type": "string", - "description": "Custom conversion variable 5." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar6": { - "title": "eVar6", - "type": "string", - "description": "Custom conversion variable 6." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar7": { - "title": "eVar7", - "type": "string", - "description": "Custom conversion variable 7." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar8": { - "title": "eVar8", - "type": "string", - "description": "Custom conversion variable 8." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar9": { - "title": "eVar9", - "type": "string", - "description": "Custom conversion variable 9." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar10": { - "title": "eVar10", - "type": "string", - "description": "Custom conversion variable 10." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar11": { - "title": "eVar11", - "type": "string", - "description": "Custom conversion variable 11." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar12": { - "title": "eVar12", - "type": "string", - "description": "Custom conversion variable 12." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar13": { - "title": "eVar13", - "type": "string", - "description": "Custom conversion variable 13." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar14": { - "title": "eVar14", - "type": "string", - "description": "Custom conversion variable 14." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar15": { - "title": "eVar15", - "type": "string", - "description": "Custom conversion variable 15." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar16": { - "title": "eVar16", - "type": "string", - "description": "Custom conversion variable 16." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar17": { - "title": "eVar17", - "type": "string", - "description": "Custom conversion variable 17." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar18": { - "title": "eVar18", - "type": "string", - "description": "Custom conversion variable 18." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar19": { - "title": "eVar19", - "type": "string", - "description": "Custom conversion variable 19." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar20": { - "title": "eVar20", - "type": "string", - "description": "Custom conversion variable 20." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar21": { - "title": "eVar21", - "type": "string", - "description": "Custom conversion variable 21." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar22": { - "title": "eVar22", - "type": "string", - "description": "Custom conversion variable 22." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar23": { - "title": "eVar23", - "type": "string", - "description": "Custom conversion variable 23." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar24": { - "title": "eVar24", - "type": "string", - "description": "Custom conversion variable 24." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar25": { - "title": "eVar25", - "type": "string", - "description": "Custom conversion variable 25." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar26": { - "title": "eVar26", - "type": "string", - "description": "Custom conversion variable 26." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar27": { - "title": "eVar27", - "type": "string", - "description": "Custom conversion variable 27." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar28": { - "title": "eVar28", - "type": "string", - "description": "Custom conversion variable 28." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar29": { - "title": "eVar29", - "type": "string", - "description": "Custom conversion variable 29." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar30": { - "title": "eVar30", - "type": "string", - "description": "Custom conversion variable 30." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar31": { - "title": "eVar31", - "type": "string", - "description": "Custom conversion variable 31." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar32": { - "title": "eVar32", - "type": "string", - "description": "Custom conversion variable 32." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar33": { - "title": "eVar33", - "type": "string", - "description": "Custom conversion variable 33." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar34": { - "title": "eVar34", - "type": "string", - "description": "Custom conversion variable 34." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar35": { - "title": "eVar35", - "type": "string", - "description": "Custom conversion variable 35." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar36": { - "title": "eVar36", - "type": "string", - "description": "Custom conversion variable 36." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar37": { - "title": "eVar37", - "type": "string", - "description": "Custom conversion variable 37." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar38": { - "title": "eVar38", - "type": "string", - "description": "Custom conversion variable 38." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar39": { - "title": "eVar39", - "type": "string", - "description": "Custom conversion variable 39." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar40": { - "title": "eVar40", - "type": "string", - "description": "Custom conversion variable 40." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar41": { - "title": "eVar41", - "type": "string", - "description": "Custom conversion variable 41." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar42": { - "title": "eVar42", - "type": "string", - "description": "Custom conversion variable 42." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar43": { - "title": "eVar43", - "type": "string", - "description": "Custom conversion variable 43." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar44": { - "title": "eVar44", - "type": "string", - "description": "Custom conversion variable 44." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar45": { - "title": "eVar45", - "type": "string", - "description": "Custom conversion variable 45." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar46": { - "title": "eVar46", - "type": "string", - "description": "Custom conversion variable 46." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar47": { - "title": "eVar47", - "type": "string", - "description": "Custom conversion variable 47." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar48": { - "title": "eVar48", - "type": "string", - "description": "Custom conversion variable 48." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar49": { - "title": "eVar49", - "type": "string", - "description": "Custom conversion variable 49." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar50": { - "title": "eVar50", - "type": "string", - "description": "Custom conversion variable 50." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar51": { - "title": "eVar51", - "type": "string", - "description": "Custom conversion variable 51." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar52": { - "title": "eVar52", - "type": "string", - "description": "Custom conversion variable 52." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar53": { - "title": "eVar53", - "type": "string", - "description": "Custom conversion variable 53." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar54": { - "title": "eVar54", - "type": "string", - "description": "Custom conversion variable 54." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar55": { - "title": "eVar55", - "type": "string", - "description": "Custom conversion variable 55." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar56": { - "title": "eVar56", - "type": "string", - "description": "Custom conversion variable 56." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar57": { - "title": "eVar57", - "type": "string", - "description": "Custom conversion variable 57." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar58": { - "title": "eVar58", - "type": "string", - "description": "Custom conversion variable 58." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar59": { - "title": "eVar59", - "type": "string", - "description": "Custom conversion variable 59." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar60": { - "title": "eVar60", - "type": "string", - "description": "Custom conversion variable 60." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar61": { - "title": "eVar61", - "type": "string", - "description": "Custom conversion variable 61." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar62": { - "title": "eVar62", - "type": "string", - "description": "Custom conversion variable 62." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar63": { - "title": "eVar63", - "type": "string", - "description": "Custom conversion variable 63." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar64": { - "title": "eVar64", - "type": "string", - "description": "Custom conversion variable 64." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar65": { - "title": "eVar65", - "type": "string", - "description": "Custom conversion variable 65." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar66": { - "title": "eVar66", - "type": "string", - "description": "Custom conversion variable 66." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar67": { - "title": "eVar67", - "type": "string", - "description": "Custom conversion variable 67." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar68": { - "title": "eVar68", - "type": "string", - "description": "Custom conversion variable 68." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar69": { - "title": "eVar69", - "type": "string", - "description": "Custom conversion variable 69." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar70": { - "title": "eVar70", - "type": "string", - "description": "Custom conversion variable 70." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar71": { - "title": "eVar71", - "type": "string", - "description": "Custom conversion variable 71." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar72": { - "title": "eVar72", - "type": "string", - "description": "Custom conversion variable 72." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar73": { - "title": "eVar73", - "type": "string", - "description": "Custom conversion variable 73." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar74": { - "title": "eVar74", - "type": "string", - "description": "Custom conversion variable 74." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar75": { - "title": "eVar75", - "type": "string", - "description": "Custom conversion variable 75." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar76": { - "title": "eVar76", - "type": "string", - "description": "Custom conversion variable 76." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar77": { - "title": "eVar77", - "type": "string", - "description": "Custom conversion variable 77." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar78": { - "title": "eVar78", - "type": "string", - "description": "Custom conversion variable 78." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar79": { - "title": "eVar79", - "type": "string", - "description": "Custom conversion variable 79." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar80": { - "title": "eVar80", - "type": "string", - "description": "Custom conversion variable 80." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar81": { - "title": "eVar81", - "type": "string", - "description": "Custom conversion variable 81." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar82": { - "title": "eVar82", - "type": "string", - "description": "Custom conversion variable 82." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar83": { - "title": "eVar83", - "type": "string", - "description": "Custom conversion variable 83." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar84": { - "title": "eVar84", - "type": "string", - "description": "Custom conversion variable 84." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar85": { - "title": "eVar85", - "type": "string", - "description": "Custom conversion variable 85." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar86": { - "title": "eVar86", - "type": "string", - "description": "Custom conversion variable 86." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar87": { - "title": "eVar87", - "type": "string", - "description": "Custom conversion variable 87." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar88": { - "title": "eVar88", - "type": "string", - "description": "Custom conversion variable 88." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar89": { - "title": "eVar89", - "type": "string", - "description": "Custom conversion variable 89." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar90": { - "title": "eVar90", - "type": "string", - "description": "Custom conversion variable 90." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar91": { - "title": "eVar91", - "type": "string", - "description": "Custom conversion variable 91." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar92": { - "title": "eVar92", - "type": "string", - "description": "Custom conversion variable 92." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar93": { - "title": "eVar93", - "type": "string", - "description": "Custom conversion variable 93." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar94": { - "title": "eVar94", - "type": "string", - "description": "Custom conversion variable 94." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar95": { - "title": "eVar95", - "type": "string", - "description": "Custom conversion variable 95." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar96": { - "title": "eVar96", - "type": "string", - "description": "Custom conversion variable 96." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar97": { - "title": "eVar97", - "type": "string", - "description": "Custom conversion variable 97." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar98": { - "title": "eVar98", - "type": "string", - "description": "Custom conversion variable 98." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar99": { - "title": "eVar99", - "type": "string", - "description": "Custom conversion variable 99." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar100": { - "title": "eVar100", - "type": "string", - "description": "Custom conversion variable 100." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar101": { - "title": "eVar101", - "type": "string", - "description": "Custom conversion variable 101." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar102": { - "title": "eVar102", - "type": "string", - "description": "Custom conversion variable 102." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar103": { - "title": "eVar103", - "type": "string", - "description": "Custom conversion variable 103." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar104": { - "title": "eVar104", - "type": "string", - "description": "Custom conversion variable 104." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar105": { - "title": "eVar105", - "type": "string", - "description": "Custom conversion variable 105." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar106": { - "title": "eVar106", - "type": "string", - "description": "Custom conversion variable 106." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar107": { - "title": "eVar107", - "type": "string", - "description": "Custom conversion variable 107." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar108": { - "title": "eVar108", - "type": "string", - "description": "Custom conversion variable 108." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar109": { - "title": "eVar109", - "type": "string", - "description": "Custom conversion variable 109." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar110": { - "title": "eVar110", - "type": "string", - "description": "Custom conversion variable 110." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar111": { - "title": "eVar111", - "type": "string", - "description": "Custom conversion variable 111." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar112": { - "title": "eVar112", - "type": "string", - "description": "Custom conversion variable 112." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar113": { - "title": "eVar113", - "type": "string", - "description": "Custom conversion variable 113." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar114": { - "title": "eVar114", - "type": "string", - "description": "Custom conversion variable 114." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar115": { - "title": "eVar115", - "type": "string", - "description": "Custom conversion variable 115." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar116": { - "title": "eVar116", - "type": "string", - "description": "Custom conversion variable 116." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar117": { - "title": "eVar117", - "type": "string", - "description": "Custom conversion variable 117." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar118": { - "title": "eVar118", - "type": "string", - "description": "Custom conversion variable 118." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar119": { - "title": "eVar119", - "type": "string", - "description": "Custom conversion variable 119." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar120": { - "title": "eVar120", - "type": "string", - "description": "Custom conversion variable 120." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar121": { - "title": "eVar121", - "type": "string", - "description": "Custom conversion variable 121." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar122": { - "title": "eVar122", - "type": "string", - "description": "Custom conversion variable 122." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar123": { - "title": "eVar123", - "type": "string", - "description": "Custom conversion variable 123." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar124": { - "title": "eVar124", - "type": "string", - "description": "Custom conversion variable 124." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar125": { - "title": "eVar125", - "type": "string", - "description": "Custom conversion variable 125." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar126": { - "title": "eVar126", - "type": "string", - "description": "Custom conversion variable 126." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar127": { - "title": "eVar127", - "type": "string", - "description": "Custom conversion variable 127." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar128": { - "title": "eVar128", - "type": "string", - "description": "Custom conversion variable 128." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar129": { - "title": "eVar129", - "type": "string", - "description": "Custom conversion variable 129." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar130": { - "title": "eVar130", - "type": "string", - "description": "Custom conversion variable 130." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar131": { - "title": "eVar131", - "type": "string", - "description": "Custom conversion variable 131." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar132": { - "title": "eVar132", - "type": "string", - "description": "Custom conversion variable 132." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar133": { - "title": "eVar133", - "type": "string", - "description": "Custom conversion variable 133." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar134": { - "title": "eVar134", - "type": "string", - "description": "Custom conversion variable 134." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar135": { - "title": "eVar135", - "type": "string", - "description": "Custom conversion variable 135." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar136": { - "title": "eVar136", - "type": "string", - "description": "Custom conversion variable 136." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar137": { - "title": "eVar137", - "type": "string", - "description": "Custom conversion variable 137." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar138": { - "title": "eVar138", - "type": "string", - "description": "Custom conversion variable 138." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar139": { - "title": "eVar139", - "type": "string", - "description": "Custom conversion variable 139." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar140": { - "title": "eVar140", - "type": "string", - "description": "Custom conversion variable 140." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar141": { - "title": "eVar141", - "type": "string", - "description": "Custom conversion variable 141." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar142": { - "title": "eVar142", - "type": "string", - "description": "Custom conversion variable 142." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar143": { - "title": "eVar143", - "type": "string", - "description": "Custom conversion variable 143." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar144": { - "title": "eVar144", - "type": "string", - "description": "Custom conversion variable 144." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar145": { - "title": "eVar145", - "type": "string", - "description": "Custom conversion variable 145." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar146": { - "title": "eVar146", - "type": "string", - "description": "Custom conversion variable 146." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar147": { - "title": "eVar147", - "type": "string", - "description": "Custom conversion variable 147." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar148": { - "title": "eVar148", - "type": "string", - "description": "Custom conversion variable 148." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar149": { - "title": "eVar149", - "type": "string", - "description": "Custom conversion variable 149." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar150": { - "title": "eVar150", - "type": "string", - "description": "Custom conversion variable 150." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar151": { - "title": "eVar151", - "type": "string", - "description": "Custom conversion variable 151." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar152": { - "title": "eVar152", - "type": "string", - "description": "Custom conversion variable 152." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar153": { - "title": "eVar153", - "type": "string", - "description": "Custom conversion variable 153." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar154": { - "title": "eVar154", - "type": "string", - "description": "Custom conversion variable 154." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar155": { - "title": "eVar155", - "type": "string", - "description": "Custom conversion variable 155." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar156": { - "title": "eVar156", - "type": "string", - "description": "Custom conversion variable 156." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar157": { - "title": "eVar157", - "type": "string", - "description": "Custom conversion variable 157." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar158": { - "title": "eVar158", - "type": "string", - "description": "Custom conversion variable 158." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar159": { - "title": "eVar159", - "type": "string", - "description": "Custom conversion variable 159." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar160": { - "title": "eVar160", - "type": "string", - "description": "Custom conversion variable 160." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar161": { - "title": "eVar161", - "type": "string", - "description": "Custom conversion variable 161." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar162": { - "title": "eVar162", - "type": "string", - "description": "Custom conversion variable 162." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar163": { - "title": "eVar163", - "type": "string", - "description": "Custom conversion variable 163." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar164": { - "title": "eVar164", - "type": "string", - "description": "Custom conversion variable 164." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar165": { - "title": "eVar165", - "type": "string", - "description": "Custom conversion variable 165." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar166": { - "title": "eVar166", - "type": "string", - "description": "Custom conversion variable 166." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar167": { - "title": "eVar167", - "type": "string", - "description": "Custom conversion variable 167." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar168": { - "title": "eVar168", - "type": "string", - "description": "Custom conversion variable 168." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar169": { - "title": "eVar169", - "type": "string", - "description": "Custom conversion variable 169." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar170": { - "title": "eVar170", - "type": "string", - "description": "Custom conversion variable 170." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar171": { - "title": "eVar171", - "type": "string", - "description": "Custom conversion variable 171." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar172": { - "title": "eVar172", - "type": "string", - "description": "Custom conversion variable 172." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar173": { - "title": "eVar173", - "type": "string", - "description": "Custom conversion variable 173." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar174": { - "title": "eVar174", - "type": "string", - "description": "Custom conversion variable 174." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar175": { - "title": "eVar175", - "type": "string", - "description": "Custom conversion variable 175." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar176": { - "title": "eVar176", - "type": "string", - "description": "Custom conversion variable 176." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar177": { - "title": "eVar177", - "type": "string", - "description": "Custom conversion variable 177." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar178": { - "title": "eVar178", - "type": "string", - "description": "Custom conversion variable 178." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar179": { - "title": "eVar179", - "type": "string", - "description": "Custom conversion variable 179." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar180": { - "title": "eVar180", - "type": "string", - "description": "Custom conversion variable 180." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar181": { - "title": "eVar181", - "type": "string", - "description": "Custom conversion variable 181." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar182": { - "title": "eVar182", - "type": "string", - "description": "Custom conversion variable 182." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar183": { - "title": "eVar183", - "type": "string", - "description": "Custom conversion variable 183." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar184": { - "title": "eVar184", - "type": "string", - "description": "Custom conversion variable 184." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar185": { - "title": "eVar185", - "type": "string", - "description": "Custom conversion variable 185." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar186": { - "title": "eVar186", - "type": "string", - "description": "Custom conversion variable 186." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar187": { - "title": "eVar187", - "type": "string", - "description": "Custom conversion variable 187." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar188": { - "title": "eVar188", - "type": "string", - "description": "Custom conversion variable 188." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar189": { - "title": "eVar189", - "type": "string", - "description": "Custom conversion variable 189." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar190": { - "title": "eVar190", - "type": "string", - "description": "Custom conversion variable 190." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar191": { - "title": "eVar191", - "type": "string", - "description": "Custom conversion variable 191." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar192": { - "title": "eVar192", - "type": "string", - "description": "Custom conversion variable 192." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar193": { - "title": "eVar193", - "type": "string", - "description": "Custom conversion variable 193." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar194": { - "title": "eVar194", - "type": "string", - "description": "Custom conversion variable 194." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar195": { - "title": "eVar195", - "type": "string", - "description": "Custom conversion variable 195." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar196": { - "title": "eVar196", - "type": "string", - "description": "Custom conversion variable 196." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar197": { - "title": "eVar197", - "type": "string", - "description": "Custom conversion variable 197." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar198": { - "title": "eVar198", - "type": "string", - "description": "Custom conversion variable 198." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar199": { - "title": "eVar199", - "type": "string", - "description": "Custom conversion variable 199." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar200": { - "title": "eVar200", - "type": "string", - "description": "Custom conversion variable 200." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar201": { - "title": "eVar201", - "type": "string", - "description": "Custom conversion variable 201." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar202": { - "title": "eVar202", - "type": "string", - "description": "Custom conversion variable 202." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar203": { - "title": "eVar203", - "type": "string", - "description": "Custom conversion variable 203." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar204": { - "title": "eVar204", - "type": "string", - "description": "Custom conversion variable 204." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar205": { - "title": "eVar205", - "type": "string", - "description": "Custom conversion variable 205." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar206": { - "title": "eVar206", - "type": "string", - "description": "Custom conversion variable 206." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar207": { - "title": "eVar207", - "type": "string", - "description": "Custom conversion variable 207." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar208": { - "title": "eVar208", - "type": "string", - "description": "Custom conversion variable 208." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar209": { - "title": "eVar209", - "type": "string", - "description": "Custom conversion variable 209." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar210": { - "title": "eVar210", - "type": "string", - "description": "Custom conversion variable 210." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar211": { - "title": "eVar211", - "type": "string", - "description": "Custom conversion variable 211." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar212": { - "title": "eVar212", - "type": "string", - "description": "Custom conversion variable 212." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar213": { - "title": "eVar213", - "type": "string", - "description": "Custom conversion variable 213." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar214": { - "title": "eVar214", - "type": "string", - "description": "Custom conversion variable 214." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar215": { - "title": "eVar215", - "type": "string", - "description": "Custom conversion variable 215." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar216": { - "title": "eVar216", - "type": "string", - "description": "Custom conversion variable 216." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar217": { - "title": "eVar217", - "type": "string", - "description": "Custom conversion variable 217." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar218": { - "title": "eVar218", - "type": "string", - "description": "Custom conversion variable 218." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar219": { - "title": "eVar219", - "type": "string", - "description": "Custom conversion variable 219." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar220": { - "title": "eVar220", - "type": "string", - "description": "Custom conversion variable 220." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar221": { - "title": "eVar221", - "type": "string", - "description": "Custom conversion variable 221." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar222": { - "title": "eVar222", - "type": "string", - "description": "Custom conversion variable 222." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar223": { - "title": "eVar223", - "type": "string", - "description": "Custom conversion variable 223." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar224": { - "title": "eVar224", - "type": "string", - "description": "Custom conversion variable 224." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar225": { - "title": "eVar225", - "type": "string", - "description": "Custom conversion variable 225." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar226": { - "title": "eVar226", - "type": "string", - "description": "Custom conversion variable 226." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar227": { - "title": "eVar227", - "type": "string", - "description": "Custom conversion variable 227." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar228": { - "title": "eVar228", - "type": "string", - "description": "Custom conversion variable 228." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar229": { - "title": "eVar229", - "type": "string", - "description": "Custom conversion variable 229." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar230": { - "title": "eVar230", - "type": "string", - "description": "Custom conversion variable 230." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar231": { - "title": "eVar231", - "type": "string", - "description": "Custom conversion variable 231." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar232": { - "title": "eVar232", - "type": "string", - "description": "Custom conversion variable 232." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar233": { - "title": "eVar233", - "type": "string", - "description": "Custom conversion variable 233." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar234": { - "title": "eVar234", - "type": "string", - "description": "Custom conversion variable 234." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar235": { - "title": "eVar235", - "type": "string", - "description": "Custom conversion variable 235." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar236": { - "title": "eVar236", - "type": "string", - "description": "Custom conversion variable 236." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar237": { - "title": "eVar237", - "type": "string", - "description": "Custom conversion variable 237." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar238": { - "title": "eVar238", - "type": "string", - "description": "Custom conversion variable 238." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar239": { - "title": "eVar239", - "type": "string", - "description": "Custom conversion variable 239." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar240": { - "title": "eVar240", - "type": "string", - "description": "Custom conversion variable 240." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar241": { - "title": "eVar241", - "type": "string", - "description": "Custom conversion variable 241." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar242": { - "title": "eVar242", - "type": "string", - "description": "Custom conversion variable 242." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar243": { - "title": "eVar243", - "type": "string", - "description": "Custom conversion variable 243." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar244": { - "title": "eVar244", - "type": "string", - "description": "Custom conversion variable 244." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar245": { - "title": "eVar245", - "type": "string", - "description": "Custom conversion variable 245." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar246": { - "title": "eVar246", - "type": "string", - "description": "Custom conversion variable 246." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar247": { - "title": "eVar247", - "type": "string", - "description": "Custom conversion variable 247." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar248": { - "title": "eVar248", - "type": "string", - "description": "Custom conversion variable 248." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar249": { - "title": "eVar249", - "type": "string", - "description": "Custom conversion variable 249." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/evars/evar250": { - "title": "eVar250", - "type": "string", - "description": "Custom conversion variable 250." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop1": { - "title": "prop1", - "type": "string", - "description": "Custom property variable 1." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop2": { - "title": "prop2", - "type": "string", - "description": "Custom property variable 2." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop3": { - "title": "prop3", - "type": "string", - "description": "Custom property variable 3." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop4": { - "title": "prop4", - "type": "string", - "description": "Custom property variable 4." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop5": { - "title": "prop5", - "type": "string", - "description": "Custom property variable 5." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop6": { - "title": "prop6", - "type": "string", - "description": "Custom property variable 6." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop7": { - "title": "prop7", - "type": "string", - "description": "Custom property variable 7." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop8": { - "title": "prop8", - "type": "string", - "description": "Custom property variable 8." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop9": { - "title": "prop9", - "type": "string", - "description": "Custom property variable 9." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop10": { - "title": "prop10", - "type": "string", - "description": "Custom property variable 10." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop11": { - "title": "prop11", - "type": "string", - "description": "Custom property variable 11." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop12": { - "title": "prop12", - "type": "string", - "description": "Custom property variable 12." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop13": { - "title": "prop13", - "type": "string", - "description": "Custom property variable 13." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop14": { - "title": "prop14", - "type": "string", - "description": "Custom property variable 14." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop15": { - "title": "prop15", - "type": "string", - "description": "Custom property variable 15." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop16": { - "title": "prop16", - "type": "string", - "description": "Custom property variable 16." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop17": { - "title": "prop17", - "type": "string", - "description": "Custom property variable 17." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop18": { - "title": "prop18", - "type": "string", - "description": "Custom property variable 18." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop19": { - "title": "prop19", - "type": "string", - "description": "Custom property variable 19." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop20": { - "title": "prop20", - "type": "string", - "description": "Custom property variable 20." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop21": { - "title": "prop21", - "type": "string", - "description": "Custom property variable 21." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop22": { - "title": "prop22", - "type": "string", - "description": "Custom property variable 22." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop23": { - "title": "prop23", - "type": "string", - "description": "Custom property variable 23." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop24": { - "title": "prop24", - "type": "string", - "description": "Custom property variable 24." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop25": { - "title": "prop25", - "type": "string", - "description": "Custom property variable 25." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop26": { - "title": "prop26", - "type": "string", - "description": "Custom property variable 26." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop27": { - "title": "prop27", - "type": "string", - "description": "Custom property variable 27." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop28": { - "title": "prop28", - "type": "string", - "description": "Custom property variable 28." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop29": { - "title": "prop29", - "type": "string", - "description": "Custom property variable 29." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop30": { - "title": "prop30", - "type": "string", - "description": "Custom property variable 30." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop31": { - "title": "prop31", - "type": "string", - "description": "Custom property variable 31." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop32": { - "title": "prop32", - "type": "string", - "description": "Custom property variable 32." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop33": { - "title": "prop33", - "type": "string", - "description": "Custom property variable 33." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop34": { - "title": "prop34", - "type": "string", - "description": "Custom property variable 34." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop35": { - "title": "prop35", - "type": "string", - "description": "Custom property variable 35." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop36": { - "title": "prop36", - "type": "string", - "description": "Custom property variable 36." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop37": { - "title": "prop37", - "type": "string", - "description": "Custom property variable 37." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop38": { - "title": "prop38", - "type": "string", - "description": "Custom property variable 38." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop39": { - "title": "prop39", - "type": "string", - "description": "Custom property variable 39." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop40": { - "title": "prop40", - "type": "string", - "description": "Custom property variable 40." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop41": { - "title": "prop41", - "type": "string", - "description": "Custom property variable 41." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop42": { - "title": "prop42", - "type": "string", - "description": "Custom property variable 42." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop43": { - "title": "prop43", - "type": "string", - "description": "Custom property variable 43." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop44": { - "title": "prop44", - "type": "string", - "description": "Custom property variable 44." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop45": { - "title": "prop45", - "type": "string", - "description": "Custom property variable 45." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop46": { - "title": "prop46", - "type": "string", - "description": "Custom property variable 46." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop47": { - "title": "prop47", - "type": "string", - "description": "Custom property variable 47." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop48": { - "title": "prop48", - "type": "string", - "description": "Custom property variable 48." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop49": { - "title": "prop49", - "type": "string", - "description": "Custom property variable 49." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop50": { - "title": "prop50", - "type": "string", - "description": "Custom property variable 50." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop51": { - "title": "prop51", - "type": "string", - "description": "Custom property variable 51." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop52": { - "title": "prop52", - "type": "string", - "description": "Custom property variable 52." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop53": { - "title": "prop53", - "type": "string", - "description": "Custom property variable 53." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop54": { - "title": "prop54", - "type": "string", - "description": "Custom property variable 54." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop55": { - "title": "prop55", - "type": "string", - "description": "Custom property variable 55." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop56": { - "title": "prop56", - "type": "string", - "description": "Custom property variable 56." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop57": { - "title": "prop57", - "type": "string", - "description": "Custom property variable 57." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop58": { - "title": "prop58", - "type": "string", - "description": "Custom property variable 58." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop59": { - "title": "prop59", - "type": "string", - "description": "Custom property variable 59." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop60": { - "title": "prop60", - "type": "string", - "description": "Custom property variable 60." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop61": { - "title": "prop61", - "type": "string", - "description": "Custom property variable 61." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop62": { - "title": "prop62", - "type": "string", - "description": "Custom property variable 62." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop63": { - "title": "prop63", - "type": "string", - "description": "Custom property variable 63." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop64": { - "title": "prop64", - "type": "string", - "description": "Custom property variable 64." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop65": { - "title": "prop65", - "type": "string", - "description": "Custom property variable 65." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop66": { - "title": "prop66", - "type": "string", - "description": "Custom property variable 66." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop67": { - "title": "prop67", - "type": "string", - "description": "Custom property variable 67." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop68": { - "title": "prop68", - "type": "string", - "description": "Custom property variable 68." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop69": { - "title": "prop69", - "type": "string", - "description": "Custom property variable 69." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop70": { - "title": "prop70", - "type": "string", - "description": "Custom property variable 70." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop71": { - "title": "prop71", - "type": "string", - "description": "Custom property variable 71." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop72": { - "title": "prop72", - "type": "string", - "description": "Custom property variable 72." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop73": { - "title": "prop73", - "type": "string", - "description": "Custom property variable 73." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop74": { - "title": "prop74", - "type": "string", - "description": "Custom property variable 74." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/props/prop75": { - "title": "prop75", - "type": "string", - "description": "Custom property variable 75." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop1/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop1/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop2/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop2/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop3/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop3/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop4/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop4/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop5/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop5/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop6/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop6/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop7/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop7/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop8/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop8/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop9/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop9/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop10/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop10/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop11/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop11/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop12/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop12/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop13/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop13/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop14/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop14/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop15/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop15/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop16/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop16/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop17/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop17/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop18/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop18/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop19/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop19/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop20/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop20/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop21/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop21/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop22/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop22/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop23/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop23/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop24/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop24/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop25/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop25/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop26/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop26/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop27/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop27/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop28/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop28/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop29/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop29/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop30/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop30/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop31/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop31/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop32/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop32/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop33/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop33/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop34/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop34/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop35/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop35/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop36/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop36/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop37/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop37/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop38/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop38/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop39/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop39/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop40/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop40/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop41/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop41/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop42/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop42/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop43/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop43/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop44/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop44/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop45/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop45/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop46/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop46/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop47/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop47/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop48/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop48/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop49/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop49/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop50/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop50/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop51/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop51/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop52/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop52/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop53/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop53/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop54/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop54/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop55/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop55/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop56/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop56/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop57/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop57/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop58/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop58/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop59/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop59/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop60/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop60/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop61/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop61/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop62/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop62/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop63/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop63/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop64/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop64/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop65/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop65/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop66/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop66/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop67/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop67/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop68/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop68/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop69/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop69/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop70/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop70/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop71/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop71/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop72/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop72/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop73/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop73/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop74/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop74/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop75/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/listprops/prop75/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier1/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier1/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier2/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier2/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier3/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier3/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier4/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier4/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier5/values": { - "title": "List Values", - "type": "array", - "items": { - "type": "string" - }, - "description": "List of values." - }, - "https://ns.adobe.com/experience/analytics/customdimensions/hierarchies/hier5/delimiter": { - "title": "Original List Delimiter", - "type": "string", - "description": "The original delimiter used to generate the list." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event1": { - "title": "event1", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 1." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event2": { - "title": "event2", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 2." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event3": { - "title": "event3", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 3." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event4": { - "title": "event4", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 4." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event5": { - "title": "event5", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 5." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event6": { - "title": "event6", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 6." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event7": { - "title": "event7", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 7." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event8": { - "title": "event8", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 8." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event9": { - "title": "event9", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 9." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event10": { - "title": "event10", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 10." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event11": { - "title": "event11", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 11." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event12": { - "title": "event12", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 12." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event13": { - "title": "event13", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 13." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event14": { - "title": "event14", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 14." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event15": { - "title": "event15", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 15." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event16": { - "title": "event16", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 16." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event17": { - "title": "event17", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 17." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event18": { - "title": "event18", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 18." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event19": { - "title": "event19", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 19." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event20": { - "title": "event20", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 20." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event21": { - "title": "event21", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 21." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event22": { - "title": "event22", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 22." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event23": { - "title": "event23", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 23." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event24": { - "title": "event24", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 24." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event25": { - "title": "event25", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 25." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event26": { - "title": "event26", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 26." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event27": { - "title": "event27", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 27." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event28": { - "title": "event28", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 28." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event29": { - "title": "event29", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 29." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event30": { - "title": "event30", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 30." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event31": { - "title": "event31", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 31." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event32": { - "title": "event32", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 32." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event33": { - "title": "event33", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 33." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event34": { - "title": "event34", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 34." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event35": { - "title": "event35", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 35." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event36": { - "title": "event36", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 36." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event37": { - "title": "event37", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 37." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event38": { - "title": "event38", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 38." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event39": { - "title": "event39", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 39." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event40": { - "title": "event40", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 40." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event41": { - "title": "event41", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 41." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event42": { - "title": "event42", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 42." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event43": { - "title": "event43", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 43." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event44": { - "title": "event44", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 44." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event45": { - "title": "event45", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 45." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event46": { - "title": "event46", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 46." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event47": { - "title": "event47", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 47." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event48": { - "title": "event48", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 48." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event49": { - "title": "event49", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 49." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event50": { - "title": "event50", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 50." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event51": { - "title": "event51", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 51." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event52": { - "title": "event52", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 52." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event53": { - "title": "event53", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 53." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event54": { - "title": "event54", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 54." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event55": { - "title": "event55", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 55." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event56": { - "title": "event56", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 56." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event57": { - "title": "event57", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 57." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event58": { - "title": "event58", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 58." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event59": { - "title": "event59", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 59." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event60": { - "title": "event60", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 60." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event61": { - "title": "event61", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 61." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event62": { - "title": "event62", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 62." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event63": { - "title": "event63", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 63." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event64": { - "title": "event64", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 64." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event65": { - "title": "event65", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 65." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event66": { - "title": "event66", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 66." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event67": { - "title": "event67", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 67." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event68": { - "title": "event68", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 68." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event69": { - "title": "event69", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 69." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event70": { - "title": "event70", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 70." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event71": { - "title": "event71", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 71." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event72": { - "title": "event72", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 72." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event73": { - "title": "event73", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 73." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event74": { - "title": "event74", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 74." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event75": { - "title": "event75", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 75." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event76": { - "title": "event76", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 76." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event77": { - "title": "event77", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 77." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event78": { - "title": "event78", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 78." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event79": { - "title": "event79", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 79." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event80": { - "title": "event80", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 80." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event81": { - "title": "event81", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 81." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event82": { - "title": "event82", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 82." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event83": { - "title": "event83", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 83." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event84": { - "title": "event84", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 84." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event85": { - "title": "event85", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 85." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event86": { - "title": "event86", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 86." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event87": { - "title": "event87", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 87." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event88": { - "title": "event88", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 88." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event89": { - "title": "event89", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 89." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event90": { - "title": "event90", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 90." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event91": { - "title": "event91", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 91." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event92": { - "title": "event92", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 92." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event93": { - "title": "event93", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 93." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event94": { - "title": "event94", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 94." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event95": { - "title": "event95", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 95." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event96": { - "title": "event96", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 96." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event97": { - "title": "event97", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 97." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event98": { - "title": "event98", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 98." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event99": { - "title": "event99", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 99." - }, - "https://ns.adobe.com/experience/analytics/event1to100/event100": { - "title": "event100", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 100." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event101": { - "title": "event101", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 101." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event102": { - "title": "event102", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 102." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event103": { - "title": "event103", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 103." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event104": { - "title": "event104", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 104." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event105": { - "title": "event105", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 105." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event106": { - "title": "event106", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 106." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event107": { - "title": "event107", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 107." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event108": { - "title": "event108", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 108." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event109": { - "title": "event109", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 109." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event110": { - "title": "event110", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 110." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event111": { - "title": "event111", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 111." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event112": { - "title": "event112", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 112." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event113": { - "title": "event113", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 113." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event114": { - "title": "event114", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 114." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event115": { - "title": "event115", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 115." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event116": { - "title": "event116", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 116." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event117": { - "title": "event117", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 117." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event118": { - "title": "event118", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 118." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event119": { - "title": "event119", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 119." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event120": { - "title": "event120", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 120." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event121": { - "title": "event121", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 121." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event122": { - "title": "event122", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 122." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event123": { - "title": "event123", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 123." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event124": { - "title": "event124", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 124." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event125": { - "title": "event125", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 125." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event126": { - "title": "event126", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 126." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event127": { - "title": "event127", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 127." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event128": { - "title": "event128", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 128." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event129": { - "title": "event129", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 129." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event130": { - "title": "event130", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 130." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event131": { - "title": "event131", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 131." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event132": { - "title": "event132", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 132." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event133": { - "title": "event133", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 133." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event134": { - "title": "event134", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 134." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event135": { - "title": "event135", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 135." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event136": { - "title": "event136", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 136." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event137": { - "title": "event137", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 137." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event138": { - "title": "event138", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 138." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event139": { - "title": "event139", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 139." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event140": { - "title": "event140", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 140." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event141": { - "title": "event141", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 141." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event142": { - "title": "event142", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 142." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event143": { - "title": "event143", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 143." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event144": { - "title": "event144", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 144." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event145": { - "title": "event145", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 145." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event146": { - "title": "event146", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 146." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event147": { - "title": "event147", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 147." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event148": { - "title": "event148", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 148." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event149": { - "title": "event149", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 149." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event150": { - "title": "event150", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 150." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event151": { - "title": "event151", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 151." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event152": { - "title": "event152", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 152." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event153": { - "title": "event153", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 153." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event154": { - "title": "event154", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 154." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event155": { - "title": "event155", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 155." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event156": { - "title": "event156", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 156." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event157": { - "title": "event157", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 157." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event158": { - "title": "event158", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 158." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event159": { - "title": "event159", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 159." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event160": { - "title": "event160", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 160." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event161": { - "title": "event161", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 161." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event162": { - "title": "event162", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 162." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event163": { - "title": "event163", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 163." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event164": { - "title": "event164", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 164." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event165": { - "title": "event165", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 165." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event166": { - "title": "event166", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 166." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event167": { - "title": "event167", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 167." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event168": { - "title": "event168", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 168." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event169": { - "title": "event169", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 169." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event170": { - "title": "event170", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 170." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event171": { - "title": "event171", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 171." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event172": { - "title": "event172", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 172." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event173": { - "title": "event173", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 173." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event174": { - "title": "event174", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 174." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event175": { - "title": "event175", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 175." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event176": { - "title": "event176", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 176." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event177": { - "title": "event177", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 177." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event178": { - "title": "event178", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 178." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event179": { - "title": "event179", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 179." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event180": { - "title": "event180", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 180." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event181": { - "title": "event181", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 181." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event182": { - "title": "event182", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 182." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event183": { - "title": "event183", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 183." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event184": { - "title": "event184", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 184." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event185": { - "title": "event185", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 185." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event186": { - "title": "event186", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 186." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event187": { - "title": "event187", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 187." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event188": { - "title": "event188", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 188." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event189": { - "title": "event189", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 189." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event190": { - "title": "event190", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 190." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event191": { - "title": "event191", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 191." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event192": { - "title": "event192", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 192." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event193": { - "title": "event193", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 193." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event194": { - "title": "event194", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 194." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event195": { - "title": "event195", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 195." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event196": { - "title": "event196", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 196." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event197": { - "title": "event197", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 197." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event198": { - "title": "event198", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 198." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event199": { - "title": "event199", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 199." - }, - "https://ns.adobe.com/experience/analytics/event101to200/event200": { - "title": "event200", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 200." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event201": { - "title": "event201", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 201." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event202": { - "title": "event202", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 202." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event203": { - "title": "event203", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 203." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event204": { - "title": "event204", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 204." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event205": { - "title": "event205", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 205." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event206": { - "title": "event206", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 206." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event207": { - "title": "event207", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 207." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event208": { - "title": "event208", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 208." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event209": { - "title": "event209", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 209." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event210": { - "title": "event210", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 210." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event211": { - "title": "event211", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 211." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event212": { - "title": "event212", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 212." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event213": { - "title": "event213", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 213." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event214": { - "title": "event214", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 214." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event215": { - "title": "event215", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 215." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event216": { - "title": "event216", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 216." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event217": { - "title": "event217", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 217." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event218": { - "title": "event218", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 218." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event219": { - "title": "event219", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 219." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event220": { - "title": "event220", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 220." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event221": { - "title": "event221", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 221." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event222": { - "title": "event222", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 222." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event223": { - "title": "event223", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 223." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event224": { - "title": "event224", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 224." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event225": { - "title": "event225", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 225." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event226": { - "title": "event226", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 226." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event227": { - "title": "event227", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 227." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event228": { - "title": "event228", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 228." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event229": { - "title": "event229", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 229." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event230": { - "title": "event230", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 230." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event231": { - "title": "event231", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 231." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event232": { - "title": "event232", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 232." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event233": { - "title": "event233", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 233." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event234": { - "title": "event234", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 234." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event235": { - "title": "event235", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 235." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event236": { - "title": "event236", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 236." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event237": { - "title": "event237", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 237." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event238": { - "title": "event238", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 238." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event239": { - "title": "event239", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 239." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event240": { - "title": "event240", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 240." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event241": { - "title": "event241", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 241." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event242": { - "title": "event242", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 242." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event243": { - "title": "event243", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 243." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event244": { - "title": "event244", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 244." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event245": { - "title": "event245", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 245." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event246": { - "title": "event246", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 246." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event247": { - "title": "event247", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 247." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event248": { - "title": "event248", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 248." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event249": { - "title": "event249", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 249." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event250": { - "title": "event250", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 250." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event251": { - "title": "event251", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 251." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event252": { - "title": "event252", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 252." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event253": { - "title": "event253", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 253." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event254": { - "title": "event254", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 254." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event255": { - "title": "event255", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 255." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event256": { - "title": "event256", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 256." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event257": { - "title": "event257", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 257." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event258": { - "title": "event258", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 258." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event259": { - "title": "event259", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 259." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event260": { - "title": "event260", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 260." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event261": { - "title": "event261", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 261." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event262": { - "title": "event262", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 262." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event263": { - "title": "event263", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 263." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event264": { - "title": "event264", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 264." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event265": { - "title": "event265", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 265." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event266": { - "title": "event266", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 266." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event267": { - "title": "event267", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 267." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event268": { - "title": "event268", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 268." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event269": { - "title": "event269", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 269." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event270": { - "title": "event270", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 270." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event271": { - "title": "event271", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 271." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event272": { - "title": "event272", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 272." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event273": { - "title": "event273", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 273." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event274": { - "title": "event274", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 274." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event275": { - "title": "event275", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 275." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event276": { - "title": "event276", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 276." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event277": { - "title": "event277", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 277." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event278": { - "title": "event278", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 278." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event279": { - "title": "event279", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 279." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event280": { - "title": "event280", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 280." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event281": { - "title": "event281", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 281." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event282": { - "title": "event282", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 282." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event283": { - "title": "event283", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 283." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event284": { - "title": "event284", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 284." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event285": { - "title": "event285", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 285." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event286": { - "title": "event286", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 286." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event287": { - "title": "event287", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 287." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event288": { - "title": "event288", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 288." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event289": { - "title": "event289", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 289." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event290": { - "title": "event290", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 290." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event291": { - "title": "event291", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 291." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event292": { - "title": "event292", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 292." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event293": { - "title": "event293", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 293." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event294": { - "title": "event294", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 294." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event295": { - "title": "event295", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 295." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event296": { - "title": "event296", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 296." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event297": { - "title": "event297", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 297." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event298": { - "title": "event298", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 298." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event299": { - "title": "event299", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 299." - }, - "https://ns.adobe.com/experience/analytics/event201to300/event300": { - "title": "event300", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 300." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event301": { - "title": "event301", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 301." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event302": { - "title": "event302", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 302." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event303": { - "title": "event303", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 303." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event304": { - "title": "event304", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 304." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event305": { - "title": "event305", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 305." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event306": { - "title": "event306", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 306." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event307": { - "title": "event307", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 307." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event308": { - "title": "event308", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 308." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event309": { - "title": "event309", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 309." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event310": { - "title": "event310", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 310." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event311": { - "title": "event311", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 311." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event312": { - "title": "event312", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 312." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event313": { - "title": "event313", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 313." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event314": { - "title": "event314", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 314." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event315": { - "title": "event315", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 315." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event316": { - "title": "event316", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 316." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event317": { - "title": "event317", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 317." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event318": { - "title": "event318", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 318." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event319": { - "title": "event319", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 319." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event320": { - "title": "event320", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 320." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event321": { - "title": "event321", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 321." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event322": { - "title": "event322", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 322." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event323": { - "title": "event323", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 323." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event324": { - "title": "event324", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 324." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event325": { - "title": "event325", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 325." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event326": { - "title": "event326", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 326." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event327": { - "title": "event327", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 327." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event328": { - "title": "event328", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 328." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event329": { - "title": "event329", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 329." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event330": { - "title": "event330", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 330." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event331": { - "title": "event331", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 331." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event332": { - "title": "event332", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 332." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event333": { - "title": "event333", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 333." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event334": { - "title": "event334", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 334." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event335": { - "title": "event335", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 335." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event336": { - "title": "event336", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 336." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event337": { - "title": "event337", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 337." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event338": { - "title": "event338", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 338." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event339": { - "title": "event339", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 339." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event340": { - "title": "event340", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 340." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event341": { - "title": "event341", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 341." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event342": { - "title": "event342", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 342." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event343": { - "title": "event343", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 343." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event344": { - "title": "event344", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 344." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event345": { - "title": "event345", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 345." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event346": { - "title": "event346", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 346." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event347": { - "title": "event347", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 347." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event348": { - "title": "event348", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 348." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event349": { - "title": "event349", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 349." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event350": { - "title": "event350", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 350." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event351": { - "title": "event351", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 351." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event352": { - "title": "event352", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 352." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event353": { - "title": "event353", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 353." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event354": { - "title": "event354", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 354." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event355": { - "title": "event355", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 355." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event356": { - "title": "event356", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 356." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event357": { - "title": "event357", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 357." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event358": { - "title": "event358", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 358." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event359": { - "title": "event359", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 359." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event360": { - "title": "event360", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 360." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event361": { - "title": "event361", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 361." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event362": { - "title": "event362", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 362." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event363": { - "title": "event363", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 363." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event364": { - "title": "event364", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 364." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event365": { - "title": "event365", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 365." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event366": { - "title": "event366", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 366." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event367": { - "title": "event367", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 367." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event368": { - "title": "event368", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 368." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event369": { - "title": "event369", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 369." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event370": { - "title": "event370", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 370." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event371": { - "title": "event371", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 371." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event372": { - "title": "event372", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 372." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event373": { - "title": "event373", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 373." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event374": { - "title": "event374", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 374." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event375": { - "title": "event375", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 375." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event376": { - "title": "event376", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 376." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event377": { - "title": "event377", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 377." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event378": { - "title": "event378", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 378." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event379": { - "title": "event379", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 379." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event380": { - "title": "event380", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 380." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event381": { - "title": "event381", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 381." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event382": { - "title": "event382", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 382." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event383": { - "title": "event383", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 383." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event384": { - "title": "event384", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 384." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event385": { - "title": "event385", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 385." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event386": { - "title": "event386", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 386." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event387": { - "title": "event387", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 387." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event388": { - "title": "event388", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 388." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event389": { - "title": "event389", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 389." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event390": { - "title": "event390", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 390." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event391": { - "title": "event391", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 391." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event392": { - "title": "event392", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 392." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event393": { - "title": "event393", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 393." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event394": { - "title": "event394", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 394." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event395": { - "title": "event395", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 395." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event396": { - "title": "event396", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 396." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event397": { - "title": "event397", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 397." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event398": { - "title": "event398", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 398." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event399": { - "title": "event399", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 399." - }, - "https://ns.adobe.com/experience/analytics/event301to400/event400": { - "title": "event400", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 400." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event401": { - "title": "event401", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 401." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event402": { - "title": "event402", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 402." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event403": { - "title": "event403", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 403." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event404": { - "title": "event404", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 404." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event405": { - "title": "event405", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 405." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event406": { - "title": "event406", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 406." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event407": { - "title": "event407", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 407." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event408": { - "title": "event408", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 408." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event409": { - "title": "event409", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 409." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event410": { - "title": "event410", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 410." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event411": { - "title": "event411", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 411." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event412": { - "title": "event412", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 412." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event413": { - "title": "event413", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 413." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event414": { - "title": "event414", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 414." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event415": { - "title": "event415", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 415." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event416": { - "title": "event416", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 416." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event417": { - "title": "event417", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 417." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event418": { - "title": "event418", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 418." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event419": { - "title": "event419", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 419." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event420": { - "title": "event420", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 420." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event421": { - "title": "event421", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 421." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event422": { - "title": "event422", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 422." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event423": { - "title": "event423", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 423." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event424": { - "title": "event424", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 424." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event425": { - "title": "event425", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 425." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event426": { - "title": "event426", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 426." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event427": { - "title": "event427", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 427." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event428": { - "title": "event428", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 428." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event429": { - "title": "event429", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 429." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event430": { - "title": "event430", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 430." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event431": { - "title": "event431", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 431." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event432": { - "title": "event432", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 432." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event433": { - "title": "event433", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 433." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event434": { - "title": "event434", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 434." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event435": { - "title": "event435", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 435." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event436": { - "title": "event436", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 436." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event437": { - "title": "event437", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 437." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event438": { - "title": "event438", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 438." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event439": { - "title": "event439", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 439." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event440": { - "title": "event440", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 440." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event441": { - "title": "event441", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 441." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event442": { - "title": "event442", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 442." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event443": { - "title": "event443", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 443." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event444": { - "title": "event444", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 444." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event445": { - "title": "event445", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 445." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event446": { - "title": "event446", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 446." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event447": { - "title": "event447", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 447." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event448": { - "title": "event448", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 448." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event449": { - "title": "event449", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 449." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event450": { - "title": "event450", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 450." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event451": { - "title": "event451", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 451." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event452": { - "title": "event452", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 452." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event453": { - "title": "event453", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 453." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event454": { - "title": "event454", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 454." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event455": { - "title": "event455", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 455." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event456": { - "title": "event456", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 456." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event457": { - "title": "event457", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 457." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event458": { - "title": "event458", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 458." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event459": { - "title": "event459", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 459." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event460": { - "title": "event460", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 460." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event461": { - "title": "event461", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 461." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event462": { - "title": "event462", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 462." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event463": { - "title": "event463", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 463." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event464": { - "title": "event464", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 464." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event465": { - "title": "event465", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 465." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event466": { - "title": "event466", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 466." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event467": { - "title": "event467", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 467." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event468": { - "title": "event468", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 468." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event469": { - "title": "event469", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 469." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event470": { - "title": "event470", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 470." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event471": { - "title": "event471", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 471." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event472": { - "title": "event472", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 472." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event473": { - "title": "event473", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 473." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event474": { - "title": "event474", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 474." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event475": { - "title": "event475", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 475." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event476": { - "title": "event476", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 476." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event477": { - "title": "event477", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 477." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event478": { - "title": "event478", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 478." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event479": { - "title": "event479", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 479." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event480": { - "title": "event480", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 480." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event481": { - "title": "event481", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 481." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event482": { - "title": "event482", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 482." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event483": { - "title": "event483", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 483." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event484": { - "title": "event484", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 484." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event485": { - "title": "event485", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 485." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event486": { - "title": "event486", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 486." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event487": { - "title": "event487", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 487." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event488": { - "title": "event488", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 488." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event489": { - "title": "event489", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 489." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event490": { - "title": "event490", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 490." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event491": { - "title": "event491", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 491." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event492": { - "title": "event492", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 492." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event493": { - "title": "event493", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 493." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event494": { - "title": "event494", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 494." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event495": { - "title": "event495", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 495." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event496": { - "title": "event496", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 496." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event497": { - "title": "event497", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 497." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event498": { - "title": "event498", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 498." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event499": { - "title": "event499", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 499." - }, - "https://ns.adobe.com/experience/analytics/event401to500/event500": { - "title": "event500", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 500." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event501": { - "title": "event501", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 501." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event502": { - "title": "event502", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 502." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event503": { - "title": "event503", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 503." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event504": { - "title": "event504", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 504." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event505": { - "title": "event505", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 505." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event506": { - "title": "event506", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 506." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event507": { - "title": "event507", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 507." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event508": { - "title": "event508", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 508." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event509": { - "title": "event509", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 509." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event510": { - "title": "event510", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 510." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event511": { - "title": "event511", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 511." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event512": { - "title": "event512", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 512." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event513": { - "title": "event513", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 513." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event514": { - "title": "event514", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 514." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event515": { - "title": "event515", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 515." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event516": { - "title": "event516", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 516." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event517": { - "title": "event517", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 517." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event518": { - "title": "event518", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 518." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event519": { - "title": "event519", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 519." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event520": { - "title": "event520", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 520." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event521": { - "title": "event521", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 521." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event522": { - "title": "event522", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 522." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event523": { - "title": "event523", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 523." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event524": { - "title": "event524", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 524." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event525": { - "title": "event525", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 525." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event526": { - "title": "event526", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 526." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event527": { - "title": "event527", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 527." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event528": { - "title": "event528", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 528." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event529": { - "title": "event529", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 529." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event530": { - "title": "event530", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 530." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event531": { - "title": "event531", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 531." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event532": { - "title": "event532", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 532." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event533": { - "title": "event533", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 533." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event534": { - "title": "event534", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 534." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event535": { - "title": "event535", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 535." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event536": { - "title": "event536", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 536." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event537": { - "title": "event537", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 537." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event538": { - "title": "event538", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 538." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event539": { - "title": "event539", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 539." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event540": { - "title": "event540", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 540." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event541": { - "title": "event541", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 541." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event542": { - "title": "event542", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 542." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event543": { - "title": "event543", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 543." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event544": { - "title": "event544", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 544." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event545": { - "title": "event545", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 545." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event546": { - "title": "event546", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 546." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event547": { - "title": "event547", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 547." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event548": { - "title": "event548", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 548." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event549": { - "title": "event549", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 549." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event550": { - "title": "event550", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 550." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event551": { - "title": "event551", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 551." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event552": { - "title": "event552", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 552." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event553": { - "title": "event553", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 553." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event554": { - "title": "event554", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 554." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event555": { - "title": "event555", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 555." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event556": { - "title": "event556", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 556." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event557": { - "title": "event557", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 557." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event558": { - "title": "event558", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 558." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event559": { - "title": "event559", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 559." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event560": { - "title": "event560", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 560." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event561": { - "title": "event561", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 561." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event562": { - "title": "event562", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 562." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event563": { - "title": "event563", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 563." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event564": { - "title": "event564", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 564." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event565": { - "title": "event565", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 565." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event566": { - "title": "event566", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 566." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event567": { - "title": "event567", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 567." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event568": { - "title": "event568", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 568." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event569": { - "title": "event569", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 569." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event570": { - "title": "event570", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 570." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event571": { - "title": "event571", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 571." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event572": { - "title": "event572", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 572." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event573": { - "title": "event573", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 573." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event574": { - "title": "event574", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 574." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event575": { - "title": "event575", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 575." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event576": { - "title": "event576", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 576." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event577": { - "title": "event577", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 577." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event578": { - "title": "event578", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 578." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event579": { - "title": "event579", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 579." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event580": { - "title": "event580", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 580." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event581": { - "title": "event581", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 581." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event582": { - "title": "event582", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 582." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event583": { - "title": "event583", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 583." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event584": { - "title": "event584", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 584." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event585": { - "title": "event585", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 585." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event586": { - "title": "event586", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 586." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event587": { - "title": "event587", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 587." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event588": { - "title": "event588", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 588." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event589": { - "title": "event589", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 589." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event590": { - "title": "event590", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 590." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event591": { - "title": "event591", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 591." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event592": { - "title": "event592", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 592." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event593": { - "title": "event593", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 593." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event594": { - "title": "event594", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 594." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event595": { - "title": "event595", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 595." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event596": { - "title": "event596", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 596." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event597": { - "title": "event597", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 597." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event598": { - "title": "event598", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 598." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event599": { - "title": "event599", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 599." - }, - "https://ns.adobe.com/experience/analytics/event501to600/event600": { - "title": "event600", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 600." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event601": { - "title": "event601", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 601." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event602": { - "title": "event602", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 602." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event603": { - "title": "event603", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 603." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event604": { - "title": "event604", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 604." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event605": { - "title": "event605", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 605." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event606": { - "title": "event606", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 606." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event607": { - "title": "event607", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 607." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event608": { - "title": "event608", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 608." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event609": { - "title": "event609", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 609." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event610": { - "title": "event610", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 610." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event611": { - "title": "event611", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 611." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event612": { - "title": "event612", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 612." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event613": { - "title": "event613", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 613." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event614": { - "title": "event614", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 614." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event615": { - "title": "event615", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 615." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event616": { - "title": "event616", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 616." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event617": { - "title": "event617", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 617." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event618": { - "title": "event618", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 618." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event619": { - "title": "event619", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 619." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event620": { - "title": "event620", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 620." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event621": { - "title": "event621", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 621." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event622": { - "title": "event622", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 622." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event623": { - "title": "event623", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 623." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event624": { - "title": "event624", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 624." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event625": { - "title": "event625", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 625." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event626": { - "title": "event626", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 626." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event627": { - "title": "event627", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 627." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event628": { - "title": "event628", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 628." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event629": { - "title": "event629", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 629." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event630": { - "title": "event630", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 630." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event631": { - "title": "event631", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 631." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event632": { - "title": "event632", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 632." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event633": { - "title": "event633", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 633." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event634": { - "title": "event634", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 634." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event635": { - "title": "event635", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 635." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event636": { - "title": "event636", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 636." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event637": { - "title": "event637", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 637." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event638": { - "title": "event638", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 638." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event639": { - "title": "event639", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 639." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event640": { - "title": "event640", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 640." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event641": { - "title": "event641", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 641." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event642": { - "title": "event642", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 642." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event643": { - "title": "event643", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 643." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event644": { - "title": "event644", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 644." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event645": { - "title": "event645", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 645." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event646": { - "title": "event646", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 646." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event647": { - "title": "event647", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 647." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event648": { - "title": "event648", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 648." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event649": { - "title": "event649", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 649." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event650": { - "title": "event650", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 650." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event651": { - "title": "event651", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 651." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event652": { - "title": "event652", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 652." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event653": { - "title": "event653", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 653." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event654": { - "title": "event654", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 654." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event655": { - "title": "event655", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 655." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event656": { - "title": "event656", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 656." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event657": { - "title": "event657", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 657." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event658": { - "title": "event658", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 658." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event659": { - "title": "event659", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 659." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event660": { - "title": "event660", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 660." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event661": { - "title": "event661", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 661." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event662": { - "title": "event662", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 662." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event663": { - "title": "event663", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 663." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event664": { - "title": "event664", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 664." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event665": { - "title": "event665", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 665." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event666": { - "title": "event666", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 666." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event667": { - "title": "event667", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 667." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event668": { - "title": "event668", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 668." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event669": { - "title": "event669", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 669." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event670": { - "title": "event670", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 670." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event671": { - "title": "event671", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 671." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event672": { - "title": "event672", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 672." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event673": { - "title": "event673", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 673." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event674": { - "title": "event674", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 674." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event675": { - "title": "event675", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 675." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event676": { - "title": "event676", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 676." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event677": { - "title": "event677", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 677." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event678": { - "title": "event678", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 678." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event679": { - "title": "event679", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 679." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event680": { - "title": "event680", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 680." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event681": { - "title": "event681", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 681." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event682": { - "title": "event682", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 682." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event683": { - "title": "event683", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 683." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event684": { - "title": "event684", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 684." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event685": { - "title": "event685", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 685." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event686": { - "title": "event686", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 686." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event687": { - "title": "event687", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 687." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event688": { - "title": "event688", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 688." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event689": { - "title": "event689", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 689." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event690": { - "title": "event690", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 690." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event691": { - "title": "event691", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 691." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event692": { - "title": "event692", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 692." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event693": { - "title": "event693", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 693." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event694": { - "title": "event694", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 694." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event695": { - "title": "event695", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 695." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event696": { - "title": "event696", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 696." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event697": { - "title": "event697", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 697." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event698": { - "title": "event698", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 698." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event699": { - "title": "event699", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 699." - }, - "https://ns.adobe.com/experience/analytics/event601to700/event700": { - "title": "event700", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 700." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event701": { - "title": "event701", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 701." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event702": { - "title": "event702", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 702." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event703": { - "title": "event703", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 703." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event704": { - "title": "event704", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 704." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event705": { - "title": "event705", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 705." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event706": { - "title": "event706", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 706." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event707": { - "title": "event707", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 707." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event708": { - "title": "event708", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 708." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event709": { - "title": "event709", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 709." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event710": { - "title": "event710", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 710." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event711": { - "title": "event711", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 711." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event712": { - "title": "event712", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 712." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event713": { - "title": "event713", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 713." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event714": { - "title": "event714", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 714." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event715": { - "title": "event715", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 715." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event716": { - "title": "event716", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 716." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event717": { - "title": "event717", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 717." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event718": { - "title": "event718", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 718." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event719": { - "title": "event719", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 719." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event720": { - "title": "event720", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 720." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event721": { - "title": "event721", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 721." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event722": { - "title": "event722", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 722." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event723": { - "title": "event723", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 723." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event724": { - "title": "event724", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 724." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event725": { - "title": "event725", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 725." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event726": { - "title": "event726", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 726." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event727": { - "title": "event727", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 727." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event728": { - "title": "event728", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 728." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event729": { - "title": "event729", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 729." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event730": { - "title": "event730", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 730." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event731": { - "title": "event731", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 731." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event732": { - "title": "event732", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 732." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event733": { - "title": "event733", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 733." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event734": { - "title": "event734", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 734." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event735": { - "title": "event735", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 735." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event736": { - "title": "event736", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 736." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event737": { - "title": "event737", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 737." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event738": { - "title": "event738", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 738." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event739": { - "title": "event739", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 739." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event740": { - "title": "event740", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 740." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event741": { - "title": "event741", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 741." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event742": { - "title": "event742", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 742." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event743": { - "title": "event743", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 743." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event744": { - "title": "event744", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 744." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event745": { - "title": "event745", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 745." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event746": { - "title": "event746", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 746." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event747": { - "title": "event747", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 747." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event748": { - "title": "event748", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 748." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event749": { - "title": "event749", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 749." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event750": { - "title": "event750", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 750." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event751": { - "title": "event751", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 751." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event752": { - "title": "event752", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 752." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event753": { - "title": "event753", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 753." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event754": { - "title": "event754", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 754." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event755": { - "title": "event755", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 755." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event756": { - "title": "event756", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 756." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event757": { - "title": "event757", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 757." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event758": { - "title": "event758", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 758." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event759": { - "title": "event759", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 759." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event760": { - "title": "event760", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 760." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event761": { - "title": "event761", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 761." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event762": { - "title": "event762", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 762." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event763": { - "title": "event763", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 763." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event764": { - "title": "event764", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 764." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event765": { - "title": "event765", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 765." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event766": { - "title": "event766", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 766." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event767": { - "title": "event767", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 767." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event768": { - "title": "event768", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 768." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event769": { - "title": "event769", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 769." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event770": { - "title": "event770", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 770." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event771": { - "title": "event771", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 771." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event772": { - "title": "event772", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 772." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event773": { - "title": "event773", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 773." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event774": { - "title": "event774", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 774." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event775": { - "title": "event775", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 775." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event776": { - "title": "event776", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 776." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event777": { - "title": "event777", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 777." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event778": { - "title": "event778", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 778." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event779": { - "title": "event779", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 779." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event780": { - "title": "event780", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 780." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event781": { - "title": "event781", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 781." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event782": { - "title": "event782", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 782." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event783": { - "title": "event783", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 783." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event784": { - "title": "event784", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 784." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event785": { - "title": "event785", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 785." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event786": { - "title": "event786", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 786." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event787": { - "title": "event787", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 787." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event788": { - "title": "event788", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 788." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event789": { - "title": "event789", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 789." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event790": { - "title": "event790", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 790." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event791": { - "title": "event791", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 791." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event792": { - "title": "event792", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 792." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event793": { - "title": "event793", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 793." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event794": { - "title": "event794", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 794." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event795": { - "title": "event795", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 795." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event796": { - "title": "event796", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 796." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event797": { - "title": "event797", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 797." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event798": { - "title": "event798", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 798." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event799": { - "title": "event799", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 799." - }, - "https://ns.adobe.com/experience/analytics/event701to800/event800": { - "title": "event800", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 800." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event801": { - "title": "event801", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 801." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event802": { - "title": "event802", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 802." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event803": { - "title": "event803", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 803." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event804": { - "title": "event804", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 804." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event805": { - "title": "event805", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 805." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event806": { - "title": "event806", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 806." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event807": { - "title": "event807", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 807." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event808": { - "title": "event808", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 808." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event809": { - "title": "event809", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 809." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event810": { - "title": "event810", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 810." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event811": { - "title": "event811", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 811." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event812": { - "title": "event812", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 812." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event813": { - "title": "event813", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 813." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event814": { - "title": "event814", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 814." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event815": { - "title": "event815", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 815." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event816": { - "title": "event816", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 816." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event817": { - "title": "event817", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 817." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event818": { - "title": "event818", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 818." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event819": { - "title": "event819", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 819." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event820": { - "title": "event820", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 820." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event821": { - "title": "event821", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 821." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event822": { - "title": "event822", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 822." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event823": { - "title": "event823", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 823." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event824": { - "title": "event824", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 824." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event825": { - "title": "event825", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 825." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event826": { - "title": "event826", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 826." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event827": { - "title": "event827", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 827." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event828": { - "title": "event828", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 828." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event829": { - "title": "event829", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 829." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event830": { - "title": "event830", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 830." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event831": { - "title": "event831", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 831." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event832": { - "title": "event832", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 832." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event833": { - "title": "event833", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 833." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event834": { - "title": "event834", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 834." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event835": { - "title": "event835", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 835." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event836": { - "title": "event836", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 836." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event837": { - "title": "event837", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 837." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event838": { - "title": "event838", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 838." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event839": { - "title": "event839", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 839." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event840": { - "title": "event840", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 840." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event841": { - "title": "event841", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 841." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event842": { - "title": "event842", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 842." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event843": { - "title": "event843", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 843." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event844": { - "title": "event844", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 844." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event845": { - "title": "event845", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 845." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event846": { - "title": "event846", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 846." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event847": { - "title": "event847", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 847." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event848": { - "title": "event848", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 848." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event849": { - "title": "event849", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 849." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event850": { - "title": "event850", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 850." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event851": { - "title": "event851", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 851." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event852": { - "title": "event852", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 852." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event853": { - "title": "event853", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 853." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event854": { - "title": "event854", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 854." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event855": { - "title": "event855", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 855." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event856": { - "title": "event856", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 856." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event857": { - "title": "event857", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 857." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event858": { - "title": "event858", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 858." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event859": { - "title": "event859", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 859." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event860": { - "title": "event860", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 860." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event861": { - "title": "event861", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 861." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event862": { - "title": "event862", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 862." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event863": { - "title": "event863", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 863." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event864": { - "title": "event864", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 864." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event865": { - "title": "event865", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 865." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event866": { - "title": "event866", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 866." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event867": { - "title": "event867", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 867." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event868": { - "title": "event868", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 868." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event869": { - "title": "event869", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 869." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event870": { - "title": "event870", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 870." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event871": { - "title": "event871", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 871." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event872": { - "title": "event872", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 872." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event873": { - "title": "event873", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 873." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event874": { - "title": "event874", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 874." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event875": { - "title": "event875", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 875." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event876": { - "title": "event876", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 876." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event877": { - "title": "event877", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 877." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event878": { - "title": "event878", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 878." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event879": { - "title": "event879", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 879." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event880": { - "title": "event880", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 880." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event881": { - "title": "event881", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 881." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event882": { - "title": "event882", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 882." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event883": { - "title": "event883", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 883." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event884": { - "title": "event884", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 884." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event885": { - "title": "event885", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 885." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event886": { - "title": "event886", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 886." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event887": { - "title": "event887", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 887." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event888": { - "title": "event888", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 888." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event889": { - "title": "event889", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 889." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event890": { - "title": "event890", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 890." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event891": { - "title": "event891", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 891." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event892": { - "title": "event892", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 892." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event893": { - "title": "event893", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 893." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event894": { - "title": "event894", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 894." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event895": { - "title": "event895", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 895." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event896": { - "title": "event896", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 896." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event897": { - "title": "event897", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 897." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event898": { - "title": "event898", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 898." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event899": { - "title": "event899", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 899." - }, - "https://ns.adobe.com/experience/analytics/event801to900/event900": { - "title": "event900", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 900." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event901": { - "title": "event901", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 901." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event902": { - "title": "event902", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 902." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event903": { - "title": "event903", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 903." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event904": { - "title": "event904", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 904." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event905": { - "title": "event905", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 905." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event906": { - "title": "event906", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 906." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event907": { - "title": "event907", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 907." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event908": { - "title": "event908", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 908." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event909": { - "title": "event909", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 909." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event910": { - "title": "event910", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 910." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event911": { - "title": "event911", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 911." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event912": { - "title": "event912", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 912." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event913": { - "title": "event913", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 913." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event914": { - "title": "event914", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 914." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event915": { - "title": "event915", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 915." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event916": { - "title": "event916", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 916." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event917": { - "title": "event917", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 917." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event918": { - "title": "event918", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 918." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event919": { - "title": "event919", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 919." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event920": { - "title": "event920", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 920." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event921": { - "title": "event921", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 921." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event922": { - "title": "event922", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 922." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event923": { - "title": "event923", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 923." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event924": { - "title": "event924", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 924." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event925": { - "title": "event925", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 925." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event926": { - "title": "event926", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 926." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event927": { - "title": "event927", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 927." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event928": { - "title": "event928", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 928." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event929": { - "title": "event929", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 929." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event930": { - "title": "event930", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 930." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event931": { - "title": "event931", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 931." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event932": { - "title": "event932", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 932." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event933": { - "title": "event933", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 933." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event934": { - "title": "event934", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 934." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event935": { - "title": "event935", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 935." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event936": { - "title": "event936", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 936." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event937": { - "title": "event937", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 937." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event938": { - "title": "event938", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 938." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event939": { - "title": "event939", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 939." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event940": { - "title": "event940", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 940." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event941": { - "title": "event941", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 941." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event942": { - "title": "event942", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 942." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event943": { - "title": "event943", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 943." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event944": { - "title": "event944", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 944." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event945": { - "title": "event945", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 945." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event946": { - "title": "event946", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 946." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event947": { - "title": "event947", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 947." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event948": { - "title": "event948", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 948." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event949": { - "title": "event949", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 949." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event950": { - "title": "event950", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 950." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event951": { - "title": "event951", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 951." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event952": { - "title": "event952", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 952." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event953": { - "title": "event953", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 953." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event954": { - "title": "event954", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 954." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event955": { - "title": "event955", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 955." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event956": { - "title": "event956", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 956." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event957": { - "title": "event957", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 957." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event958": { - "title": "event958", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 958." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event959": { - "title": "event959", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 959." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event960": { - "title": "event960", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 960." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event961": { - "title": "event961", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 961." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event962": { - "title": "event962", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 962." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event963": { - "title": "event963", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 963." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event964": { - "title": "event964", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 964." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event965": { - "title": "event965", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 965." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event966": { - "title": "event966", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 966." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event967": { - "title": "event967", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 967." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event968": { - "title": "event968", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 968." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event969": { - "title": "event969", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 969." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event970": { - "title": "event970", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 970." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event971": { - "title": "event971", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 971." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event972": { - "title": "event972", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 972." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event973": { - "title": "event973", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 973." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event974": { - "title": "event974", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 974." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event975": { - "title": "event975", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 975." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event976": { - "title": "event976", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 976." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event977": { - "title": "event977", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 977." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event978": { - "title": "event978", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 978." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event979": { - "title": "event979", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 979." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event980": { - "title": "event980", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 980." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event981": { - "title": "event981", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 981." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event982": { - "title": "event982", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 982." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event983": { - "title": "event983", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 983." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event984": { - "title": "event984", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 984." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event985": { - "title": "event985", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 985." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event986": { - "title": "event986", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 986." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event987": { - "title": "event987", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 987." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event988": { - "title": "event988", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 988." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event989": { - "title": "event989", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 989." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event990": { - "title": "event990", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 990." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event991": { - "title": "event991", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 991." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event992": { - "title": "event992", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 992." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event993": { - "title": "event993", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 993." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event994": { - "title": "event994", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 994." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event995": { - "title": "event995", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 995." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event996": { - "title": "event996", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 996." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event997": { - "title": "event997", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 997." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event998": { - "title": "event998", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 998." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event999": { - "title": "event999", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 999." - }, - "https://ns.adobe.com/experience/analytics/event901to1000/event1000": { - "title": "event1000", - "$ref": "https://ns.adobe.com/xdm/data/measure", - "description": "Custom event 1000." + "https://ns.adobe.com/experience/analytics/customdimensions": { + "title": "Custom Dimensions", + "$ref": "https://ns.adobe.com/experience/analytics/customdimensions", + "description": "Custom dimensions" + }, + "https://ns.adobe.com/experience/analytics/customevents": { + "title": "Custom Events", + "$ref": "https://ns.adobe.com/experience/analytics/customevents", + "description": "Custom events" }, "https://ns.adobe.com/experience/analytics/session/num": { "title": "Session Number", From 082a8bd52d9aaf51ad5fc01c8f1ea9b2d72507c3 Mon Sep 17 00:00:00 2001 From: jwen Date: Mon, 9 Apr 2018 17:06:09 -0700 Subject: [PATCH 069/127] Fix lint errors --- .../experience/analytics/customdimensions.schema.json | 8 +++++--- .../adobe/experience/analytics/customevents.schema.json | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/extensions/adobe/experience/analytics/customdimensions.schema.json b/extensions/adobe/experience/analytics/customdimensions.schema.json index 70a739f3e1..a3c2a36009 100644 --- a/extensions/adobe/experience/analytics/customdimensions.schema.json +++ b/extensions/adobe/experience/analytics/customdimensions.schema.json @@ -2681,7 +2681,9 @@ } } }, - "allOf": [{ - "$ref": "#/definitions/customdimensions" - }] + "allOf": [ + { + "$ref": "#/definitions/customdimensions" + } + ] } diff --git a/extensions/adobe/experience/analytics/customevents.schema.json b/extensions/adobe/experience/analytics/customevents.schema.json index 1b8e3d2e68..7128fd4c40 100644 --- a/extensions/adobe/experience/analytics/customevents.schema.json +++ b/extensions/adobe/experience/analytics/customevents.schema.json @@ -5016,7 +5016,9 @@ } } }, - "allOf": [{ - "$ref": "#/definitions/customevents" - }] + "allOf": [ + { + "$ref": "#/definitions/customevents" + } + ] } From 45fa503261a995ff2928a4eaab4352526a62342a Mon Sep 17 00:00:00 2001 From: jwen Date: Mon, 9 Apr 2018 17:14:02 -0700 Subject: [PATCH 070/127] Fix description --- .../adobe/experience/analytics/customevents.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/adobe/experience/analytics/customevents.schema.json b/extensions/adobe/experience/analytics/customevents.schema.json index 7128fd4c40..ac60721375 100644 --- a/extensions/adobe/experience/analytics/customevents.schema.json +++ b/extensions/adobe/experience/analytics/customevents.schema.json @@ -7,9 +7,9 @@ ], "$id": "https://ns.adobe.com/experience/analytics/customevents", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Adobe Analytics Cloud Experience Custom Events", + "title": "Adobe Analytics Cloud Experience Event Custom Events", "type": "object", - "description": "Adobe Analytics Cloud Experience Custom Events.", + "description": "Adobe Analytics Cloud Experience Event Custom Events.", "definitions": { "customevents": { "properties": { From b56905c66b7b676e00c7d737d16195d817643288 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Tue, 10 Apr 2018 10:29:05 +0200 Subject: [PATCH 071/127] Make explicit that SDKs are identified by URI --- schemas/context/implementationdetails.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schemas/context/implementationdetails.schema.json b/schemas/context/implementationdetails.schema.json index 2502272f33..91e920a4e1 100644 --- a/schemas/context/implementationdetails.schema.json +++ b/schemas/context/implementationdetails.schema.json @@ -18,7 +18,8 @@ "xdm:name": { "title": "Name", "type": "string", - "description": "SDK or endpoint Name.", + "format": "uri", + "description": "SDK or endpoint identifier. All SDKs or endpoints are identified through a URI, this includes extensions.", "meta:enum": { "https://ns.adobe.com/experience/analytics/scode": "Adobe Analytics sCode", "https://ns.adobe.com/experience/analytics/appmeasurement": "Adobe App Measurement", From d20a90791d4d9f578ac2790db77a9853a3c91142 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Tue, 10 Apr 2018 10:45:16 +0200 Subject: [PATCH 072/127] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c9c07dd03e..0c0fb47dc2 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 135 + "schemas": 136 }, "scripts": { "clean": "rm -rf docs/reference", From 80012a3e10c4df2e5e2c74925ce75cbe1499a46e Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Tue, 10 Apr 2018 17:13:34 +0200 Subject: [PATCH 073/127] Update measure.example.1.json --- schemas/data/measure.example.1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/measure.example.1.json b/schemas/data/measure.example.1.json index 34cce7b3d7..580aea0e7c 100644 --- a/schemas/data/measure.example.1.json +++ b/schemas/data/measure.example.1.json @@ -1,5 +1,5 @@ { "@type": "https://ns.adobe.com/xdm/data/example-metric", - "unit": null, + "xdm:unit": null, "xdm:value": 175 } From 1de3603952a6442d147b79bb13a55c1f3de458df Mon Sep 17 00:00:00 2001 From: CircleCI Date: Tue, 10 Apr 2018 15:13:59 +0000 Subject: [PATCH 074/127] [ci skip] updating documentation --- docs/reference/README.md | 72 +++++++++---------- docs/reference/common/extensible.schema.json | 28 ++++---- docs/reference/common/extensible.schema.md | 34 ++++----- .../content/page-component.schema.json | 8 +-- .../content/page-component.schema.md | 14 ++-- .../reference/context/person-name.schema.json | 10 +-- docs/reference/context/person-name.schema.md | 12 ++-- docs/reference/data/measure.schema.json | 2 +- docs/reference/data/measure.schema.md | 2 +- docs/reference/external/hal/hal.schema.json | 28 ++++---- docs/reference/external/hal/hal.schema.md | 28 ++++---- 11 files changed, 119 insertions(+), 119 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index d1887aa0a7..e527d0ac27 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -20,6 +20,16 @@ * [Rectangular Object (measured in variable unit)](./assets/variable-unit-rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` * [Video](./assets/video.schema.md) – `https://ns.adobe.com/xdm/assets/video` +## /content/ + +* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` +* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` +* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` +* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` +* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` +* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` +* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` + ## /common/ * [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` @@ -57,16 +67,6 @@ * [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` * [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` -## /content/ - -* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` -* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` -* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` -* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` -* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` -* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` -* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` - ## /context/ * [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` @@ -108,8 +108,8 @@ * [non-deliverables](./data/non-deliverables.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables` * [not-sent](./data/not-sent.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/not-sent` * [opens](./data/opens.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/opens` -* [Order](./data/order.schema.md) – `https://ns.adobe.com/xdm/data/order` * [page-views](./data/page-views.schema.md) – `https://ns.adobe.com/xdm/data/metrics/web/page-views` +* [Order](./data/order.schema.md) – `https://ns.adobe.com/xdm/data/order` * [Payment Item](./data/paymentitem.schema.md) – `https://ns.adobe.com/xdm/data/paymentitem` * [product-list-adds](./data/product-list-adds.schema.md) – `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds` * [product-list-opens](./data/product-list-opens.schema.md) – `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-opens` @@ -123,6 +123,12 @@ * [unsubscriptions](./data/unsubscriptions.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/unsubscriptions` * [user-complaints](./data/user-complaints.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` +## /content/repository-policies/ + +* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` +* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` +* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` + ## /common/event/ * [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` @@ -133,11 +139,26 @@ * [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` * [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` -## /content/repository-policies/ +## /external/repo/ -* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` -* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` -* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` +* [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` +* [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` +* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` +* [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` +* [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` +* [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` +* [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` + +## /external/schema/ + +* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` +* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` +* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` + +## /external/hal/ + +* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` +* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` ## /external/activity-streams-2/ @@ -152,24 +173,3 @@ * [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` * [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` * [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` - -## /external/hal/ - -* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` -* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` - -## /external/schema/ - -* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` -* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` -* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` - -## /external/repo/ - -* [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` -* [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` -* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` -* [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` -* [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` -* [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` -* [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index d68d4afebd..44d5a4a2e6 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -250,6 +250,20 @@ ], "meta:status": "stabilizing", "examples": [ + { + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" + }, { "@context": { "xdm": "https://ns.adobe.com/xdm/", @@ -295,20 +309,6 @@ "xdm:path": "here", "repo:etag": "15" }, - { - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" - }, { "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index 8ed11d208d..c2a2ee8289 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -25,6 +25,23 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ## Extensibility base schema Examples +```json +{ + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" +} +``` + ```json { "@context": { @@ -73,23 +90,6 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` -```json -{ - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" -} -``` - ```json { "https://ns.example.com/asset_name": "custom_asset_1", diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index f16502a736..dd49beb513 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,10 +32,6 @@ ], "meta:status": "experimental", "examples": [ - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" - }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -43,6 +39,10 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } + }, + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index 420cf10e6b..befc3dca0b 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -21,13 +21,6 @@ The type determines how the component will be displayed, rendered, and authored. ## Page Component Examples -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` - ```json { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", @@ -39,6 +32,13 @@ The type determines how the component will be displayed, rendered, and authored. } ``` +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + # Page Component Properties diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index 946614f2d0..0f7af5cfa8 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -54,15 +54,15 @@ "xdm:lastName": "Doe", "xdm:fullName": "John S. Doe" }, - { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" - }, { "xdm:firstName": "张", "xdm:lastName": "三", "xdm:fullName": "张三" + }, + { + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ] } \ No newline at end of file diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index 410d8bdd8d..603043eeab 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -27,17 +27,17 @@ In addition, a number of optional properties are made available that can be used ```json { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" } ``` ```json { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ``` diff --git a/docs/reference/data/measure.schema.json b/docs/reference/data/measure.schema.json index fcd11770f7..c0974be012 100644 --- a/docs/reference/data/measure.schema.json +++ b/docs/reference/data/measure.schema.json @@ -61,7 +61,7 @@ "examples": [ { "@type": "https://ns.adobe.com/xdm/data/example-metric", - "unit": null, + "xdm:unit": null, "xdm:value": 175 } ] diff --git a/docs/reference/data/measure.schema.md b/docs/reference/data/measure.schema.md index b8aa4262b2..7d8c24b9ab 100644 --- a/docs/reference/data/measure.schema.md +++ b/docs/reference/data/measure.schema.md @@ -18,7 +18,7 @@ It has a value, and optionally a unit, although the unit can be inferred from th ```json { "@type": "https://ns.adobe.com/xdm/data/example-metric", - "unit": null, + "xdm:unit": null, "xdm:value": 175 } ``` diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 325140cda8..3fa44f9918 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -285,17 +285,9 @@ "self": { "href": "/orders/523" }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], + "warehouse": { + "href": "/warehouse/56" + }, "invoice": { "href": "/invoices/873" } @@ -309,9 +301,17 @@ "self": { "href": "/orders/523" }, - "warehouse": { - "href": "/warehouse/56" - }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], "invoice": { "href": "/invoices/873" } diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index b150c04273..b9c7815e1b 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -26,17 +26,9 @@ This external schema definition allows adding HAL expressions into an existing s "self": { "href": "/orders/523" }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], + "warehouse": { + "href": "/warehouse/56" + }, "invoice": { "href": "/invoices/873" } @@ -53,9 +45,17 @@ This external schema definition allows adding HAL expressions into an existing s "self": { "href": "/orders/523" }, - "warehouse": { - "href": "/warehouse/56" - }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], "invoice": { "href": "/invoices/873" } From 77b6a7417ee6679e9b2cdfc11135afa64d78a771 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Tue, 10 Apr 2018 16:21:28 -0700 Subject: [PATCH 075/127] Update webreferrer.schema.json --- schemas/context/webreferrer.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json index bc8f85f669..05845917d6 100644 --- a/schemas/context/webreferrer.schema.json +++ b/schemas/context/webreferrer.schema.json @@ -46,7 +46,7 @@ "social": "The referrer is identified as a social network.", "unknown": "The referrer is unidentifiable (unknown). `No JavaScript` could be the cause.", - "usenet": + "news": "The URL of a referrer started with news://. As such, the referrer link was posted on a Usenet newsgroup rather than a web page." } } From 797d13bc87b4a50b0fb92c7db542c489c90bc811 Mon Sep 17 00:00:00 2001 From: jwen Date: Wed, 11 Apr 2018 11:14:03 -0700 Subject: [PATCH 076/127] Rename $ref to use webinfo rather than web --- .../adobe/experience/analytics/experienceevent.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/adobe/experience/analytics/experienceevent.schema.json b/extensions/adobe/experience/analytics/experienceevent.schema.json index ec48e3cbd0..57423c0cc9 100644 --- a/extensions/adobe/experience/analytics/experienceevent.schema.json +++ b/extensions/adobe/experience/analytics/experienceevent.schema.json @@ -51,7 +51,7 @@ }, "https://ns.adobe.com/experience/analytics/session/web": { "title": "Session Entry Web", - "$ref": "https://ns.adobe.com/xdm/context/web", + "$ref": "https://ns.adobe.com/xdm/context/webinfo", "description": "The information related to web page, link, and referrer at the entry of this session." }, @@ -65,7 +65,7 @@ }, "https://ns.adobe.com/experience/analytics/enduser/firstweb": { "title": "End User First Web Details", - "$ref": "https://ns.adobe.com/xdm/context/web", + "$ref": "https://ns.adobe.com/xdm/context/webinfo", "description": "The information related to web page, link, and referrer from the first ExperienceEvent for this end-user." } From 930d72795c0d444dc1276a8c287a3ac4bde10c13 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Wed, 11 Apr 2018 17:19:27 -0400 Subject: [PATCH 077/127] Renamed webPage to webPageView Updated all examples --- schemas/context/experienceevent.example.1.json | 14 ++++++++++++++ schemas/context/webinfo.example.1.json | 2 +- schemas/context/webinfo.example.2.json | 2 +- schemas/context/webinfo.schema.json | 2 +- ...e.example.1.json => webpageview.example.1.json} | 0 ...webpage.schema.json => webpageview.schema.json} | 0 6 files changed, 17 insertions(+), 3 deletions(-) rename schemas/context/{webpage.example.1.json => webpageview.example.1.json} (100%) rename schemas/context/{webpage.schema.json => webpageview.schema.json} (100%) diff --git a/schemas/context/experienceevent.example.1.json b/schemas/context/experienceevent.example.1.json index d2fda7f14d..d3e91edd6b 100644 --- a/schemas/context/experienceevent.example.1.json +++ b/schemas/context/experienceevent.example.1.json @@ -102,6 +102,20 @@ "schema:longitude": 139.73237 } }, + "xdm:web":{ + "xdm:webPageView": { + "xdm:siteSection": "Shopping Cart", + "xdm:server": "example.com", + "xdm:name": "Purchase Confirmation", + "xdm:URL": "https://www.example.com/orderConf", + "xdm:errorPage": false, + "xdm:homePage": false + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/checkout", + "xdm:referrerType": "internal" + } + } "xdm:marketing": { "xdm:trackingCode": "marketingcampaign111" } diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index 23af1e61cb..abf702d971 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -1,5 +1,5 @@ { - "xdm:webPage": { + "xdm:webPageView": { "xdm:siteSection": "Product section", "xdm:server": "example.com", "xdm:name": "product home", diff --git a/schemas/context/webinfo.example.2.json b/schemas/context/webinfo.example.2.json index 42dd5cad15..6e31c5579a 100644 --- a/schemas/context/webinfo.example.2.json +++ b/schemas/context/webinfo.example.2.json @@ -1,5 +1,5 @@ { - "xdm:webPage": { + "xdm:webPageView": { "xdm:siteSection": "Product section", "xdm:server": "example.com", "xdm:name": "product home", diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index 8729e28c59..c5a91cd7d0 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -16,7 +16,7 @@ "properties": { "xdm:webPage": { "title": "Web Page", - "$ref": "https://ns.adobe.com/xdm/context/webpage", + "$ref": "https://ns.adobe.com/xdm/context/webpageview", "description": "Details about the web page where the web interaction occurred." }, diff --git a/schemas/context/webpage.example.1.json b/schemas/context/webpageview.example.1.json similarity index 100% rename from schemas/context/webpage.example.1.json rename to schemas/context/webpageview.example.1.json diff --git a/schemas/context/webpage.schema.json b/schemas/context/webpageview.schema.json similarity index 100% rename from schemas/context/webpage.schema.json rename to schemas/context/webpageview.schema.json From d7418c425542de8b1dcbd5b830b530711f6c5ffa Mon Sep 17 00:00:00 2001 From: cdegroot Date: Wed, 11 Apr 2018 17:23:06 -0400 Subject: [PATCH 078/127] Updated isErrorPage/isHomePage to drop 'is' Corrected references to webPageView --- schemas/context/webinfo.example.1.json | 4 ++-- schemas/context/webinfo.example.2.json | 4 ++-- schemas/context/webpageview.example.1.json | 4 ++-- schemas/context/webpageview.schema.json | 10 +++++----- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/schemas/context/webinfo.example.1.json b/schemas/context/webinfo.example.1.json index abf702d971..8c7532595e 100644 --- a/schemas/context/webinfo.example.1.json +++ b/schemas/context/webinfo.example.1.json @@ -4,8 +4,8 @@ "xdm:server": "example.com", "xdm:name": "product home", "xdm:URL": "https://www.example.com/products", - "xdm:isErrorPage": false, - "xdm:isHomePage": true + "xdm:errorPage": false, + "xdm:homePage": true }, "xdm:webReferrer": { "xdm:URL": "https://www.some-adserver.com", diff --git a/schemas/context/webinfo.example.2.json b/schemas/context/webinfo.example.2.json index 6e31c5579a..86dc92e478 100644 --- a/schemas/context/webinfo.example.2.json +++ b/schemas/context/webinfo.example.2.json @@ -4,8 +4,8 @@ "xdm:server": "example.com", "xdm:name": "product home", "xdm:URL": "https://www.example.com/products", - "xdm:isErrorPage": false, - "xdm:isHomePage": true + "xdm:errorPage": false, + "xdm:homePage": true }, "xdm:webLink": { "xdm:type": "other", diff --git a/schemas/context/webpageview.example.1.json b/schemas/context/webpageview.example.1.json index 6b4a7c37f8..7187c28ffb 100644 --- a/schemas/context/webpageview.example.1.json +++ b/schemas/context/webpageview.example.1.json @@ -3,6 +3,6 @@ "xdm:server": "example.com", "xdm:name": "product home", "xdm:URL": "https://www.example.com", - "xdm:isErrorPage": false, - "xdm:isHomePage": true + "xdm:errorPage": false, + "xdm:homePage": true } diff --git a/schemas/context/webpageview.schema.json b/schemas/context/webpageview.schema.json index 9d6e31db35..bc88cbb079 100644 --- a/schemas/context/webpageview.schema.json +++ b/schemas/context/webpageview.schema.json @@ -5,14 +5,14 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": "https://ns.adobe.com/xdm/context/webpage", + "$id": "https://ns.adobe.com/xdm/context/webpageview", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Web Page", + "title": "Web Page View", "type": "object", "description": - "Details about the web page where a web interaction occurred, as recorded by an `ExperienceEvent`.", + "Details about the web page that has just been loaded and viewed, as recorded by an `ExperienceEvent`.", "definitions": { - "webpage": { + "webpageview": { "properties": { "xdm:siteSection": { "title": "Site Section", @@ -57,7 +57,7 @@ }, "allOf": [ { - "$ref": "#/definitions/webpage" + "$ref": "#/definitions/webpageview" } ], "meta:status": "experimental" From 313417f0992045625cf2a63bf8f6f98718786cf9 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Wed, 11 Apr 2018 17:26:56 -0400 Subject: [PATCH 079/127] Renamed weblink to webinteraction Updated examples --- schemas/context/webinfo.schema.json | 8 ++++---- ...blink.example.1.json => webinteraction.example.1.json} | 0 .../{weblink.schema.json => webinteraction.schema.json} | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) rename schemas/context/{weblink.example.1.json => webinteraction.example.1.json} (100%) rename schemas/context/{weblink.schema.json => webinteraction.schema.json} (85%) diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index c5a91cd7d0..e41bcf4b98 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -14,17 +14,17 @@ "definitions": { "webinfo": { "properties": { - "xdm:webPage": { + "xdm:webPageView": { "title": "Web Page", "$ref": "https://ns.adobe.com/xdm/context/webpageview", "description": "Details about the web page where the web interaction occurred." }, - "xdm:webLink": { + "xdm:webinteraction": { "title": "Web Link", - "$ref": "https://ns.adobe.com/xdm/context/weblink", + "$ref": "https://ns.adobe.com/xdm/context/webinteraction", "description": - "Details about the web link (URL) that corresponds to the web page where the interaction occurred." + "Details about the web link (URL) that corresponds to where the interaction occurred." }, "xdm:webReferrer": { "title": "Web Referrer", diff --git a/schemas/context/weblink.example.1.json b/schemas/context/webinteraction.example.1.json similarity index 100% rename from schemas/context/weblink.example.1.json rename to schemas/context/webinteraction.example.1.json diff --git a/schemas/context/weblink.schema.json b/schemas/context/webinteraction.schema.json similarity index 85% rename from schemas/context/weblink.schema.json rename to schemas/context/webinteraction.schema.json index 3fb8ef3189..fd0a82d8c8 100644 --- a/schemas/context/weblink.schema.json +++ b/schemas/context/webinteraction.schema.json @@ -7,12 +7,12 @@ ], "$id": "https://ns.adobe.com/xdm/context/weblink", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Web Link", + "title": "Web Interaction", "type": "object", "description": - "Details about the web link (URL) that corresponds to the web page where the interaction occurred, as recorded by an `ExperienceEvent`", + "Details about the web link (URL) that corresponds to where the interaction occurred, as recorded by an `ExperienceEvent`", "definitions": { - "weblink": { + "webinteraction": { "properties": { "xdm:type": { "title": "Type", @@ -41,7 +41,7 @@ }, "allOf": [ { - "$ref": "#/definitions/weblink" + "$ref": "#/definitions/webinteraction" } ], "meta:status": "experimental" From 45307758ec8736f44a0eef3441659e2829e0dd10 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Wed, 11 Apr 2018 17:31:05 -0400 Subject: [PATCH 080/127] Corrected types --- schemas/context/experienceevent.example.1.json | 2 +- schemas/context/webinteraction.schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/context/experienceevent.example.1.json b/schemas/context/experienceevent.example.1.json index d3e91edd6b..76325fce3d 100644 --- a/schemas/context/experienceevent.example.1.json +++ b/schemas/context/experienceevent.example.1.json @@ -115,7 +115,7 @@ "xdm:URL": "https://www.example.com/checkout", "xdm:referrerType": "internal" } - } + }, "xdm:marketing": { "xdm:trackingCode": "marketingcampaign111" } diff --git a/schemas/context/webinteraction.schema.json b/schemas/context/webinteraction.schema.json index fd0a82d8c8..08dace56c0 100644 --- a/schemas/context/webinteraction.schema.json +++ b/schemas/context/webinteraction.schema.json @@ -5,7 +5,7 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": "https://ns.adobe.com/xdm/context/weblink", + "$id": "https://ns.adobe.com/xdm/context/webinteraction", "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Interaction", "type": "object", From c1bd8fafbed57a187a2b0f9e2b31be72b185b1f3 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:18:17 +0000 Subject: [PATCH 081/127] Renamed location context to place context, according to #170 --- schemas/context/experienceevent.example.1.json | 2 +- schemas/context/experienceevent.schema.json | 2 +- schemas/context/placecontext.description.md | 2 ++ ...ext.example.1.json => placecontext.example.1.json} | 0 ...oncontext.schema.json => placecontext.schema.json} | 11 +++++------ 5 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 schemas/context/placecontext.description.md rename schemas/context/{locationcontext.example.1.json => placecontext.example.1.json} (100%) rename schemas/context/{locationcontext.schema.json => placecontext.schema.json} (74%) diff --git a/schemas/context/experienceevent.example.1.json b/schemas/context/experienceevent.example.1.json index 76325fce3d..941be13c86 100644 --- a/schemas/context/experienceevent.example.1.json +++ b/schemas/context/experienceevent.example.1.json @@ -90,7 +90,7 @@ "xdm:priceTotal": 159.0 } }, - "xdm:locationContext": { + "xdm:placeContext": { "xdm:localTime": "2017-09-26T15:52:25+13:00", "xdm:geo": { "@id": "https://data.adobe.io/entities/geo/tokyo", diff --git a/schemas/context/experienceevent.schema.json b/schemas/context/experienceevent.schema.json index 50010c27d8..956444ef28 100644 --- a/schemas/context/experienceevent.schema.json +++ b/schemas/context/experienceevent.schema.json @@ -96,7 +96,7 @@ }, "xdm:locationContext": { "title": "Location Context", - "$ref": "https://ns.adobe.com/xdm/context/locationcontext", + "$ref": "https://ns.adobe.com/xdm/context/placecontext", "description": "The transient circumstances related to the observation. Examples include locale specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours." }, diff --git a/schemas/context/placecontext.description.md b/schemas/context/placecontext.description.md new file mode 100644 index 0000000000..8f76694d40 --- /dev/null +++ b/schemas/context/placecontext.description.md @@ -0,0 +1,2 @@ +The transient circumstances related to the place or physical location of the observation. +Examples include location specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours. diff --git a/schemas/context/locationcontext.example.1.json b/schemas/context/placecontext.example.1.json similarity index 100% rename from schemas/context/locationcontext.example.1.json rename to schemas/context/placecontext.example.1.json diff --git a/schemas/context/locationcontext.schema.json b/schemas/context/placecontext.schema.json similarity index 74% rename from schemas/context/locationcontext.schema.json rename to schemas/context/placecontext.schema.json index 99d3fdc121..80ae751afe 100644 --- a/schemas/context/locationcontext.schema.json +++ b/schemas/context/placecontext.schema.json @@ -5,14 +5,13 @@ "you may not use this file except in compliance with the License. You may obtain a copy", "of the License at https://creativecommons.org/licenses/by/4.0/" ], - "$id": "https://ns.adobe.com/xdm/context/locationcontext", + "$id": "https://ns.adobe.com/xdm/context/placecontext", "$schema": "http://json-schema.org/draft-06/schema#", - "title": "Location Context", + "title": "Place Context", "type": "object", - "description": - "The transient circumstances related to the observation. Examples include locale specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours.", + "description": "", "definitions": { - "locationcontext": { + "placecontext": { "properties": { "xdm:localTime": { "title": "Local Time", @@ -32,7 +31,7 @@ }, "allOf": [ { - "$ref": "#/definitions/locationcontext" + "$ref": "#/definitions/placecontext" } ], "meta:status": "experimental" From 3a96ff184a90d81114e2d5c3f2bf5b8db3577e2f Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:21:57 +0000 Subject: [PATCH 082/127] Updated webreferrer description --- schemas/context/webreferrer.description.md | 2 ++ schemas/context/webreferrer.schema.json | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 schemas/context/webreferrer.description.md diff --git a/schemas/context/webreferrer.description.md b/schemas/context/webreferrer.description.md new file mode 100644 index 0000000000..2157cb705e --- /dev/null +++ b/schemas/context/webreferrer.description.md @@ -0,0 +1,2 @@ +The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded. +The information in this schema is semantically compatible with the information in the HTTP `referer` header field, but allows for additional classification. diff --git a/schemas/context/webreferrer.schema.json b/schemas/context/webreferrer.schema.json index 05845917d6..9ee8afc019 100644 --- a/schemas/context/webreferrer.schema.json +++ b/schemas/context/webreferrer.schema.json @@ -9,8 +9,7 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Referrer", "type": "object", - "description": - "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded", + "description": "", "definitions": { "webreferrer": { "properties": { From 21327b8a14e34d29bba88113e66991566975a12f Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:27:32 +0000 Subject: [PATCH 083/127] [trivial] note on referer vs. referrer --- schemas/context/webreferrer.description.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schemas/context/webreferrer.description.md b/schemas/context/webreferrer.description.md index 2157cb705e..7e421375f0 100644 --- a/schemas/context/webreferrer.description.md +++ b/schemas/context/webreferrer.description.md @@ -1,2 +1,4 @@ The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded. The information in this schema is semantically compatible with the information in the HTTP `referer` header field, but allows for additional classification. + +> **Note:** While the [HTTP specification](https://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z14) uses the term "referer", XDM follows the [Document Object Model specification ](https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-95229140) and uses the spelling "referrer", which is more widely accepted as the correct spelling. From b7bfb99b42ec7bb7be8e392da214ec469052f1e0 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:29:56 +0000 Subject: [PATCH 084/127] Renamed field in ExperienceContext, according to #170 --- schemas/context/experienceevent.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/context/experienceevent.schema.json b/schemas/context/experienceevent.schema.json index 956444ef28..acf0fb9e7f 100644 --- a/schemas/context/experienceevent.schema.json +++ b/schemas/context/experienceevent.schema.json @@ -94,8 +94,8 @@ "description": "The information related to marketing activities that are active with the touchpoint." }, - "xdm:locationContext": { - "title": "Location Context", + "xdm:placeContext": { + "title": "Place Context", "$ref": "https://ns.adobe.com/xdm/context/placecontext", "description": "The transient circumstances related to the observation. Examples include locale specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours." From 5156621456616f8c1c8aa4d0fd0be7bf209e0a3e Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:34:04 +0000 Subject: [PATCH 085/127] [trivial] clean up remaining mentions of web link --- schemas/context/webinfo.example.2.json | 2 +- schemas/context/webinfo.schema.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schemas/context/webinfo.example.2.json b/schemas/context/webinfo.example.2.json index c540c6efe2..1f6f7d65ac 100644 --- a/schemas/context/webinfo.example.2.json +++ b/schemas/context/webinfo.example.2.json @@ -7,7 +7,7 @@ "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webLink": { + "xdm:webInteraction": { "xdm:type": "other", "xdm:URL": "#stores", "xdm:name": "product store" diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index e41bcf4b98..5a99541616 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -15,13 +15,13 @@ "webinfo": { "properties": { "xdm:webPageView": { - "title": "Web Page", + "title": "Web Page View", "$ref": "https://ns.adobe.com/xdm/context/webpageview", "description": "Details about the web page where the web interaction occurred." }, - "xdm:webinteraction": { - "title": "Web Link", + "xdm:webInteraction": { + "title": "Web Interaction", "$ref": "https://ns.adobe.com/xdm/context/webinteraction", "description": "Details about the web link (URL) that corresponds to where the interaction occurred." From dbaa000dd66faa67021cefb0b7762aded871bb52 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:37:57 +0000 Subject: [PATCH 086/127] Clarified webinfo description --- schemas/context/webinfo.description.md | 1 + schemas/context/webinfo.schema.json | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 schemas/context/webinfo.description.md diff --git a/schemas/context/webinfo.description.md b/schemas/context/webinfo.description.md new file mode 100644 index 0000000000..df6a9b2c75 --- /dev/null +++ b/schemas/context/webinfo.description.md @@ -0,0 +1 @@ +Information recorded via an `ExperienceEvent` that is specific to the World Wide Web channel, including the web page, referrer and/or link related to the on-page interaction. diff --git a/schemas/context/webinfo.schema.json b/schemas/context/webinfo.schema.json index 5a99541616..e9df7332d7 100644 --- a/schemas/context/webinfo.schema.json +++ b/schemas/context/webinfo.schema.json @@ -9,8 +9,7 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Information", "type": "object", - "description": - "Information about a web interaction recorded via an `ExperienceEvent`, including the web page, referrer and/or link related to the interaction.", + "description": "", "definitions": { "webinfo": { "properties": { From 4a9aeeaa9fcdbf31c7e942d0cb410bb7f7a5f0e9 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:47:14 +0000 Subject: [PATCH 087/127] Improved description for web page view --- schemas/context/webpageview.description.md | 4 ++++ schemas/context/webpageview.schema.json | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 schemas/context/webpageview.description.md diff --git a/schemas/context/webpageview.description.md b/schemas/context/webpageview.description.md new file mode 100644 index 0000000000..8a188cce6f --- /dev/null +++ b/schemas/context/webpageview.description.md @@ -0,0 +1,4 @@ +Details about the web page that has just been loaded and viewed, as recorded by an `ExperienceEvent`. + +This schema is intended for full page views and initial page loads of single page web applications (SPAs). +For interactions that are happening on a loaded page that do not trigger a new page load, see `WebInteraction`. diff --git a/schemas/context/webpageview.schema.json b/schemas/context/webpageview.schema.json index bc88cbb079..81e71a6f21 100644 --- a/schemas/context/webpageview.schema.json +++ b/schemas/context/webpageview.schema.json @@ -9,8 +9,7 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Page View", "type": "object", - "description": - "Details about the web page that has just been loaded and viewed, as recorded by an `ExperienceEvent`.", + "description": "", "definitions": { "webpageview": { "properties": { From 4d334eb07989d8b9de1f83432aaf6135ad9df028 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:51:06 +0000 Subject: [PATCH 088/127] Fixed description for web interaction --- schemas/context/webinteraction.description.md | 3 +++ schemas/context/webinteraction.schema.json | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 schemas/context/webinteraction.description.md diff --git a/schemas/context/webinteraction.description.md b/schemas/context/webinteraction.description.md new file mode 100644 index 0000000000..59f77497b1 --- /dev/null +++ b/schemas/context/webinteraction.description.md @@ -0,0 +1,3 @@ +The Web Interaction schema captures information about interactions that happened on a web page after the intial page load (see also Web Page View) was completed. + +It is intended for recording interactions in rich web applications that do not trigger a new page load such as single page web apps (SPAs). diff --git a/schemas/context/webinteraction.schema.json b/schemas/context/webinteraction.schema.json index 08dace56c0..304ff4379f 100644 --- a/schemas/context/webinteraction.schema.json +++ b/schemas/context/webinteraction.schema.json @@ -9,8 +9,7 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Web Interaction", "type": "object", - "description": - "Details about the web link (URL) that corresponds to where the interaction occurred, as recorded by an `ExperienceEvent`", + "description": "", "definitions": { "webinteraction": { "properties": { From 686d207338f812a6907d66caeff7e6c33efb6178 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 12 Apr 2018 07:54:29 +0000 Subject: [PATCH 089/127] removed leftover file --- schemas/context/webpage.example.1.json | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 schemas/context/webpage.example.1.json diff --git a/schemas/context/webpage.example.1.json b/schemas/context/webpage.example.1.json deleted file mode 100644 index 6b4a7c37f8..0000000000 --- a/schemas/context/webpage.example.1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "xdm:siteSection": "Product section", - "xdm:server": "example.com", - "xdm:name": "product home", - "xdm:URL": "https://www.example.com", - "xdm:isErrorPage": false, - "xdm:isHomePage": true -} From b39d3a78c577220551d498a3999b026f91528391 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 15:42:54 +0000 Subject: [PATCH 090/127] [ci skip] updating documentation --- docs/reference/README.md | 52 +++--- .../common/eventenvelope.schema.json | 72 ++++---- docs/reference/common/eventenvelope.schema.md | 72 ++++---- docs/reference/common/extensible.schema.json | 30 ++-- docs/reference/common/extensible.schema.md | 36 ++-- docs/reference/common/geo.schema.json | 14 +- docs/reference/common/geo.schema.md | 20 +-- .../content/page-component.schema.json | 8 +- .../content/page-component.schema.md | 14 +- .../context/experienceevent.schema.json | 24 ++- .../context/experienceevent.schema.md | 66 +++++--- .../context/placecontext.schema.json | 50 ++++++ docs/reference/context/placecontext.schema.md | 83 +++++++++ docs/reference/context/webinfo.schema.json | 74 ++++++++ docs/reference/context/webinfo.schema.md | 128 ++++++++++++++ .../context/webinteraction.schema.json | 57 +++++++ .../context/webinteraction.schema.md | 95 +++++++++++ .../reference/context/webpageview.schema.json | 67 ++++++++ docs/reference/context/webpageview.schema.md | 160 ++++++++++++++++++ .../reference/context/webreferrer.schema.json | 61 +++++++ docs/reference/context/webreferrer.schema.md | 80 +++++++++ 21 files changed, 1074 insertions(+), 189 deletions(-) create mode 100644 docs/reference/context/placecontext.schema.json create mode 100644 docs/reference/context/placecontext.schema.md create mode 100644 docs/reference/context/webinfo.schema.json create mode 100644 docs/reference/context/webinfo.schema.md create mode 100644 docs/reference/context/webinteraction.schema.json create mode 100644 docs/reference/context/webinteraction.schema.md create mode 100644 docs/reference/context/webpageview.schema.json create mode 100644 docs/reference/context/webpageview.schema.md create mode 100644 docs/reference/context/webreferrer.schema.json create mode 100644 docs/reference/context/webreferrer.schema.md diff --git a/docs/reference/README.md b/docs/reference/README.md index e527d0ac27..e0ad82022e 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -63,7 +63,6 @@ * [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` * [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` * [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` -* [Web Page](./channels/webpage.schema.md) – `https://ns.adobe.com/xdm/channels/webpage` * [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` * [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` @@ -77,7 +76,6 @@ * [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` * [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` * [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` -* [Location Context](./context/locationcontext.schema.md) – `https://ns.adobe.com/xdm/context/locationcontext` * [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` * [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` * [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` @@ -85,11 +83,15 @@ * [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` * [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` * [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` +* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` * [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` * [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` * [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` * [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` -* [Web Link](./context/weblink.schema.md) – `https://ns.adobe.com/xdm/context/weblink` +* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` +* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` +* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` +* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` ## /data/ @@ -108,8 +110,8 @@ * [non-deliverables](./data/non-deliverables.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables` * [not-sent](./data/not-sent.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/not-sent` * [opens](./data/opens.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/opens` -* [page-views](./data/page-views.schema.md) – `https://ns.adobe.com/xdm/data/metrics/web/page-views` * [Order](./data/order.schema.md) – `https://ns.adobe.com/xdm/data/order` +* [page-views](./data/page-views.schema.md) – `https://ns.adobe.com/xdm/data/metrics/web/page-views` * [Payment Item](./data/paymentitem.schema.md) – `https://ns.adobe.com/xdm/data/paymentitem` * [product-list-adds](./data/product-list-adds.schema.md) – `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds` * [product-list-opens](./data/product-list-opens.schema.md) – `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-opens` @@ -135,19 +137,23 @@ * [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` * [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` * [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` -* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` * [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` * [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` +* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` -## /external/repo/ +## /external/activity-streams-2/ -* [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` -* [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` -* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` -* [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` -* [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` -* [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` -* [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` +* [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` +* [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` +* [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` +* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` +* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` +* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` +* [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` +* [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` +* [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` +* [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` +* [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` ## /external/schema/ @@ -160,16 +166,12 @@ * [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` * [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` -## /external/activity-streams-2/ +## /external/repo/ -* [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` -* [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` -* [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` -* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` -* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` -* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` -* [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` -* [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` -* [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` -* [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` -* [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` +* [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` +* [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` +* [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` +* [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` +* [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` +* [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` +* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index 5e1c011ad3..c31226be58 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -69,31 +69,32 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } }, { - "@type": "https://ns.adobe.com/xdm/common/event/updated", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/published", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -109,42 +110,38 @@ "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", - "xdm:name": "Fx_DUKE-small.png", - "xdm:path": "/content/dam/Fx_DUKE-small.png", - "dc:format": "image/png", - "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } }, { - "@type": "https://ns.adobe.com/xdm/common/event/published", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } }, { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/updated", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -160,10 +157,13 @@ "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", + "xdm:name": "Fx_DUKE-small.png", + "xdm:path": "/content/dam/Fx_DUKE-small.png", + "dc:format": "image/png", + "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" } } ] diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index cbf63de124..19944e3721 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -51,34 +51,35 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ``` ```json { - "@type": "https://ns.adobe.com/xdm/common/event/updated", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/published", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -94,48 +95,44 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", - "xdm:name": "Fx_DUKE-small.png", - "xdm:path": "/content/dam/Fx_DUKE-small.png", - "dc:format": "image/png", - "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ``` ```json { - "@type": "https://ns.adobe.com/xdm/common/event/published", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } } ``` ```json { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/updated", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -151,10 +148,13 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", + "xdm:name": "Fx_DUKE-small.png", + "xdm:path": "/content/dam/Fx_DUKE-small.png", + "dc:format": "image/png", + "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" } } ``` diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index 44d5a4a2e6..3f36a1c6b5 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -264,6 +264,21 @@ "xdm:path": "/here", "repo:etag": "15" }, + { + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" + }, { "@context": { "xdm": "https://ns.adobe.com/xdm/", @@ -308,21 +323,6 @@ "repo:size": 1632418, "xdm:path": "here", "repo:etag": "15" - }, - { - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" } ] } \ No newline at end of file diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index c2a2ee8289..35d419fa86 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -42,6 +42,24 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` +```json +{ + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" +} +``` + ```json { "@context": { @@ -90,21 +108,3 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` -```json -{ - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" -} -``` - diff --git a/docs/reference/common/geo.schema.json b/docs/reference/common/geo.schema.json index 515293af80..dd1c1bcf53 100644 --- a/docs/reference/common/geo.schema.json +++ b/docs/reference/common/geo.schema.json @@ -67,13 +67,6 @@ ], "meta:status": "experimental", "examples": [ - { - "@id": "https://data.adobe.io/entities/geo/potsdam", - "xdm:countryCode": "DE", - "xdm:stateProvince": "DE-BB", - "xdm:city": "Potsdam", - "xdm:postalCode": "14482" - }, { "@id": "https://data.adobe.io/entities/geo/tokyo", "xdm:countryCode": "JP", @@ -82,6 +75,13 @@ "xdm:postalCode": "141-0032", "schema:latitude": 35.6185, "schema:longitude": 139.73237 + }, + { + "@id": "https://data.adobe.io/entities/geo/potsdam", + "xdm:countryCode": "DE", + "xdm:stateProvince": "DE-BB", + "xdm:city": "Potsdam", + "xdm:postalCode": "14482" } ] } \ No newline at end of file diff --git a/docs/reference/common/geo.schema.md b/docs/reference/common/geo.schema.md index 54b11399ea..3123fb0aa0 100644 --- a/docs/reference/common/geo.schema.md +++ b/docs/reference/common/geo.schema.md @@ -18,16 +18,6 @@ The geographic related data where an event was observed. ## Geo Examples -```json -{ - "@id": "https://data.adobe.io/entities/geo/potsdam", - "xdm:countryCode": "DE", - "xdm:stateProvince": "DE-BB", - "xdm:city": "Potsdam", - "xdm:postalCode": "14482" -} -``` - ```json { "@id": "https://data.adobe.io/entities/geo/tokyo", @@ -40,6 +30,16 @@ The geographic related data where an event was observed. } ``` +```json +{ + "@id": "https://data.adobe.io/entities/geo/potsdam", + "xdm:countryCode": "DE", + "xdm:stateProvince": "DE-BB", + "xdm:city": "Potsdam", + "xdm:postalCode": "14482" +} +``` + # Geo Properties diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index dd49beb513..f16502a736 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,6 +32,10 @@ ], "meta:status": "experimental", "examples": [ + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" + }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -39,10 +43,6 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } - }, - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index befc3dca0b..420cf10e6b 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -21,6 +21,13 @@ The type determines how the component will be displayed, rendered, and authored. ## Page Component Examples +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + ```json { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", @@ -32,13 +39,6 @@ The type determines how the component will be displayed, rendered, and authored. } ``` -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` - # Page Component Properties diff --git a/docs/reference/context/experienceevent.schema.json b/docs/reference/context/experienceevent.schema.json index 5123cda2b1..8523af2458 100644 --- a/docs/reference/context/experienceevent.schema.json +++ b/docs/reference/context/experienceevent.schema.json @@ -75,7 +75,7 @@ }, "xdm:web": { "title": "Web", - "$ref": "https://ns.adobe.com/xdm/channels/web", + "$ref": "https://ns.adobe.com/xdm/context/webinfo", "description": "The information related to web page and link of the ExperienceEvent." }, "xdm:marketing": { @@ -83,9 +83,9 @@ "$ref": "https://ns.adobe.com/xdm/context/marketing", "description": "The information related to marketing activities that are active with the touchpoint." }, - "xdm:locationContext": { - "title": "Location Context", - "$ref": "https://ns.adobe.com/xdm/context/locationcontext", + "xdm:placeContext": { + "title": "Place Context", + "$ref": "https://ns.adobe.com/xdm/context/placecontext", "description": "The transient circumstances related to the observation. Examples include locale specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours." }, "xdm:channel": { @@ -227,7 +227,7 @@ "xdm:priceTotal": 159 } }, - "xdm:locationContext": { + "xdm:placeContext": { "xdm:localTime": "2017-09-26T15:52:25+13:00", "xdm:geo": { "@id": "https://data.adobe.io/entities/geo/tokyo", @@ -239,6 +239,20 @@ "schema:longitude": 139.73237 } }, + "xdm:web": { + "xdm:webPageView": { + "xdm:siteSection": "Shopping Cart", + "xdm:server": "example.com", + "xdm:name": "Purchase Confirmation", + "xdm:URL": "https://www.example.com/orderConf", + "xdm:errorPage": false, + "xdm:homePage": false + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/checkout", + "xdm:referrerType": "internal" + } + }, "xdm:marketing": { "xdm:trackingCode": "marketingcampaign111" } diff --git a/docs/reference/context/experienceevent.schema.md b/docs/reference/context/experienceevent.schema.md index 1ba4a30738..e5359f16cc 100644 --- a/docs/reference/context/experienceevent.schema.md +++ b/docs/reference/context/experienceevent.schema.md @@ -23,9 +23,9 @@ The core ExperienceEvent XDM is used to capture observations that are altering o * [Commerce](commerce.schema.md) `https://ns.adobe.com/xdm/context/commerce` * [Application](../channels/application.schema.md) `https://ns.adobe.com/xdm/channels/application` * [Search](search.schema.md) `https://ns.adobe.com/xdm/context/search` - * [Web](../channels/web.schema.md) `https://ns.adobe.com/xdm/channels/web` + * [Web Information](webinfo.schema.md) `https://ns.adobe.com/xdm/context/webinfo` * [Marketing](marketing.schema.md) `https://ns.adobe.com/xdm/context/marketing` - * [Location Context](locationcontext.schema.md) `https://ns.adobe.com/xdm/context/locationcontext` + * [Place Context](placecontext.schema.md) `https://ns.adobe.com/xdm/context/placecontext` ## ExperienceEvent Example ```json @@ -120,7 +120,7 @@ The core ExperienceEvent XDM is used to capture observations that are altering o "xdm:priceTotal": 159 } }, - "xdm:locationContext": { + "xdm:placeContext": { "xdm:localTime": "2017-09-26T15:52:25+13:00", "xdm:geo": { "@id": "https://data.adobe.io/entities/geo/tokyo", @@ -132,6 +132,20 @@ The core ExperienceEvent XDM is used to capture observations that are altering o "schema:longitude": 139.73237 } }, + "xdm:web": { + "xdm:webPageView": { + "xdm:siteSection": "Shopping Cart", + "xdm:server": "example.com", + "xdm:name": "Purchase Confirmation", + "xdm:URL": "https://www.example.com/orderConf", + "xdm:errorPage": false, + "xdm:homePage": false + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/checkout", + "xdm:referrerType": "internal" + } + }, "xdm:marketing": { "xdm:trackingCode": "marketingcampaign111" } @@ -150,13 +164,13 @@ The core ExperienceEvent XDM is used to capture observations that are altering o | [xdm:device](#xdmdevice) | Device | Optional | ExperienceEvent (this schema) | | [xdm:endUserIDs](#xdmenduserids) | End User IDs | Optional | ExperienceEvent (this schema) | | [xdm:environment](#xdmenvironment) | Environment | Optional | ExperienceEvent (this schema) | -| [xdm:locationContext](#xdmlocationcontext) | Location Context | Optional | ExperienceEvent (this schema) | | [xdm:marketing](#xdmmarketing) | Marketing | Optional | ExperienceEvent (this schema) | | [xdm:metrics](#xdmmetrics) | Metrics | Optional | ExperienceEvent (this schema) | +| [xdm:placeContext](#xdmplacecontext) | Place Context | Optional | ExperienceEvent (this schema) | | [xdm:productListItems](#xdmproductlistitems) | Product List Item | Optional | ExperienceEvent (this schema) | | [xdm:search](#xdmsearch) | Search | Optional | ExperienceEvent (this schema) | | [xdm:timestamp](#xdmtimestamp) | `string` | Optional | ExperienceEvent (this schema) | -| [xdm:web](#xdmweb) | Web | Optional | ExperienceEvent (this schema) | +| [xdm:web](#xdmweb) | Web Information | Optional | ExperienceEvent (this schema) | | `*` | any | Additional | this schema *allows* additional properties | ## @id @@ -341,25 +355,6 @@ Information about the surrounding situation the event observation occurred in, s -## xdm:locationContext -### Location Context - -The transient circumstances related to the observation. Examples include locale specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours. - -`xdm:locationContext` -* is optional -* type: Location Context -* defined in this schema - -### xdm:locationContext Type - - -* [Location Context](locationcontext.schema.md) – `https://ns.adobe.com/xdm/context/locationcontext` - - - - - ## xdm:marketing ### Marketing @@ -398,6 +393,25 @@ The metrics for actions performed during this observation. +## xdm:placeContext +### Place Context + +The transient circumstances related to the observation. Examples include locale specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours. + +`xdm:placeContext` +* is optional +* type: Place Context +* defined in this schema + +### xdm:placeContext Type + + +* [Place Context](placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` + + + + + ## xdm:productListItems ### Product List Items @@ -471,13 +485,13 @@ The information related to web page and link of the ExperienceEvent. `xdm:web` * is optional -* type: Web +* type: Web Information * defined in this schema ### xdm:web Type -* [Web](../channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` +* [Web Information](webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` diff --git a/docs/reference/context/placecontext.schema.json b/docs/reference/context/placecontext.schema.json new file mode 100644 index 0000000000..982731def1 --- /dev/null +++ b/docs/reference/context/placecontext.schema.json @@ -0,0 +1,50 @@ +{ + "meta:license": [ + "Copyright 2017 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/placecontext", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Place Context", + "type": "object", + "description": "The transient circumstances related to the place or physical location of the observation. \nExamples include location specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours.\n", + "definitions": { + "placecontext": { + "properties": { + "xdm:localTime": { + "title": "Local Time", + "type": "string", + "format": "date-time", + "description": "The local time using RFC3339 with a stated timezone offset such as \"2001-07-04T12:08:56-07:00\". An example formatting pattern is \"yyyy-MM-dd'T'HH:mm:ssXXX\"." + }, + "xdm:geo": { + "title": "Geo", + "$ref": "https://ns.adobe.com/xdm/common/geo", + "description": "The geographic location where the experience was delivered ." + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/placecontext" + } + ], + "meta:status": "experimental", + "examples": [ + { + "xdm:localTime": "2001-07-04T12:08:56+01:00", + "xdm:geo": { + "@id": "https://data.adobe.io/entities/geo/tokyo", + "xdm:countryCode": "JP", + "xdm:stateProvince": "JP-13", + "xdm:city": "Tōkyō", + "xdm:postalCode": "141-0032", + "schema:latitude": 35.6185, + "schema:longitude": 139.73237 + } + } + ] +} \ No newline at end of file diff --git a/docs/reference/context/placecontext.schema.md b/docs/reference/context/placecontext.schema.md new file mode 100644 index 0000000000..a4bfafa74a --- /dev/null +++ b/docs/reference/context/placecontext.schema.md @@ -0,0 +1,83 @@ + +# Place Context Schema + +``` +https://ns.adobe.com/xdm/context/placecontext +``` + +The transient circumstances related to the place or physical location of the observation. +Examples include location specific information such as weather, local time, traffic, day of the week, workday vs. holiday, working hours. + + +| Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | +|----------|------------|--------|-------------------|-----------------------|------------| +| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/placecontext.schema.json](context/placecontext.schema.json) | + +## Schema Hierarchy + +* Place Context `https://ns.adobe.com/xdm/context/placecontext` + * [Geo](../common/geo.schema.md) `https://ns.adobe.com/xdm/common/geo` + +## Place Context Example +```json +{ + "xdm:localTime": "2001-07-04T12:08:56+01:00", + "xdm:geo": { + "@id": "https://data.adobe.io/entities/geo/tokyo", + "xdm:countryCode": "JP", + "xdm:stateProvince": "JP-13", + "xdm:city": "Tōkyō", + "xdm:postalCode": "141-0032", + "schema:latitude": 35.6185, + "schema:longitude": 139.73237 + } +} +``` + +# Place Context Properties + +| Property | Type | Required | Defined by | +|----------|------|----------|------------| +| [xdm:geo](#xdmgeo) | Geo | Optional | Place Context (this schema) | +| [xdm:localTime](#xdmlocaltime) | `string` | Optional | Place Context (this schema) | +| `*` | any | Additional | this schema *allows* additional properties | + +## xdm:geo +### Geo + +The geographic location where the experience was delivered . + +`xdm:geo` +* is optional +* type: Geo +* defined in this schema + +### xdm:geo Type + + +* [Geo](../common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` + + + + + +## xdm:localTime +### Local Time + +The local time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". + +`xdm:localTime` +* is optional +* type: `string` +* defined in this schema + +### xdm:localTime Type + + +`string` +* format: `date-time` – date and time (according to [RFC 3339, section 5.6](http://tools.ietf.org/html/rfc3339)) + + + + + diff --git a/docs/reference/context/webinfo.schema.json b/docs/reference/context/webinfo.schema.json new file mode 100644 index 0000000000..16eed84601 --- /dev/null +++ b/docs/reference/context/webinfo.schema.json @@ -0,0 +1,74 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/webinfo", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web Information", + "type": "object", + "description": "Information recorded via an `ExperienceEvent` that is specific to the World Wide Web channel, including the web page, referrer and/or link related to the on-page interaction.\n", + "definitions": { + "webinfo": { + "properties": { + "xdm:webPageView": { + "title": "Web Page View", + "$ref": "https://ns.adobe.com/xdm/context/webpageview", + "description": "Details about the web page where the web interaction occurred." + }, + "xdm:webInteraction": { + "title": "Web Interaction", + "$ref": "https://ns.adobe.com/xdm/context/webinteraction", + "description": "Details about the web link (URL) that corresponds to where the interaction occurred." + }, + "xdm:webReferrer": { + "title": "Web Referrer", + "$ref": "https://ns.adobe.com/xdm/context/webreferrer", + "description": "The referrer of a web interaction, which is the URL a visitor came from immediately before the current web interaction was recorded." + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/webinfo" + } + ], + "examples": [ + { + "xdm:webPageView": { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", + "xdm:errorPage": false, + "xdm:homePage": true + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" + } + }, + { + "xdm:webPageView": { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", + "xdm:errorPage": false, + "xdm:homePage": true + }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" + } + } + ] +} \ No newline at end of file diff --git a/docs/reference/context/webinfo.schema.md b/docs/reference/context/webinfo.schema.md new file mode 100644 index 0000000000..115a55858d --- /dev/null +++ b/docs/reference/context/webinfo.schema.md @@ -0,0 +1,128 @@ + +# Web Information Schema + +``` +https://ns.adobe.com/xdm/context/webinfo +``` + +Information recorded via an `ExperienceEvent` that is specific to the World Wide Web channel, including the web page, referrer and/or link related to the on-page interaction. + + +| Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | +|----------|------------|--------|-------------------|-----------------------|------------| +| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/webinfo.schema.json](context/webinfo.schema.json) | + +## Schema Hierarchy + +* Web Information `https://ns.adobe.com/xdm/context/webinfo` + * [Web Page View](webpageview.schema.md) `https://ns.adobe.com/xdm/context/webpageview` + * [Web Interaction](webinteraction.schema.md) `https://ns.adobe.com/xdm/context/webinteraction` + * [Web Referrer](webreferrer.schema.md) `https://ns.adobe.com/xdm/context/webreferrer` + +## Web Information Examples + +```json +{ + "xdm:webPageView": { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", + "xdm:errorPage": false, + "xdm:homePage": true + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" + } +} +``` + +```json +{ + "xdm:webPageView": { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com/products", + "xdm:errorPage": false, + "xdm:homePage": true + }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, + "xdm:webReferrer": { + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" + } +} +``` + + +# Web Information Properties + +| Property | Type | Required | Defined by | +|----------|------|----------|------------| +| [xdm:webInteraction](#xdmwebinteraction) | Web Interaction | Optional | Web Information (this schema) | +| [xdm:webPageView](#xdmwebpageview) | Web Page View | Optional | Web Information (this schema) | +| [xdm:webReferrer](#xdmwebreferrer) | Web Referrer | Optional | Web Information (this schema) | +| `*` | any | Additional | this schema *allows* additional properties | + +## xdm:webInteraction +### Web Interaction + +Details about the web link (URL) that corresponds to where the interaction occurred. + +`xdm:webInteraction` +* is optional +* type: Web Interaction +* defined in this schema + +### xdm:webInteraction Type + + +* [Web Interaction](webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` + + + + + +## xdm:webPageView +### Web Page View + +Details about the web page where the web interaction occurred. + +`xdm:webPageView` +* is optional +* type: Web Page View +* defined in this schema + +### xdm:webPageView Type + + +* [Web Page View](webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` + + + + + +## xdm:webReferrer +### Web Referrer + +The referrer of a web interaction, which is the URL a visitor came from immediately before the current web interaction was recorded. + +`xdm:webReferrer` +* is optional +* type: Web Referrer +* defined in this schema + +### xdm:webReferrer Type + + +* [Web Referrer](webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` + + + + diff --git a/docs/reference/context/webinteraction.schema.json b/docs/reference/context/webinteraction.schema.json new file mode 100644 index 0000000000..0ae3bbbbaf --- /dev/null +++ b/docs/reference/context/webinteraction.schema.json @@ -0,0 +1,57 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/webinteraction", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web Interaction", + "type": "object", + "description": "The Web Interaction schema captures information about interactions that happened on a web page after the intial page load (see also Web Page View) was completed.\n\nIt is intended for recording interactions in rich web applications that do not trigger a new page load such as single page web apps (SPAs).\n", + "definitions": { + "webinteraction": { + "properties": { + "xdm:type": { + "title": "Type", + "type": "string", + "description": "The link type.", + "enum": [ + "download", + "exit", + "other" + ], + "meta:enum": { + "download": "Download", + "exit": "Exit", + "other": "Other" + } + }, + "xdm:URL": { + "title": "URL", + "type": "string", + "description": "The actual link/URL used for this web interaction" + }, + "xdm:name": { + "title": "Name", + "type": "string", + "description": "The normative name used for this web link, used for classification purposes" + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/webinteraction" + } + ], + "meta:status": "experimental", + "examples": [ + { + "xdm:type": "other", + "xdm:URL": "https://www.example.com/products/store/?view=1", + "xdm:name": "product store" + } + ] +} \ No newline at end of file diff --git a/docs/reference/context/webinteraction.schema.md b/docs/reference/context/webinteraction.schema.md new file mode 100644 index 0000000000..e69dec1a76 --- /dev/null +++ b/docs/reference/context/webinteraction.schema.md @@ -0,0 +1,95 @@ + +# Web Interaction Schema + +``` +https://ns.adobe.com/xdm/context/webinteraction +``` + +The Web Interaction schema captures information about interactions that happened on a web page after the intial page load (see also Web Page View) was completed. + +It is intended for recording interactions in rich web applications that do not trigger a new page load such as single page web apps (SPAs). + + +| Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | +|----------|------------|--------|-------------------|-----------------------|------------| +| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/webinteraction.schema.json](context/webinteraction.schema.json) | + +## Web Interaction Example +```json +{ + "xdm:type": "other", + "xdm:URL": "https://www.example.com/products/store/?view=1", + "xdm:name": "product store" +} +``` + +# Web Interaction Properties + +| Property | Type | Required | Defined by | +|----------|------|----------|------------| +| [xdm:URL](#xdmurl) | `string` | Optional | Web Interaction (this schema) | +| [xdm:name](#xdmname) | `string` | Optional | Web Interaction (this schema) | +| [xdm:type](#xdmtype) | `enum` | Optional | Web Interaction (this schema) | +| `*` | any | Additional | this schema *allows* additional properties | + +## xdm:URL +### URL + +The actual link/URL used for this web interaction + +`xdm:URL` +* is optional +* type: `string` +* defined in this schema + +### xdm:URL Type + + +`string` + + + + + + +## xdm:name +### Name + +The normative name used for this web link, used for classification purposes + +`xdm:name` +* is optional +* type: `string` +* defined in this schema + +### xdm:name Type + + +`string` + + + + + + +## xdm:type +### Type + +The link type. + +`xdm:type` +* is optional +* type: `enum` +* defined in this schema + +The value of this property **must** be equal to one of the [known values below](#xdm:type-known-values). + +### xdm:type Known Values +| Value | Description | +|-------|-------------| +| `download` | Download | +| `exit` | Exit | +| `other` | Other | + + + diff --git a/docs/reference/context/webpageview.schema.json b/docs/reference/context/webpageview.schema.json new file mode 100644 index 0000000000..afa5f9e7f0 --- /dev/null +++ b/docs/reference/context/webpageview.schema.json @@ -0,0 +1,67 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/webpageview", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web Page View", + "type": "object", + "description": "Details about the web page that has just been loaded and viewed, as recorded by an `ExperienceEvent`.\n\nThis schema is intended for full page views and initial page loads of single page web applications (SPAs).\nFor interactions that are happening on a loaded page that do not trigger a new page load, see `WebInteraction`.\n", + "definitions": { + "webpageview": { + "properties": { + "xdm:siteSection": { + "title": "Site Section", + "type": "string", + "description": "The normative name of the site section where this web page resides, which may be used to classify or categorize the interaction" + }, + "xdm:name": { + "title": "Name", + "type": "string", + "description": "The normative name of the web page. This name is not necessarily the page title or directy associate with page content, but is used to organize a site's pages for classification purposes" + }, + "xdm:URL": { + "title": "URL", + "type": "string", + "format": "uri", + "description": "The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `Web Link`." + }, + "xdm:server": { + "title": "Server", + "type": "string", + "format": "hostname", + "description": "The normative or usual server that hosts the web page. This may or may not be the host or server that actually served the page interaction, but is used for classification purposes." + }, + "xdm:isErrorPage": { + "title": "Is Error Page", + "type": "boolean", + "description": "Flag that indicate if the page is error page or not. Error here is defined by the application, and may nor may not correspond to a page served with an HTTP error code. This flag is used to broadly categorize web interactions." + }, + "xdm:isHomePage": { + "title": "Is Home Page", + "type": "boolean", + "description": "Flag that indicate if the page is the site home page or not. The definition of home page is determined by the application, but is commonly used to designate a top level landing page or common site entry point. This flag is used to broadly categorize web interactions." + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/webpageview" + } + ], + "meta:status": "experimental", + "examples": [ + { + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com", + "xdm:errorPage": false, + "xdm:homePage": true + } + ] +} \ No newline at end of file diff --git a/docs/reference/context/webpageview.schema.md b/docs/reference/context/webpageview.schema.md new file mode 100644 index 0000000000..fd3953eda8 --- /dev/null +++ b/docs/reference/context/webpageview.schema.md @@ -0,0 +1,160 @@ + +# Web Page View Schema + +``` +https://ns.adobe.com/xdm/context/webpageview +``` + +Details about the web page that has just been loaded and viewed, as recorded by an `ExperienceEvent`. + +This schema is intended for full page views and initial page loads of single page web applications (SPAs). +For interactions that are happening on a loaded page that do not trigger a new page load, see `WebInteraction`. + + +| Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | +|----------|------------|--------|-------------------|-----------------------|------------| +| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/webpageview.schema.json](context/webpageview.schema.json) | + +## Web Page View Example +```json +{ + "xdm:siteSection": "Product section", + "xdm:server": "example.com", + "xdm:name": "product home", + "xdm:URL": "https://www.example.com", + "xdm:errorPage": false, + "xdm:homePage": true +} +``` + +# Web Page View Properties + +| Property | Type | Required | Defined by | +|----------|------|----------|------------| +| [xdm:URL](#xdmurl) | `string` | Optional | Web Page View (this schema) | +| [xdm:isErrorPage](#xdmiserrorpage) | `boolean` | Optional | Web Page View (this schema) | +| [xdm:isHomePage](#xdmishomepage) | `boolean` | Optional | Web Page View (this schema) | +| [xdm:name](#xdmname) | `string` | Optional | Web Page View (this schema) | +| [xdm:server](#xdmserver) | `string` | Optional | Web Page View (this schema) | +| [xdm:siteSection](#xdmsitesection) | `string` | Optional | Web Page View (this schema) | +| `*` | any | Additional | this schema *allows* additional properties | + +## xdm:URL +### URL + +The normative or usual URL of the web page. This may or may not be the actual URL used to reach the page, which would be recorded using `Web Link`. + +`xdm:URL` +* is optional +* type: `string` +* defined in this schema + +### xdm:URL Type + + +`string` +* format: `uri` – Uniformous Resource Identifier (according to [RFC3986](http://tools.ietf.org/html/rfc3986)) + + + + + + +## xdm:isErrorPage +### Is Error Page + +Flag that indicate if the page is error page or not. Error here is defined by the application, and may nor may not correspond to a page served with an HTTP error code. This flag is used to broadly categorize web interactions. + +`xdm:isErrorPage` +* is optional +* type: `boolean` +* defined in this schema + +### xdm:isErrorPage Type + + +`boolean` + + + + + +## xdm:isHomePage +### Is Home Page + +Flag that indicate if the page is the site home page or not. The definition of home page is determined by the application, but is commonly used to designate a top level landing page or common site entry point. This flag is used to broadly categorize web interactions. + +`xdm:isHomePage` +* is optional +* type: `boolean` +* defined in this schema + +### xdm:isHomePage Type + + +`boolean` + + + + + +## xdm:name +### Name + +The normative name of the web page. This name is not necessarily the page title or directy associate with page content, but is used to organize a site's pages for classification purposes + +`xdm:name` +* is optional +* type: `string` +* defined in this schema + +### xdm:name Type + + +`string` + + + + + + +## xdm:server +### Server + +The normative or usual server that hosts the web page. This may or may not be the host or server that actually served the page interaction, but is used for classification purposes. + +`xdm:server` +* is optional +* type: `string` +* defined in this schema + +### xdm:server Type + + +`string` +* format: `hostname` – Domain Name (according to [RFC 1034, section 3.1](https://tools.ietf.org/html/rfc1034)) + + + + + + +## xdm:siteSection +### Site Section + +The normative name of the site section where this web page resides, which may be used to classify or categorize the interaction + +`xdm:siteSection` +* is optional +* type: `string` +* defined in this schema + +### xdm:siteSection Type + + +`string` + + + + + diff --git a/docs/reference/context/webreferrer.schema.json b/docs/reference/context/webreferrer.schema.json new file mode 100644 index 0000000000..60b98eed7e --- /dev/null +++ b/docs/reference/context/webreferrer.schema.json @@ -0,0 +1,61 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/webreferrer", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Web Referrer", + "type": "object", + "description": "The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded.\nThe information in this schema is semantically compatible with the information in the HTTP `referer` header field, but allows for additional classification.\n\n> **Note:** While the [HTTP specification](https://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z14) uses the term \"referer\", XDM follows the [Document Object Model specification ](https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-95229140) and uses the spelling \"referrer\", which is more widely accepted as the correct spelling.\n", + "definitions": { + "webreferrer": { + "properties": { + "xdm:URL": { + "title": "URL", + "type": "string", + "description": "The referrer URL." + }, + "xdm:type": { + "title": "Type", + "type": "string", + "description": "The referrer type.", + "enum": [ + "internal", + "external", + "search_engine", + "typed_bookmarked", + "email", + "social", + "unknown", + "usenet" + ], + "meta:enum": { + "internal": "Referral originated from the current domain or site.", + "external": "Referral originated from a different domain or site that was not a search or social type.", + "search_engine": "Search engine referrers are identified when visitors use a search engine to access the site.", + "typed_bookmarked": "Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks.", + "email": "A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site.", + "social": "The referrer is identified as a social network.", + "unknown": "The referrer is unidentifiable (unknown). `No JavaScript` could be the cause.", + "news": "The URL of a referrer started with news://. As such, the referrer link was posted on a Usenet newsgroup rather than a web page." + } + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/webreferrer" + } + ], + "meta:status": "experimental", + "examples": [ + { + "xdm:URL": "https://www.some-adserver.com", + "xdm:type": "external" + } + ] +} \ No newline at end of file diff --git a/docs/reference/context/webreferrer.schema.md b/docs/reference/context/webreferrer.schema.md new file mode 100644 index 0000000000..5433f7edc7 --- /dev/null +++ b/docs/reference/context/webreferrer.schema.md @@ -0,0 +1,80 @@ + +# Web Referrer Schema + +``` +https://ns.adobe.com/xdm/context/webreferrer +``` + +The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded. +The information in this schema is semantically compatible with the information in the HTTP `referer` header field, but allows for additional classification. + +> **Note:** While the [HTTP specification](https://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z14) uses the term "referer", XDM follows the [Document Object Model specification ](https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-95229140) and uses the spelling "referrer", which is more widely accepted as the correct spelling. + + +| Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | +|----------|------------|--------|-------------------|-----------------------|------------| +| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/webreferrer.schema.json](context/webreferrer.schema.json) | + +## Web Referrer Example +```json +{ + "xdm:URL": "https://www.some-adserver.com", + "xdm:type": "external" +} +``` + +# Web Referrer Properties + +| Property | Type | Required | Defined by | +|----------|------|----------|------------| +| [xdm:URL](#xdmurl) | `string` | Optional | Web Referrer (this schema) | +| [xdm:type](#xdmtype) | `enum` | Optional | Web Referrer (this schema) | +| `*` | any | Additional | this schema *allows* additional properties | + +## xdm:URL +### URL + +The referrer URL. + +`xdm:URL` +* is optional +* type: `string` +* defined in this schema + +### xdm:URL Type + + +`string` + + + + + + +## xdm:type +### Type + +The referrer type. + +`xdm:type` +* is optional +* type: `enum` +* defined in this schema + +The value of this property **must** be equal to one of the [known values below](#xdm:type-known-values). + +### xdm:type Known Values +| Value | Description | +|-------|-------------| +| `internal` | Referral originated from the current domain or site. | +| `external` | Referral originated from a different domain or site that was not a search or social type. | +| `search_engine` | Search engine referrers are identified when visitors use a search engine to access the site. | +| `typed_bookmarked` | Typed/bookmarked referrers are identified when visitors type your site’s URL directly into their browser, or if they access the site by selecting bookmarks. | +| `email` | A referring domain is considered as an email referring domain type when visitors click an emailed message link containing the protocol imap:// or mail:// and arrive at the site. | +| `social` | The referrer is identified as a social network. | +| `unknown` | The referrer is unidentifiable (unknown). `No JavaScript` could be the cause. | +| `news` | The URL of a referrer started with news://. As such, the referrer link was posted on a Usenet newsgroup rather than a web page. | +| `usenet` | | + + + From 0b6752035c87ea1f0349be29fd13ee9452baaa50 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 15:44:55 +0000 Subject: [PATCH 091/127] [ci skip] updating documentation --- docs/reference/README.md | 84 +++++------ .../common/eventenvelope.schema.json | 42 +++--- docs/reference/common/eventenvelope.schema.md | 42 +++--- docs/reference/common/extensible.schema.json | 6 +- docs/reference/common/extensible.schema.md | 6 +- .../content/page-component.schema.json | 8 +- .../content/page-component.schema.md | 14 +- .../reference/context/person-name.schema.json | 10 +- docs/reference/context/person-name.schema.md | 14 +- docs/reference/data/metrics.schema.json | 83 ++++++++--- docs/reference/data/metrics.schema.md | 135 +++++++++++++++++- docs/reference/external/hal/hal.schema.json | 48 +++---- docs/reference/external/hal/hal.schema.md | 54 +++---- .../external/repo/directory.schema.json | 12 +- .../external/repo/directory.schema.md | 12 +- 15 files changed, 373 insertions(+), 197 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index e0ad82022e..8109f0e8de 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -20,29 +20,6 @@ * [Rectangular Object (measured in variable unit)](./assets/variable-unit-rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` * [Video](./assets/video.schema.md) – `https://ns.adobe.com/xdm/assets/video` -## /content/ - -* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` -* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` -* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` -* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` -* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` -* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` -* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` - -## /common/ - -* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` -* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` -* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` -* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` -* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` -* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` -* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` -* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` -* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` -* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` - ## /channels/ * [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` @@ -66,14 +43,37 @@ * [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` * [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` +## /content/ + +* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` +* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` +* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` +* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` +* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` +* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` +* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` + +## /common/ + +* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` +* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` +* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` +* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` +* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` +* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` +* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` +* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` +* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` +* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` + ## /context/ * [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` * [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` * [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` -* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` * [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` * [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` +* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` * [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` * [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` * [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` @@ -107,8 +107,8 @@ * [Metric](./data/metric.schema.md) – `https://ns.adobe.com/xdm/data/metric` * [Metrics](./data/metrics.schema.md) – `https://ns.adobe.com/xdm/data/metrics` * [mirror-pages](./data/mirror-pages.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages` -* [non-deliverables](./data/non-deliverables.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables` * [not-sent](./data/not-sent.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/not-sent` +* [non-deliverables](./data/non-deliverables.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables` * [opens](./data/opens.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/opens` * [Order](./data/order.schema.md) – `https://ns.adobe.com/xdm/data/order` * [page-views](./data/page-views.schema.md) – `https://ns.adobe.com/xdm/data/metrics/web/page-views` @@ -131,16 +131,6 @@ * [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` * [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` -## /common/event/ - -* [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` -* [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` -* [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` -* [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` -* [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` -* [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` -* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` - ## /external/activity-streams-2/ * [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` @@ -148,30 +138,40 @@ * [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` * [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` * [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` -* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` * [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` +* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` * [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` * [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` * [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` * [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` +## /common/event/ + +* [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` +* [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` +* [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` +* [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` +* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` +* [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` +* [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` + ## /external/schema/ * [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` * [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` * [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` -## /external/hal/ - -* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` -* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` - ## /external/repo/ * [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` * [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` +* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` * [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` * [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` * [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` * [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` -* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` + +## /external/hal/ + +* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` +* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index c31226be58..397a17c3c4 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -69,27 +69,26 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } }, { @@ -117,26 +116,27 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } }, { diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index 19944e3721..4d4337d5b3 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -51,27 +51,26 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } } ``` @@ -105,26 +104,27 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ``` diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index 3f36a1c6b5..f48b6bb20e 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -251,13 +251,14 @@ "meta:status": "stabilizing", "examples": [ { + "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, @@ -265,14 +266,13 @@ "repo:etag": "15" }, { - "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index 35d419fa86..00baf0f9c5 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -27,13 +27,14 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ```json { + "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, @@ -44,14 +45,13 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ```json { - "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index f16502a736..dd49beb513 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,10 +32,6 @@ ], "meta:status": "experimental", "examples": [ - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" - }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -43,6 +39,10 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } + }, + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index 420cf10e6b..befc3dca0b 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -21,13 +21,6 @@ The type determines how the component will be displayed, rendered, and authored. ## Page Component Examples -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` - ```json { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", @@ -39,6 +32,13 @@ The type determines how the component will be displayed, rendered, and authored. } ``` +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + # Page Component Properties diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index 0f7af5cfa8..f92e84b74f 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -48,17 +48,17 @@ ], "meta:status": "experimental", "examples": [ + { + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" + }, { "xdm:firstName": "John", "xdm:middleName": "S", "xdm:lastName": "Doe", "xdm:fullName": "John S. Doe" }, - { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" - }, { "xdm:firstName": "فلانة", "xdm:lastName": "الفلانية", diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index 603043eeab..cef98e0514 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -18,18 +18,18 @@ In addition, a number of optional properties are made available that can be used ```json { - "xdm:firstName": "John", - "xdm:middleName": "S", - "xdm:lastName": "Doe", - "xdm:fullName": "John S. Doe" + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" } ``` ```json { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" + "xdm:firstName": "John", + "xdm:middleName": "S", + "xdm:lastName": "Doe", + "xdm:fullName": "John S. Doe" } ``` diff --git a/docs/reference/data/metrics.schema.json b/docs/reference/data/metrics.schema.json index bc44e86e90..1c54341d7c 100644 --- a/docs/reference/data/metrics.schema.json +++ b/docs/reference/data/metrics.schema.json @@ -9,7 +9,7 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Metrics", "type": "object", - "description": "This is map of metrics and measues. Each key is the valid URI of a known `Metric`. Each value is a `Measure`, i.e. a concrete data point.", + "description": "This is map of metrics and measures. Each key is the valid URI of a known `Metric`. Each value is a `Measure`, i.e. a concrete data point.", "definitions": { "metrics": { "patternProperties": { @@ -19,61 +19,104 @@ }, "properties": { "https://ns.adobe.com/xdm/data/metrics/commerce/abandons": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "A product-list has been identified as no longer accessible (e.g purchasable) by the user." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/bounces": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Asynchronous message(s) that have been returned as temporarily undeliverable the receiving system." }, "https://ns.adobe.com/xdm/data/metrics/commerce/checkouts": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "An action during a checkout process of a product-list, there can be more than one checkout event if there are multiple steps in a checkout process. If there are multiple steps the event time information and referenced page or experience is used to identify the step individual events represent in order." }, "https://ns.adobe.com/xdm/data/metrics/advertising/clicks": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Click(s) actions on an advertisement." + }, + "https://ns.adobe.com/xdm/data/metrics/application/closes": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Graceful termination(s) of an application." + }, + "https://ns.adobe.com/xdm/data/metrics/application/crashes": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Triggered when the application does not exit gracefully. Event is sent on application launch after a crash." + }, + "https://ns.adobe.com/xdm/data/metrics/application/featureusages": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Activation(s) of an application feature that is being measured." + }, + "https://ns.adobe.com/xdm/data/metrics/application/installs": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Install of an application on a device. Triggered on first launch after install." }, "https://ns.adobe.com/xdm/data/metrics/advertising/impressions": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Impression(s) of an advertisement to an end user with the potential of being viewed." }, "https://ns.adobe.com/xdm/data/metrics/web/link-clicks": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Click of a web-link has occurred." + }, + "https://ns.adobe.com/xdm/data/metrics/application/launches": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Click on a link in a message to a web hosted mirror page." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Asynchronous message(s) failed to deliver in a way that indicates that no future delivery attempts will be successful to the address." }, "https://ns.adobe.com/xdm/data/metrics/web/page-views": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "View(s) of a webpage has occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Addition of a product to the product-list. Example a product is added to a shopping cart." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-opens": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Initializations of a new product-list. Example a shopping cart is created." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-removals": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Removal(s) of a product entry from a product-list. Example a product is removed from a shopping cart." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-reopens": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "A product-list that was no longer accessible(abandoned) has been re-activated by the user. Example via a re-marketing activity." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-list-views": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "View(s) of a product-list has occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/product-views": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "View(s) of a product have occurred." }, "https://ns.adobe.com/xdm/data/metrics/commerce/purchases": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "An order has been accepted. Purchase is the only required action in a commerce conversion. Purchase must have a product-list referenced." }, "https://ns.adobe.com/xdm/data/metrics/commerce/save-for-laters": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Product-list is saved for future use. Example a product wish list." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a person's account/address/device." + }, + "https://ns.adobe.com/xdm/data/metrics/application/upgrades": { + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "Upgrade of an application that has previously been installed. Triggered on first launch after upgrade." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints": { - "$ref": "https://ns.adobe.com/xdm/data/measure" + "$ref": "https://ns.adobe.com/xdm/data/measure", + "description": "User complaint(s) have been received. This generally occurs when a recipient of a message reports it as spam." }, "https://ns.adobe.com/xdm/data/metrics/direct-marketing/opens": { "$ref": "https://ns.adobe.com/xdm/data/measure", diff --git a/docs/reference/data/metrics.schema.md b/docs/reference/data/metrics.schema.md index 05948e00f9..665eb83a4f 100644 --- a/docs/reference/data/metrics.schema.md +++ b/docs/reference/data/metrics.schema.md @@ -5,7 +5,7 @@ https://ns.adobe.com/xdm/data/metrics ``` -This is map of metrics and measues. Each key is the valid URI of a known `Metric`. Each value is a `Measure`, i.e. a concrete data point. +This is map of metrics and measures. Each key is the valid URI of a known `Metric`. Each value is a `Measure`, i.e. a concrete data point. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| @@ -40,6 +40,12 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric |----------|------|----------|------------| | [https://ns.adobe.com/xdm/data/metrics/advertising/clicks](#https//ns.adobe.com/xdm/data/metrics/advertising/clicks) | Measure | Optional | Metrics (this schema) | | [https://ns.adobe.com/xdm/data/metrics/advertising/impressions](#https//ns.adobe.com/xdm/data/metrics/advertising/impressions) | Measure | Optional | Metrics (this schema) | +| [https://ns.adobe.com/xdm/data/metrics/application/closes](#https//ns.adobe.com/xdm/data/metrics/application/closes) | Measure | Optional | Metrics (this schema) | +| [https://ns.adobe.com/xdm/data/metrics/application/crashes](#https//ns.adobe.com/xdm/data/metrics/application/crashes) | Measure | Optional | Metrics (this schema) | +| [https://ns.adobe.com/xdm/data/metrics/application/featureusages](#https//ns.adobe.com/xdm/data/metrics/application/featureusages) | Measure | Optional | Metrics (this schema) | +| [https://ns.adobe.com/xdm/data/metrics/application/installs](#https//ns.adobe.com/xdm/data/metrics/application/installs) | Measure | Optional | Metrics (this schema) | +| [https://ns.adobe.com/xdm/data/metrics/application/launches](#https//ns.adobe.com/xdm/data/metrics/application/launches) | Measure | Optional | Metrics (this schema) | +| [https://ns.adobe.com/xdm/data/metrics/application/upgrades](#https//ns.adobe.com/xdm/data/metrics/application/upgrades) | Measure | Optional | Metrics (this schema) | | [https://ns.adobe.com/xdm/data/metrics/commerce/abandons](#https//ns.adobe.com/xdm/data/metrics/commerce/abandons) | Measure | Optional | Metrics (this schema) | | [https://ns.adobe.com/xdm/data/metrics/commerce/checkouts](#https//ns.adobe.com/xdm/data/metrics/commerce/checkouts) | Measure | Optional | Metrics (this schema) | | [https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds](#https//ns.adobe.com/xdm/data/metrics/commerce/product-list-adds) | Measure | Optional | Metrics (this schema) | @@ -64,6 +70,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/advertising/clicks +Click(s) actions on an advertisement. `https://ns.adobe.com/xdm/data/metrics/advertising/clicks` * is optional @@ -81,6 +88,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/advertising/impressions +Impression(s) of an advertisement to an end user with the potential of being viewed. `https://ns.adobe.com/xdm/data/metrics/advertising/impressions` * is optional @@ -96,8 +104,117 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric +## https://ns.adobe.com/xdm/data/metrics/application/closes + +Graceful termination(s) of an application. + +`https://ns.adobe.com/xdm/data/metrics/application/closes` +* is optional +* type: Measure +* defined in this schema + +### https://ns.adobe.com/xdm/data/metrics/application/closes Type + + +* [Measure](measure.schema.md) – `https://ns.adobe.com/xdm/data/measure` + + + + + +## https://ns.adobe.com/xdm/data/metrics/application/crashes + +Triggered when the application does not exit gracefully. Event is sent on application launch after a crash. + +`https://ns.adobe.com/xdm/data/metrics/application/crashes` +* is optional +* type: Measure +* defined in this schema + +### https://ns.adobe.com/xdm/data/metrics/application/crashes Type + + +* [Measure](measure.schema.md) – `https://ns.adobe.com/xdm/data/measure` + + + + + +## https://ns.adobe.com/xdm/data/metrics/application/featureusages + +Activation(s) of an application feature that is being measured. + +`https://ns.adobe.com/xdm/data/metrics/application/featureusages` +* is optional +* type: Measure +* defined in this schema + +### https://ns.adobe.com/xdm/data/metrics/application/featureusages Type + + +* [Measure](measure.schema.md) – `https://ns.adobe.com/xdm/data/measure` + + + + + +## https://ns.adobe.com/xdm/data/metrics/application/installs + +Install of an application on a device. Triggered on first launch after install. + +`https://ns.adobe.com/xdm/data/metrics/application/installs` +* is optional +* type: Measure +* defined in this schema + +### https://ns.adobe.com/xdm/data/metrics/application/installs Type + + +* [Measure](measure.schema.md) – `https://ns.adobe.com/xdm/data/measure` + + + + + +## https://ns.adobe.com/xdm/data/metrics/application/launches + +Launch of an application. Triggered on every run, including crashes and installs. Also triggered on a resume from background when the lifecycle session timeout has been exceeded. + +`https://ns.adobe.com/xdm/data/metrics/application/launches` +* is optional +* type: Measure +* defined in this schema + +### https://ns.adobe.com/xdm/data/metrics/application/launches Type + + +* [Measure](measure.schema.md) – `https://ns.adobe.com/xdm/data/measure` + + + + + +## https://ns.adobe.com/xdm/data/metrics/application/upgrades + +Upgrade of an application that has previously been installed. Triggered on first launch after upgrade. + +`https://ns.adobe.com/xdm/data/metrics/application/upgrades` +* is optional +* type: Measure +* defined in this schema + +### https://ns.adobe.com/xdm/data/metrics/application/upgrades Type + + +* [Measure](measure.schema.md) – `https://ns.adobe.com/xdm/data/measure` + + + + + ## https://ns.adobe.com/xdm/data/metrics/commerce/abandons +A product-list has been identified as no longer accessible (e.g purchasable) by the user. `https://ns.adobe.com/xdm/data/metrics/commerce/abandons` * is optional @@ -115,6 +232,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/checkouts +An action during a checkout process of a product-list, there can be more than one checkout event if there are multiple steps in a checkout process. If there are multiple steps the event time information and referenced page or experience is used to identify the step individual events represent in order. `https://ns.adobe.com/xdm/data/metrics/commerce/checkouts` * is optional @@ -132,6 +250,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds +Addition of a product to the product-list. Example a product is added to a shopping cart. `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-adds` * is optional @@ -149,6 +268,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/product-list-opens +Initializations of a new product-list. Example a shopping cart is created. `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-opens` * is optional @@ -166,6 +286,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/product-list-removals +Removal(s) of a product entry from a product-list. Example a product is removed from a shopping cart. `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-removals` * is optional @@ -183,6 +304,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/product-list-reopens +A product-list that was no longer accessible(abandoned) has been re-activated by the user. Example via a re-marketing activity. `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-reopens` * is optional @@ -200,6 +322,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/product-list-views +View(s) of a product-list has occurred. `https://ns.adobe.com/xdm/data/metrics/commerce/product-list-views` * is optional @@ -217,6 +340,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/product-views +View(s) of a product have occurred. `https://ns.adobe.com/xdm/data/metrics/commerce/product-views` * is optional @@ -234,6 +358,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/purchases +An order has been accepted. Purchase is the only required action in a commerce conversion. Purchase must have a product-list referenced. `https://ns.adobe.com/xdm/data/metrics/commerce/purchases` * is optional @@ -251,6 +376,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/commerce/save-for-laters +Product-list is saved for future use. Example a product wish list. `https://ns.adobe.com/xdm/data/metrics/commerce/save-for-laters` * is optional @@ -268,6 +394,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/direct-marketing/bounces +Asynchronous message(s) that have been returned as temporarily undeliverable the receiving system. `https://ns.adobe.com/xdm/data/metrics/direct-marketing/bounces` * is optional @@ -285,6 +412,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages +Click on a link in a message to a web hosted mirror page. `https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages` * is optional @@ -302,6 +430,7 @@ This is map of metrics and measues. Each key is the valid URI of a known `Metric ## https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables +Asynchronous message(s) failed to deliver in a way that indicates that no future delivery attempts will be successful to the address. `https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables` * is optional @@ -355,6 +484,7 @@ The direct marketing message (email, SMS, Push Notifications etc) has been opene ## https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends +Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a person's account/address/device. `https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends` * is optional @@ -390,6 +520,7 @@ The recipient of the direct marketing message (email, newsletters, etc) has opte ## https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints +User complaint(s) have been received. This generally occurs when a recipient of a message reports it as spam. `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` * is optional @@ -407,6 +538,7 @@ The recipient of the direct marketing message (email, newsletters, etc) has opte ## https://ns.adobe.com/xdm/data/metrics/web/link-clicks +Click of a web-link has occurred. `https://ns.adobe.com/xdm/data/metrics/web/link-clicks` * is optional @@ -424,6 +556,7 @@ The recipient of the direct marketing message (email, newsletters, etc) has opte ## https://ns.adobe.com/xdm/data/metrics/web/page-views +View(s) of a webpage has occurred. `https://ns.adobe.com/xdm/data/metrics/web/page-views` * is optional diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 3fa44f9918..7bcb6625fb 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -296,30 +296,6 @@ "status": "shipped", "total": 10.2 }, - { - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 - }, { "_links": { "self": { @@ -364,6 +340,30 @@ "currency": "USD", "status": "shipped", "total": 10.2 + }, + { + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 } ] } \ No newline at end of file diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index b9c7815e1b..6389ecf343 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -39,33 +39,6 @@ This external schema definition allows adding HAL expressions into an existing s } ``` -```json -{ - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 -} -``` - ```json { "_links": { @@ -114,6 +87,33 @@ This external schema definition allows adding HAL expressions into an existing s } ``` +```json +{ + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 +} +``` + # HAL Resource Properties diff --git a/docs/reference/external/repo/directory.schema.json b/docs/reference/external/repo/directory.schema.json index a7360b6fc2..30816b7534 100644 --- a/docs/reference/external/repo/directory.schema.json +++ b/docs/reference/external/repo/directory.schema.json @@ -77,6 +77,12 @@ "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -96,12 +102,6 @@ "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", diff --git a/docs/reference/external/repo/directory.schema.md b/docs/reference/external/repo/directory.schema.md index 2b6d492471..1e62df598a 100644 --- a/docs/reference/external/repo/directory.schema.md +++ b/docs/reference/external/repo/directory.schema.md @@ -32,6 +32,12 @@ A directory in Adobe Cloud Platform. "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -54,12 +60,6 @@ A directory in Adobe Cloud Platform. "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", From 8ae96381f37efec9ab56374db8399aeaae9edc11 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Thu, 12 Apr 2018 11:55:06 -0400 Subject: [PATCH 092/127] Update package.json Resolved conflict --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c9c07dd03e..0c0fb47dc2 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 135 + "schemas": 136 }, "scripts": { "clean": "rm -rf docs/reference", From d9f8e90dedefa93f476214e3c017e650ef9fcff1 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Thu, 12 Apr 2018 11:56:23 -0400 Subject: [PATCH 093/127] Update package.json Increased minor version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0c0fb47dc2..7ddcc03c56 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdm", - "version": "0.5.6", + "version": "0.5.7", "description": "Experience Data Models", "main": "", "config": { From dcdfca205486a41dd0a5a2f3a5282a3b330cd820 Mon Sep 17 00:00:00 2001 From: cdegroot-adobe <35702142+cdegroot-adobe@users.noreply.github.com> Date: Thu, 12 Apr 2018 11:57:39 -0400 Subject: [PATCH 094/127] Update package.json Seems a schema was removed, changing "schemas": to 135 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7ddcc03c56..ae3c6e5bf7 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 136 + "schemas": 135 }, "scripts": { "clean": "rm -rf docs/reference", From 77a8f5e7f78774fdac4d3c048ead9bdbd433f299 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:03:16 -0400 Subject: [PATCH 095/127] Updated package.json to align with master --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ae3c6e5bf7..0c0fb47dc2 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "xdm", - "version": "0.5.7", + "version": "0.5.6", "description": "Experience Data Models", "main": "", "config": { "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 135 + "schemas": 136 }, "scripts": { "clean": "rm -rf docs/reference", From 8fb4d73fd75f04770ec2f80156915c18eb5eaa4b Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:04:32 -0400 Subject: [PATCH 096/127] set to 135 as per error message --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0c0fb47dc2..c9c07dd03e 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 136 + "schemas": 135 }, "scripts": { "clean": "rm -rf docs/reference", From a06ef40e1f8ce1c9364d6e49541096ac66a40f9a Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:06:40 -0400 Subject: [PATCH 097/127] Updating due to conflict --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c9c07dd03e..7ddcc03c56 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "xdm", - "version": "0.5.6", + "version": "0.5.7", "description": "Experience Data Models", "main": "", "config": { "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 135 + "schemas": 136 }, "scripts": { "clean": "rm -rf docs/reference", From f85c0a78fcfa1218349883190a0c8b9380a5f083 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:08:10 -0400 Subject: [PATCH 098/127] Getting confusing test errors, trying a newer minor version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7ddcc03c56..bdb492f356 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdm", - "version": "0.5.7", + "version": "0.5.8", "description": "Experience Data Models", "main": "", "config": { From f81fe47710edc2ddf05c0a8b16023d50509e34a5 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:09:02 -0400 Subject: [PATCH 099/127] set schemas to 135 as per error message --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bdb492f356..a8888cab00 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 136 + "schemas": 135 }, "scripts": { "clean": "rm -rf docs/reference", From 3417cc0bd9f7d9b5b75d64d3fb911015b9f21975 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:28:21 -0400 Subject: [PATCH 100/127] updated to .7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a8888cab00..ae3c6e5bf7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdm", - "version": "0.5.8", + "version": "0.5.7", "description": "Experience Data Models", "main": "", "config": { From 048b5330604b5622c0aae236f7723dab60eb67b0 Mon Sep 17 00:00:00 2001 From: cdegroot Date: Thu, 12 Apr 2018 12:31:36 -0400 Subject: [PATCH 101/127] scehmas:137 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ae3c6e5bf7..e93f1ee1b6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "aem_user": "packageUser", "aem_password": "override me securely", "markdown-importer-version": "0.0.4", - "schemas": 135 + "schemas": 137 }, "scripts": { "clean": "rm -rf docs/reference", From 950cfcd7148906988c29f31208ad6ffa423efc0b Mon Sep 17 00:00:00 2001 From: Andy Steed Date: Thu, 12 Apr 2018 12:43:39 -0700 Subject: [PATCH 102/127] Bump to version 0.9 --- README.md | 4 ++++ docs/introduction.md | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53df936903..add1f7bd73 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ The [Experience Data Model](https://www.adobe.io/open/standards/xdm) (XDM) is th XDM is a publicly documented specification, driven by Adobe to improve the interoperability, expressiveness, and power of digital experiences. This repository contains the source code for the formal specification of the XDM model, using the JSON Schema language. +## Current Version + +XDM is at version `0.9`. You can find more about our versioning in [docs/introduction.md](docs/introduction.md#versioning) + ## Read the XDM Spec * [Chapter 1: Introduction](docs/introduction.md) diff --git a/docs/introduction.md b/docs/introduction.md index a55c83d039..60b34fef7c 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -2,7 +2,7 @@ xdm:navOrder: 1 --- -# Experience Data Model (XDM) Version 0.2.0-WIP +# Experience Data Model (XDM) Version 0.9 ## Introduction diff --git a/package.json b/package.json index 79804fea62..4627bd22ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdm", - "version": "0.5.5", + "version": "0.9", "description": "Experience Data Models", "main": "", "config": { From 3de4675ccae338ea2755ceb55d5ff7a9a931976c Mon Sep 17 00:00:00 2001 From: Andy Steed Date: Thu, 12 Apr 2018 12:48:12 -0700 Subject: [PATCH 103/127] Change from 0.9 to 0.9.0 for use in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4627bd22ef..4b0a6637cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xdm", - "version": "0.9", + "version": "0.9.0", "description": "Experience Data Models", "main": "", "config": { From c83e8cefc582a07d1f4986815aeb925946ffe1b1 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 20:07:54 +0000 Subject: [PATCH 104/127] [ci skip] updating documentation --- docs/reference/README.md | 97 ++++++++++--------- .../common/eventenvelope.schema.json | 4 +- docs/reference/common/eventenvelope.schema.md | 4 +- docs/reference/common/extensible.schema.json | 6 +- docs/reference/common/extensible.schema.md | 6 +- docs/reference/common/page.schema.json | 2 +- docs/reference/common/page.schema.md | 2 +- .../content/page-component.schema.json | 8 +- .../content/page-component.schema.md | 14 +-- .../context/implementationdetails.schema.json | 48 +++++++++ .../context/implementationdetails.schema.md | 77 +++++++++++++++ .../reference/context/person-name.schema.json | 10 +- docs/reference/context/person-name.schema.md | 16 +-- docs/reference/context/webinfo.schema.json | 18 ++-- docs/reference/context/webinfo.schema.md | 18 ++-- docs/reference/external/hal/hal.schema.json | 48 ++++----- docs/reference/external/hal/hal.schema.md | 54 +++++------ .../external/repo/directory.schema.json | 12 +-- .../external/repo/directory.schema.md | 12 +-- 19 files changed, 291 insertions(+), 165 deletions(-) create mode 100644 docs/reference/context/implementationdetails.schema.json create mode 100644 docs/reference/context/implementationdetails.schema.md diff --git a/docs/reference/README.md b/docs/reference/README.md index 8109f0e8de..2979c2f951 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -20,6 +20,29 @@ * [Rectangular Object (measured in variable unit)](./assets/variable-unit-rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` * [Video](./assets/video.schema.md) – `https://ns.adobe.com/xdm/assets/video` +## /common/ + +* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` +* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` +* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` +* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` +* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` +* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` +* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` +* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` +* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` +* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` + +## /content/ + +* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` +* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` +* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` +* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` +* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` +* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` +* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` + ## /channels/ * [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` @@ -43,39 +66,17 @@ * [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` * [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` -## /content/ - -* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` -* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` -* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` -* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` -* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` -* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` -* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` - -## /common/ - -* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` -* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` -* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` -* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` -* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` -* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` -* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` -* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` -* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` -* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` - ## /context/ * [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` * [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` * [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` +* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` * [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` * [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` -* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` * [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` * [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` +* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` * [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` * [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` * [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` @@ -107,8 +108,8 @@ * [Metric](./data/metric.schema.md) – `https://ns.adobe.com/xdm/data/metric` * [Metrics](./data/metrics.schema.md) – `https://ns.adobe.com/xdm/data/metrics` * [mirror-pages](./data/mirror-pages.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/mirror-pages` -* [not-sent](./data/not-sent.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/not-sent` * [non-deliverables](./data/non-deliverables.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/non-deliverables` +* [not-sent](./data/not-sent.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/not-sent` * [opens](./data/opens.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/opens` * [Order](./data/order.schema.md) – `https://ns.adobe.com/xdm/data/order` * [page-views](./data/page-views.schema.md) – `https://ns.adobe.com/xdm/data/metrics/web/page-views` @@ -125,26 +126,6 @@ * [unsubscriptions](./data/unsubscriptions.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/unsubscriptions` * [user-complaints](./data/user-complaints.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` -## /content/repository-policies/ - -* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` -* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` -* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` - -## /external/activity-streams-2/ - -* [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` -* [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` -* [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` -* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` -* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` -* [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` -* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` -* [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` -* [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` -* [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` -* [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` - ## /common/event/ * [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` @@ -155,6 +136,17 @@ * [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` * [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` +## /content/repository-policies/ + +* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` +* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` +* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` + +## /external/hal/ + +* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` +* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` + ## /external/schema/ * [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` @@ -171,7 +163,16 @@ * [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` * [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` -## /external/hal/ +## /external/activity-streams-2/ -* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` -* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` +* [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` +* [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` +* [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` +* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` +* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` +* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` +* [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` +* [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` +* [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` +* [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` +* [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index 397a17c3c4..4d4cdd881c 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -92,7 +92,7 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/published", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", @@ -116,7 +116,7 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "@type": "https://ns.adobe.com/xdm/common/event/published", "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index 4d4337d5b3..abdddad9a5 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -77,7 +77,7 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/published", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", @@ -104,7 +104,7 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "@type": "https://ns.adobe.com/xdm/common/event/published", "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index f48b6bb20e..3f36a1c6b5 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -251,14 +251,13 @@ "meta:status": "stabilizing", "examples": [ { - "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, @@ -266,13 +265,14 @@ "repo:etag": "15" }, { + "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index 00baf0f9c5..35d419fa86 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -27,14 +27,13 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ```json { - "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, @@ -45,13 +44,14 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ```json { + "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, diff --git a/docs/reference/common/page.schema.json b/docs/reference/common/page.schema.json index 83d0a1480b..d03d10f1ab 100644 --- a/docs/reference/common/page.schema.json +++ b/docs/reference/common/page.schema.json @@ -64,13 +64,13 @@ "orderBy": "id", "start": "123", "next": "789", + "type": "image/jpeg", "count": 100 }, { "orderBy": "id", "start": "123", "next": "789", - "type": "image/jpeg", "count": 100 } ] diff --git a/docs/reference/common/page.schema.md b/docs/reference/common/page.schema.md index c819aa3a3a..1156bd09c5 100644 --- a/docs/reference/common/page.schema.md +++ b/docs/reference/common/page.schema.md @@ -19,6 +19,7 @@ Page information for paginated resource list operations. "orderBy": "id", "start": "123", "next": "789", + "type": "image/jpeg", "count": 100 } ``` @@ -28,7 +29,6 @@ Page information for paginated resource list operations. "orderBy": "id", "start": "123", "next": "789", - "type": "image/jpeg", "count": 100 } ``` diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index dd49beb513..f16502a736 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,6 +32,10 @@ ], "meta:status": "experimental", "examples": [ + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" + }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -39,10 +43,6 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } - }, - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index befc3dca0b..420cf10e6b 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -21,6 +21,13 @@ The type determines how the component will be displayed, rendered, and authored. ## Page Component Examples +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + ```json { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", @@ -32,13 +39,6 @@ The type determines how the component will be displayed, rendered, and authored. } ``` -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` - # Page Component Properties diff --git a/docs/reference/context/implementationdetails.schema.json b/docs/reference/context/implementationdetails.schema.json new file mode 100644 index 0000000000..030bc664bf --- /dev/null +++ b/docs/reference/context/implementationdetails.schema.json @@ -0,0 +1,48 @@ +{ + "meta:license": [ + "Copyright 2018 Adobe Systems Incorporated. All rights reserved.", + "This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license", + "you may not use this file except in compliance with the License. You may obtain a copy", + "of the License at https://creativecommons.org/licenses/by/4.0/" + ], + "$id": "https://ns.adobe.com/xdm/context/implementationdetails", + "$schema": "http://json-schema.org/draft-06/schema#", + "title": "Implementation Details", + "type": "object", + "meta:extensible": true, + "description": "Details about the sdk, library or service used in an application's or web page's implementation of a service.", + "definitions": { + "implementationdetails": { + "properties": { + "xdm:name": { + "title": "Name", + "type": "string", + "format": "uri", + "description": "SDK or endpoint identifier. All SDKs or endpoints are identified through a URI, this includes extensions.", + "meta:enum": { + "https://ns.adobe.com/experience/analytics/scode": "Adobe Analytics sCode", + "https://ns.adobe.com/experience/analytics/appmeasurement": "Adobe App Measurement", + "https://ns.adobe.com/experience/analytics/mbox": "Adobe Target mBox", + "https://ns.adobe.com/experience/visitorapi": "Adobe Visitor Service" + } + }, + "xdm:version": { + "title": "Version", + "type": "string", + "description": "The version identifier of the API, e.g h.18." + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/implementationdetails" + } + ], + "examples": [ + { + "xdm:name": "https://ns.adobe.com/experience/analytics/appmeasurement", + "xdm:version": "2.7.0" + } + ] +} \ No newline at end of file diff --git a/docs/reference/context/implementationdetails.schema.md b/docs/reference/context/implementationdetails.schema.md new file mode 100644 index 0000000000..494f0528a8 --- /dev/null +++ b/docs/reference/context/implementationdetails.schema.md @@ -0,0 +1,77 @@ + +# Implementation Details Schema + +``` +https://ns.adobe.com/xdm/context/implementationdetails +``` + +Details about the sdk, library or service used in an application's or web page's implementation of a service. + +| Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | +|----------|------------|--------|-------------------|-----------------------|------------| +| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/implementationdetails.schema.json](context/implementationdetails.schema.json) | + +## Implementation Details Example +```json +{ + "xdm:name": "https://ns.adobe.com/experience/analytics/appmeasurement", + "xdm:version": "2.7.0" +} +``` + +# Implementation Details Properties + +| Property | Type | Required | Defined by | +|----------|------|----------|------------| +| [xdm:name](#xdmname) | `string` | Optional | Implementation Details (this schema) | +| [xdm:version](#xdmversion) | `string` | Optional | Implementation Details (this schema) | +| `*` | any | Additional | this schema *allows* additional properties | + +## xdm:name +### Name + +SDK or endpoint identifier. All SDKs or endpoints are identified through a URI, this includes extensions. + +`xdm:name` +* is optional +* type: `string` +* defined in this schema + +### xdm:name Type + + +`string` +* format: `uri` – Uniformous Resource Identifier (according to [RFC3986](http://tools.ietf.org/html/rfc3986)) + + + +### xdm:name Known Values +| Value | Description | +|-------|-------------| +| `https://ns.adobe.com/experience/analytics/scode` | Adobe Analytics sCode | +| `https://ns.adobe.com/experience/analytics/appmeasurement` | Adobe App Measurement | +| `https://ns.adobe.com/experience/analytics/mbox` | Adobe Target mBox | +| `https://ns.adobe.com/experience/visitorapi` | Adobe Visitor Service | + + + + +## xdm:version +### Version + +The version identifier of the API, e.g h.18. + +`xdm:version` +* is optional +* type: `string` +* defined in this schema + +### xdm:version Type + + +`string` + + + + + diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index f92e84b74f..946614f2d0 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -48,11 +48,6 @@ ], "meta:status": "experimental", "examples": [ - { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" - }, { "xdm:firstName": "John", "xdm:middleName": "S", @@ -63,6 +58,11 @@ "xdm:firstName": "فلانة", "xdm:lastName": "الفلانية", "xdm:fullName": "فلانة الفلانية" + }, + { + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" } ] } \ No newline at end of file diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index cef98e0514..410d8bdd8d 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -16,14 +16,6 @@ In addition, a number of optional properties are made available that can be used ## Person Name Examples -```json -{ - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" -} -``` - ```json { "xdm:firstName": "John", @@ -41,6 +33,14 @@ In addition, a number of optional properties are made available that can be used } ``` +```json +{ + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" +} +``` + # Person Name Properties diff --git a/docs/reference/context/webinfo.schema.json b/docs/reference/context/webinfo.schema.json index 16eed84601..10ab78c039 100644 --- a/docs/reference/context/webinfo.schema.json +++ b/docs/reference/context/webinfo.schema.json @@ -46,9 +46,14 @@ "xdm:errorPage": false, "xdm:homePage": true }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, "xdm:webReferrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" } }, { @@ -60,14 +65,9 @@ "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webInteraction": { - "xdm:type": "other", - "xdm:URL": "#stores", - "xdm:name": "product store" - }, "xdm:webReferrer": { - "xdm:URL": "https://www.example.com/products", - "xdm:type": "internal" + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } ] diff --git a/docs/reference/context/webinfo.schema.md b/docs/reference/context/webinfo.schema.md index 115a55858d..d50171ec92 100644 --- a/docs/reference/context/webinfo.schema.md +++ b/docs/reference/context/webinfo.schema.md @@ -31,9 +31,14 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide "xdm:errorPage": false, "xdm:homePage": true }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, "xdm:webReferrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" } } ``` @@ -48,14 +53,9 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webInteraction": { - "xdm:type": "other", - "xdm:URL": "#stores", - "xdm:name": "product store" - }, "xdm:webReferrer": { - "xdm:URL": "https://www.example.com/products", - "xdm:type": "internal" + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } ``` diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 7bcb6625fb..3fa44f9918 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -296,6 +296,30 @@ "status": "shipped", "total": 10.2 }, + { + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 + }, { "_links": { "self": { @@ -340,30 +364,6 @@ "currency": "USD", "status": "shipped", "total": 10.2 - }, - { - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 } ] } \ No newline at end of file diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index 6389ecf343..b9c7815e1b 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -39,6 +39,33 @@ This external schema definition allows adding HAL expressions into an existing s } ``` +```json +{ + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 +} +``` + ```json { "_links": { @@ -87,33 +114,6 @@ This external schema definition allows adding HAL expressions into an existing s } ``` -```json -{ - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 -} -``` - # HAL Resource Properties diff --git a/docs/reference/external/repo/directory.schema.json b/docs/reference/external/repo/directory.schema.json index 30816b7534..a7360b6fc2 100644 --- a/docs/reference/external/repo/directory.schema.json +++ b/docs/reference/external/repo/directory.schema.json @@ -77,12 +77,6 @@ "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -102,6 +96,12 @@ "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", diff --git a/docs/reference/external/repo/directory.schema.md b/docs/reference/external/repo/directory.schema.md index 1e62df598a..2b6d492471 100644 --- a/docs/reference/external/repo/directory.schema.md +++ b/docs/reference/external/repo/directory.schema.md @@ -32,12 +32,6 @@ A directory in Adobe Cloud Platform. "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -60,6 +54,12 @@ A directory in Adobe Cloud Platform. "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", From 4d255cc724dd6ff80412343a0907d6230deca76a Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 20:10:58 +0000 Subject: [PATCH 105/127] [ci skip] updating documentation --- docs/reference/README.md | 106 +++++++++--------- .../common/eventenvelope.schema.json | 56 ++++----- docs/reference/common/eventenvelope.schema.md | 56 ++++----- docs/reference/common/extensible.schema.json | 30 ++--- docs/reference/common/extensible.schema.md | 36 +++--- .../content/page-component.schema.json | 8 +- .../content/page-component.schema.md | 14 +-- .../reference/context/person-name.schema.json | 10 +- docs/reference/context/person-name.schema.md | 12 +- docs/reference/context/webinfo.schema.json | 18 +-- docs/reference/context/webinfo.schema.md | 18 +-- docs/reference/external/hal/hal.schema.json | 48 ++++---- docs/reference/external/hal/hal.schema.md | 54 ++++----- 13 files changed, 233 insertions(+), 233 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index 2979c2f951..89dd7af977 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -20,29 +20,6 @@ * [Rectangular Object (measured in variable unit)](./assets/variable-unit-rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` * [Video](./assets/video.schema.md) – `https://ns.adobe.com/xdm/assets/video` -## /common/ - -* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` -* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` -* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` -* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` -* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` -* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` -* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` -* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` -* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` -* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` - -## /content/ - -* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` -* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` -* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` -* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` -* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` -* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` -* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` - ## /channels/ * [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` @@ -66,6 +43,29 @@ * [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` * [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` +## /content/ + +* [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` +* [Componentized Page](./content/componentized-page.schema.md) – `https://ns.adobe.com/xdm/content/componentized-page` +* [Content](./content/content.schema.md) – `https://ns.adobe.com/xdm/content/content` +* [Page Component](./content/page-component.schema.md) – `https://ns.adobe.com/xdm/content/page-component` +* [Product](./content/product.schema.md) – `https://ns.adobe.com/xdm/context/product` +* [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` +* [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` + +## /common/ + +* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` +* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` +* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` +* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` +* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` +* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` +* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` +* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` +* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` +* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` + ## /context/ * [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` @@ -126,33 +126,31 @@ * [unsubscriptions](./data/unsubscriptions.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/unsubscriptions` * [user-complaints](./data/user-complaints.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` -## /common/event/ +## /external/activity-streams-2/ -* [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` -* [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` -* [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` -* [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` -* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` -* [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` -* [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` +* [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` +* [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` +* [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` +* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` +* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` +* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` +* [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` +* [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` +* [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` +* [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` +* [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` -## /content/repository-policies/ +## /external/schema/ -* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` -* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` -* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` +* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` +* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` +* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` ## /external/hal/ * [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` * [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` -## /external/schema/ - -* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` -* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` -* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` - ## /external/repo/ * [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` @@ -163,16 +161,18 @@ * [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` * [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` -## /external/activity-streams-2/ +## /content/repository-policies/ -* [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` -* [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` -* [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` -* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` -* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` -* [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` -* [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` -* [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` -* [Object](./external/activity-streams-2/object.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/object` -* [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` -* [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` +* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` +* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` +* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` + +## /common/event/ + +* [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` +* [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` +* [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` +* [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` +* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` +* [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` +* [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index 4d4cdd881c..aa2e31bdee 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -69,31 +69,32 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } }, { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/updated", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -109,10 +110,13 @@ "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", + "xdm:name": "Fx_DUKE-small.png", + "xdm:path": "/content/dam/Fx_DUKE-small.png", + "dc:format": "image/png", + "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" } }, { @@ -140,30 +144,26 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/updated", + "@type": "https://ns.adobe.com/xdm/common/event/created", "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", - "xdm:name": "Fx_DUKE-small.png", - "xdm:path": "/content/dam/Fx_DUKE-small.png", - "dc:format": "image/png", - "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } } ] diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index abdddad9a5..f253743691 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -51,34 +51,35 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ``` ```json { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/updated", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -94,10 +95,13 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", + "xdm:name": "Fx_DUKE-small.png", + "xdm:path": "/content/dam/Fx_DUKE-small.png", + "dc:format": "image/png", + "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" } } ``` @@ -131,30 +135,26 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/updated", + "@type": "https://ns.adobe.com/xdm/common/event/created", "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", - "xdm:name": "Fx_DUKE-small.png", - "xdm:path": "/content/dam/Fx_DUKE-small.png", - "dc:format": "image/png", - "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } } ``` diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index 3f36a1c6b5..44d5a4a2e6 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -264,21 +264,6 @@ "xdm:path": "/here", "repo:etag": "15" }, - { - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" - }, { "@context": { "xdm": "https://ns.adobe.com/xdm/", @@ -323,6 +308,21 @@ "repo:size": 1632418, "xdm:path": "here", "repo:etag": "15" + }, + { + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" } ] } \ No newline at end of file diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index 35d419fa86..c2a2ee8289 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -42,24 +42,6 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` -```json -{ - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" -} -``` - ```json { "@context": { @@ -108,3 +90,21 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` +```json +{ + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" +} +``` + diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index f16502a736..dd49beb513 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,10 +32,6 @@ ], "meta:status": "experimental", "examples": [ - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" - }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -43,6 +39,10 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } + }, + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index 420cf10e6b..befc3dca0b 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -21,13 +21,6 @@ The type determines how the component will be displayed, rendered, and authored. ## Page Component Examples -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` - ```json { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", @@ -39,6 +32,13 @@ The type determines how the component will be displayed, rendered, and authored. } ``` +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + # Page Component Properties diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index 946614f2d0..0f7af5cfa8 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -54,15 +54,15 @@ "xdm:lastName": "Doe", "xdm:fullName": "John S. Doe" }, - { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" - }, { "xdm:firstName": "张", "xdm:lastName": "三", "xdm:fullName": "张三" + }, + { + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ] } \ No newline at end of file diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index 410d8bdd8d..603043eeab 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -27,17 +27,17 @@ In addition, a number of optional properties are made available that can be used ```json { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" } ``` ```json { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ``` diff --git a/docs/reference/context/webinfo.schema.json b/docs/reference/context/webinfo.schema.json index 10ab78c039..16eed84601 100644 --- a/docs/reference/context/webinfo.schema.json +++ b/docs/reference/context/webinfo.schema.json @@ -46,14 +46,9 @@ "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webInteraction": { - "xdm:type": "other", - "xdm:URL": "#stores", - "xdm:name": "product store" - }, "xdm:webReferrer": { - "xdm:URL": "https://www.example.com/products", - "xdm:type": "internal" + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } }, { @@ -65,9 +60,14 @@ "xdm:errorPage": false, "xdm:homePage": true }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, "xdm:webReferrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" } } ] diff --git a/docs/reference/context/webinfo.schema.md b/docs/reference/context/webinfo.schema.md index d50171ec92..115a55858d 100644 --- a/docs/reference/context/webinfo.schema.md +++ b/docs/reference/context/webinfo.schema.md @@ -31,14 +31,9 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webInteraction": { - "xdm:type": "other", - "xdm:URL": "#stores", - "xdm:name": "product store" - }, "xdm:webReferrer": { - "xdm:URL": "https://www.example.com/products", - "xdm:type": "internal" + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } ``` @@ -53,9 +48,14 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide "xdm:errorPage": false, "xdm:homePage": true }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, "xdm:webReferrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" } } ``` diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 3fa44f9918..7bcb6625fb 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -296,30 +296,6 @@ "status": "shipped", "total": 10.2 }, - { - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 - }, { "_links": { "self": { @@ -364,6 +340,30 @@ "currency": "USD", "status": "shipped", "total": 10.2 + }, + { + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 } ] } \ No newline at end of file diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index b9c7815e1b..6389ecf343 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -39,33 +39,6 @@ This external schema definition allows adding HAL expressions into an existing s } ``` -```json -{ - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 -} -``` - ```json { "_links": { @@ -114,6 +87,33 @@ This external schema definition allows adding HAL expressions into an existing s } ``` +```json +{ + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 +} +``` + # HAL Resource Properties From 6ad49e781d68809943e832e6c960490ca48847a3 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:14:05 -0700 Subject: [PATCH 106/127] Update emailaddress.schema.json --- schemas/context/emailaddress.schema.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/schemas/context/emailaddress.schema.json b/schemas/context/emailaddress.schema.json index 7071f7e278..c7a074dc7e 100644 --- a/schemas/context/emailaddress.schema.json +++ b/schemas/context/emailaddress.schema.json @@ -9,7 +9,6 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Email Address", "type": "object", - "meta:auditable": true, "description": "A standard email address.", "definitions": { "emailaddress": { @@ -70,9 +69,6 @@ "allOf": [ { "$ref": "#/definitions/emailaddress" - }, - { - "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], "meta:status": "stabilizing" From d9b8d6794e54050cd0241e4b9d8104c41b62ce92 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:14:33 -0700 Subject: [PATCH 107/127] Update identity.schema.json --- schemas/context/identity.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/identity.schema.json b/schemas/context/identity.schema.json index 834272c242..9e22ddd6af 100644 --- a/schemas/context/identity.schema.json +++ b/schemas/context/identity.schema.json @@ -40,5 +40,5 @@ "$ref": "#/definitions/identity" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 69df13e471348fc41dc4f7031201e32cd8d479f8 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:15:19 -0700 Subject: [PATCH 108/127] Update locationcontext.schema.json --- schemas/context/locationcontext.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/locationcontext.schema.json b/schemas/context/locationcontext.schema.json index c20ace1739..99d3fdc121 100644 --- a/schemas/context/locationcontext.schema.json +++ b/schemas/context/locationcontext.schema.json @@ -35,5 +35,5 @@ "$ref": "#/definitions/locationcontext" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From a429372d35be98dacfb1fe6c50c83153f30f0b3e Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:15:47 -0700 Subject: [PATCH 109/127] Update namespace.schema.json --- schemas/context/namespace.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/namespace.schema.json b/schemas/context/namespace.schema.json index 42821f039d..e418cb68c5 100644 --- a/schemas/context/namespace.schema.json +++ b/schemas/context/namespace.schema.json @@ -36,5 +36,5 @@ "$ref": "#/definitions/namespace" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 08648d57f087fcaf318be34698dc86abec02d334 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:16:54 -0700 Subject: [PATCH 110/127] Update person-name.schema.json --- schemas/context/person-name.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/person-name.schema.json b/schemas/context/person-name.schema.json index 7656d0461a..334b1a0339 100644 --- a/schemas/context/person-name.schema.json +++ b/schemas/context/person-name.schema.json @@ -51,5 +51,5 @@ "$ref": "#/definitions/personname" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 69c4b22b8dbe6be90277fd29af740a0fef3f4b1c Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:17:30 -0700 Subject: [PATCH 111/127] Update optinout.schema.json --- schemas/context/optinout.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/optinout.schema.json b/schemas/context/optinout.schema.json index 4205dba8c9..6860282e56 100644 --- a/schemas/context/optinout.schema.json +++ b/schemas/context/optinout.schema.json @@ -110,5 +110,5 @@ "$ref": "#/definitions/optinout" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From d763dde9dc6bc27e4cf4224b057b809d66927425 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:18:41 -0700 Subject: [PATCH 112/127] Update phonenumber.schema.json --- schemas/context/phonenumber.schema.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/schemas/context/phonenumber.schema.json b/schemas/context/phonenumber.schema.json index a9ab84687a..92f98c37c2 100644 --- a/schemas/context/phonenumber.schema.json +++ b/schemas/context/phonenumber.schema.json @@ -68,9 +68,6 @@ "allOf": [ { "$ref": "#/definitions/phonenumber" - }, - { - "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], "meta:status": "stabilizing" From 3f8ca1bbaeafdbb4df36c5cff120732ba336db00 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:19:49 -0700 Subject: [PATCH 113/127] Update metric.schema.json --- schemas/data/metric.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/metric.schema.json b/schemas/data/metric.schema.json index b61861f443..2cea554c9c 100644 --- a/schemas/data/metric.schema.json +++ b/schemas/data/metric.schema.json @@ -19,7 +19,7 @@ "format": "uri", "description": "The unique identifier of this metric." }, - "schema:name": { + "xdm:name": { "type": "string", "description": "The human-readable name of the metric. The name can be used in user interfaces and does not have to be unique." From 5a8d62b1fb08ba062b866242e21fb59b9f0b3c19 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:20:33 -0700 Subject: [PATCH 114/127] Update metric.schema.json --- schemas/data/metric.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/metric.schema.json b/schemas/data/metric.schema.json index 2cea554c9c..b1800820a3 100644 --- a/schemas/data/metric.schema.json +++ b/schemas/data/metric.schema.json @@ -43,6 +43,6 @@ "$ref": "#/definitions/metric" } ], - "required": ["@id", "schema:name", "xdm:measurement", "xdm:unit"], + "required": ["@id", "xdm:name", "xdm:measurement", "xdm:unit"], "meta:status": "stabilizing" } From 7d8339fc1e853b7d22d77f557325c9185512bbd4 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:23:38 -0700 Subject: [PATCH 115/127] Update metric.schema.json --- schemas/data/metric.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/data/metric.schema.json b/schemas/data/metric.schema.json index b1800820a3..b61861f443 100644 --- a/schemas/data/metric.schema.json +++ b/schemas/data/metric.schema.json @@ -19,7 +19,7 @@ "format": "uri", "description": "The unique identifier of this metric." }, - "xdm:name": { + "schema:name": { "type": "string", "description": "The human-readable name of the metric. The name can be used in user interfaces and does not have to be unique." @@ -43,6 +43,6 @@ "$ref": "#/definitions/metric" } ], - "required": ["@id", "xdm:name", "xdm:measurement", "xdm:unit"], + "required": ["@id", "schema:name", "xdm:measurement", "xdm:unit"], "meta:status": "stabilizing" } From 5b9e1aad27ea0bee6a60aef14f945bc8a598376e Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:24:17 -0700 Subject: [PATCH 116/127] Update metric.schema.json --- schemas/data/metric.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/metric.schema.json b/schemas/data/metric.schema.json index b61861f443..4c967ab754 100644 --- a/schemas/data/metric.schema.json +++ b/schemas/data/metric.schema.json @@ -44,5 +44,5 @@ } ], "required": ["@id", "schema:name", "xdm:measurement", "xdm:unit"], - "meta:status": "stabilizing" + "meta:status": "experimental" } From a07cd4e9c57ccb7bd1ce9cb223ec70e2ba42bb7f Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:24:44 -0700 Subject: [PATCH 117/127] Update page-views.schema.json --- schemas/data/page-views.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/page-views.schema.json b/schemas/data/page-views.schema.json index d37ddf0821..9fa27fe1f6 100644 --- a/schemas/data/page-views.schema.json +++ b/schemas/data/page-views.schema.json @@ -45,5 +45,5 @@ } ], "required": ["@id", "schema:name", "xdm:measurement", "xdm:unit"], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 65e17a7b9d67a170ea4742c2e9bbb589f296300c Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:25:27 -0700 Subject: [PATCH 118/127] Update person.schema.json --- schemas/context/person.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/person.schema.json b/schemas/context/person.schema.json index 5c004452e3..5ee8c2e51b 100644 --- a/schemas/context/person.schema.json +++ b/schemas/context/person.schema.json @@ -67,5 +67,5 @@ "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 686b81e4a1f60cc0ab4cf725ea8831bafb0b9a73 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:25:50 -0700 Subject: [PATCH 119/127] Update subscription.schema.json --- schemas/context/subscription.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/subscription.schema.json b/schemas/context/subscription.schema.json index 92db4e6e36..99fa08d769 100644 --- a/schemas/context/subscription.schema.json +++ b/schemas/context/subscription.schema.json @@ -160,5 +160,5 @@ "$ref": "#/definitions/subscription" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From df4128a83413e96fadbbf9ae6a7d364f8901d78b Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:26:09 -0700 Subject: [PATCH 120/127] Update search.schema.json --- schemas/context/search.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/search.schema.json b/schemas/context/search.schema.json index 8607c6f2b4..22e988637e 100644 --- a/schemas/context/search.schema.json +++ b/schemas/context/search.schema.json @@ -41,5 +41,5 @@ "$ref": "#/definitions/search" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 0fe4ba367c39bb847e722c14ef3916b0926095a0 Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:26:48 -0700 Subject: [PATCH 121/127] Update datasource.schema.json --- schemas/data/datasource.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/data/datasource.schema.json b/schemas/data/datasource.schema.json index ff9d39aac8..a6e9a402e2 100644 --- a/schemas/data/datasource.schema.json +++ b/schemas/data/datasource.schema.json @@ -46,5 +46,5 @@ "$ref": "#/definitions/datasource" } ], - "meta:status": "stabilizing" + "meta:status": "experimental" } From 9783604737f91692a9529d9e3a0b9d9bb6411b9d Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 22:31:34 +0000 Subject: [PATCH 122/127] [ci skip] updating documentation --- docs/reference/README.md | 140 +++++++++--------- .../common/eventenvelope.schema.json | 56 +++---- docs/reference/common/eventenvelope.schema.md | 56 +++---- docs/reference/common/extensible.schema.json | 30 ++-- docs/reference/common/extensible.schema.md | 36 ++--- docs/reference/common/page.schema.json | 2 +- docs/reference/common/page.schema.md | 2 +- .../context/browserdetails.schema.json | 2 +- .../context/browserdetails.schema.md | 2 +- docs/reference/context/commerce.schema.json | 2 +- docs/reference/context/commerce.schema.md | 2 +- docs/reference/context/device.schema.json | 2 +- docs/reference/context/device.schema.md | 2 +- .../context/emailaddress.schema.json | 6 +- docs/reference/context/emailaddress.schema.md | 99 +------------ docs/reference/context/enduserids.schema.json | 2 +- docs/reference/context/enduserids.schema.md | 2 +- .../reference/context/environment.schema.json | 2 +- docs/reference/context/environment.schema.md | 2 +- docs/reference/context/marketing.schema.json | 2 +- docs/reference/context/marketing.schema.md | 2 +- .../reference/context/person-name.schema.json | 10 +- docs/reference/context/person-name.schema.md | 12 +- .../reference/context/phonenumber.schema.json | 5 +- docs/reference/context/phonenumber.schema.md | 99 +------------ .../context/pushnotificationtoken.schema.json | 2 +- .../context/pushnotificationtoken.schema.md | 2 +- docs/reference/data/measure.schema.json | 2 +- docs/reference/data/measure.schema.md | 2 +- .../external/repo/directory.schema.json | 12 +- .../external/repo/directory.schema.md | 12 +- 31 files changed, 204 insertions(+), 405 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index 89dd7af977..b4fca7419e 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -4,21 +4,18 @@ -## /assets/ +## /common/ -* [Aggregated Asset](./assets/aggregated-asset.schema.md) – `https://ns.adobe.com/xdm/assets/aggregated-asset` -* [Artboard](./assets/artboard.schema.md) – `https://ns.adobe.com/xdm/assets/artboard` -* [Asset](./assets/asset.schema.md) – `https://ns.adobe.com/xdm/assets/asset` -* [Copyright Owner](./assets/copyright-owner.schema.md) – `https://ns.adobe.com/xdm/assets/copyright-owner` -* [Font](./assets/font.schema.md) – `https://ns.adobe.com/xdm/assets/font` -* [Image](./assets/image.schema.md) – `https://ns.adobe.com/xdm/assets/image` -* [Language Alternative](./assets/language-alternative.schema.md) – `https://ns.adobe.com/xdm/assets/language-alternative` -* [Layer Group](./assets/layer-group.schema.md) – `https://ns.adobe.com/xdm/assets/layer-group` -* [Layer](./assets/layer.schema.md) – `https://ns.adobe.com/xdm/assets/layer` -* [Rectangular Media](./assets/rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/rectangular` -* [Resource Event](./assets/resource-event.schema.md) – `https://ns.adobe.com/xdm/assets/resource-event` -* [Rectangular Object (measured in variable unit)](./assets/variable-unit-rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` -* [Video](./assets/video.schema.md) – `https://ns.adobe.com/xdm/assets/video` +* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` +* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` +* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` +* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` +* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` +* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` +* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` +* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` +* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` +* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` ## /channels/ @@ -43,6 +40,22 @@ * [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` * [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` +## /assets/ + +* [Aggregated Asset](./assets/aggregated-asset.schema.md) – `https://ns.adobe.com/xdm/assets/aggregated-asset` +* [Artboard](./assets/artboard.schema.md) – `https://ns.adobe.com/xdm/assets/artboard` +* [Asset](./assets/asset.schema.md) – `https://ns.adobe.com/xdm/assets/asset` +* [Copyright Owner](./assets/copyright-owner.schema.md) – `https://ns.adobe.com/xdm/assets/copyright-owner` +* [Font](./assets/font.schema.md) – `https://ns.adobe.com/xdm/assets/font` +* [Image](./assets/image.schema.md) – `https://ns.adobe.com/xdm/assets/image` +* [Language Alternative](./assets/language-alternative.schema.md) – `https://ns.adobe.com/xdm/assets/language-alternative` +* [Layer Group](./assets/layer-group.schema.md) – `https://ns.adobe.com/xdm/assets/layer-group` +* [Layer](./assets/layer.schema.md) – `https://ns.adobe.com/xdm/assets/layer` +* [Rectangular Media](./assets/rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/rectangular` +* [Resource Event](./assets/resource-event.schema.md) – `https://ns.adobe.com/xdm/assets/resource-event` +* [Rectangular Object (measured in variable unit)](./assets/variable-unit-rectangular.schema.md) – `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` +* [Video](./assets/video.schema.md) – `https://ns.adobe.com/xdm/assets/video` + ## /content/ * [Component Container](./content/component-container.schema.md) – `https://ns.adobe.com/xdm/content/component-container` @@ -53,47 +66,6 @@ * [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` * [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` -## /common/ - -* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` -* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` -* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` -* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` -* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` -* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` -* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` -* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` -* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` -* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` - -## /context/ - -* [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` -* [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` -* [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` -* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` -* [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` -* [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` -* [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` -* [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` -* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` -* [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` -* [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` -* [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` -* [Person Name](./context/person-name.schema.md) – `https://ns.adobe.com/xdm/context/person-name` -* [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` -* [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` -* [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` -* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` -* [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` -* [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` -* [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` -* [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` -* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` -* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` -* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` -* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` - ## /data/ * [abandons](./data/abandons.schema.md) – `https://ns.adobe.com/xdm/data/metrics/commerce/abandons` @@ -126,6 +98,44 @@ * [unsubscriptions](./data/unsubscriptions.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/unsubscriptions` * [user-complaints](./data/user-complaints.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` +## /context/ + +* [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` +* [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` +* [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` +* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` +* [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` +* [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` +* [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` +* [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` +* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` +* [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` +* [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` +* [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` +* [Person Name](./context/person-name.schema.md) – `https://ns.adobe.com/xdm/context/person-name` +* [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` +* [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` +* [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` +* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` +* [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` +* [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` +* [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` +* [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` +* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` +* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` +* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` +* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` + +## /common/event/ + +* [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` +* [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` +* [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` +* [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` +* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` +* [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` +* [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` + ## /external/activity-streams-2/ * [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` @@ -140,17 +150,17 @@ * [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` * [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` +## /external/hal/ + +* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` +* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` + ## /external/schema/ * [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` * [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` * [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` -## /external/hal/ - -* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` -* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` - ## /external/repo/ * [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` @@ -166,13 +176,3 @@ * [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` * [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` * [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` - -## /common/event/ - -* [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` -* [Deleted Event](./common/event/deleted.schema.md) – `https://ns.adobe.com/xdm/common/event/deleted` -* [Emitted Event](./common/event/emitted.schema.md) – `https://ns.adobe.com/xdm/common/event/emitted` -* [Published Event](./common/event/published.schema.md) – `https://ns.adobe.com/xdm/common/event/published` -* [Rejected Event](./common/event/rejected.schema.md) – `https://ns.adobe.com/xdm/common/event/rejected` -* [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` -* [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index aa2e31bdee..81f5f4d560 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -69,8 +69,8 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/updated", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -86,37 +86,36 @@ "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", + "xdm:name": "Fx_DUKE-small.png", + "xdm:path": "/content/dam/Fx_DUKE-small.png", + "dc:format": "image/png", + "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" } }, { - "@type": "https://ns.adobe.com/xdm/common/event/updated", + "@type": "https://ns.adobe.com/xdm/common/event/created", "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", - "xdm:name": "Fx_DUKE-small.png", - "xdm:path": "/content/dam/Fx_DUKE-small.png", - "dc:format": "image/png", - "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } }, { @@ -144,26 +143,27 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ] diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index f253743691..dcd513a43e 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -51,8 +51,8 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/updated", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { @@ -68,40 +68,39 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", + "xdm:name": "Fx_DUKE-small.png", + "xdm:path": "/content/dam/Fx_DUKE-small.png", + "dc:format": "image/png", + "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" } } ``` ```json { - "@type": "https://ns.adobe.com/xdm/common/event/updated", + "@type": "https://ns.adobe.com/xdm/common/event/created", "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://francois.corp.adobe.com:4502/content/dam/Fx_DUKE-small.jpg", - "xdm:name": "Fx_DUKE-small.png", - "xdm:path": "/content/dam/Fx_DUKE-small.png", - "dc:format": "image/png", - "repo:etag": "\"6fc55d0389d856ae7wddwebba54f110e\"" + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } } ``` @@ -135,26 +134,27 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ``` diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index 44d5a4a2e6..3f36a1c6b5 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -264,6 +264,21 @@ "xdm:path": "/here", "repo:etag": "15" }, + { + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" + }, { "@context": { "xdm": "https://ns.adobe.com/xdm/", @@ -308,21 +323,6 @@ "repo:size": 1632418, "xdm:path": "here", "repo:etag": "15" - }, - { - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" } ] } \ No newline at end of file diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index c2a2ee8289..35d419fa86 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -42,6 +42,24 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` +```json +{ + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" +} +``` + ```json { "@context": { @@ -90,21 +108,3 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` -```json -{ - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" -} -``` - diff --git a/docs/reference/common/page.schema.json b/docs/reference/common/page.schema.json index d03d10f1ab..83d0a1480b 100644 --- a/docs/reference/common/page.schema.json +++ b/docs/reference/common/page.schema.json @@ -64,13 +64,13 @@ "orderBy": "id", "start": "123", "next": "789", - "type": "image/jpeg", "count": 100 }, { "orderBy": "id", "start": "123", "next": "789", + "type": "image/jpeg", "count": 100 } ] diff --git a/docs/reference/common/page.schema.md b/docs/reference/common/page.schema.md index 1156bd09c5..c819aa3a3a 100644 --- a/docs/reference/common/page.schema.md +++ b/docs/reference/common/page.schema.md @@ -19,7 +19,6 @@ Page information for paginated resource list operations. "orderBy": "id", "start": "123", "next": "789", - "type": "image/jpeg", "count": 100 } ``` @@ -29,6 +28,7 @@ Page information for paginated resource list operations. "orderBy": "id", "start": "123", "next": "789", + "type": "image/jpeg", "count": 100 } ``` diff --git a/docs/reference/context/browserdetails.schema.json b/docs/reference/context/browserdetails.schema.json index bd7ce37fad..2fea4b6703 100644 --- a/docs/reference/context/browserdetails.schema.json +++ b/docs/reference/context/browserdetails.schema.json @@ -88,7 +88,7 @@ "$ref": "#/definitions/browserdetails" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:name": "Chrome", diff --git a/docs/reference/context/browserdetails.schema.md b/docs/reference/context/browserdetails.schema.md index 15babd2c69..d6b5b21c7a 100644 --- a/docs/reference/context/browserdetails.schema.md +++ b/docs/reference/context/browserdetails.schema.md @@ -9,7 +9,7 @@ Detail information related to the browser | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/browserdetails.schema.json](context/browserdetails.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/browserdetails.schema.json](context/browserdetails.schema.json) | ## Browser Details Example ```json diff --git a/docs/reference/context/commerce.schema.json b/docs/reference/context/commerce.schema.json index 555ee05a20..31a0b086b8 100644 --- a/docs/reference/context/commerce.schema.json +++ b/docs/reference/context/commerce.schema.json @@ -26,7 +26,7 @@ "$ref": "#/definitions/commerce" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:order": { diff --git a/docs/reference/context/commerce.schema.md b/docs/reference/context/commerce.schema.md index 28ff54e89f..cd5a2241c1 100644 --- a/docs/reference/context/commerce.schema.md +++ b/docs/reference/context/commerce.schema.md @@ -9,7 +9,7 @@ The entites related to buying and selling activity. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/commerce.schema.json](context/commerce.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/commerce.schema.json](context/commerce.schema.json) | ## Schema Hierarchy diff --git a/docs/reference/context/device.schema.json b/docs/reference/context/device.schema.json index 489750caa9..3ba1e6ce48 100644 --- a/docs/reference/context/device.schema.json +++ b/docs/reference/context/device.schema.json @@ -80,7 +80,7 @@ "$ref": "#/definitions/device" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:typeID": "TypeIdentifier-111", diff --git a/docs/reference/context/device.schema.md b/docs/reference/context/device.schema.md index 93451d0eb6..0dccd71a02 100644 --- a/docs/reference/context/device.schema.md +++ b/docs/reference/context/device.schema.md @@ -9,7 +9,7 @@ An identified device that is an application or browser instance that is trackabl | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/device.schema.json](context/device.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/device.schema.json](context/device.schema.json) | ## Device Example ```json diff --git a/docs/reference/context/emailaddress.schema.json b/docs/reference/context/emailaddress.schema.json index 3812322205..138c32f140 100644 --- a/docs/reference/context/emailaddress.schema.json +++ b/docs/reference/context/emailaddress.schema.json @@ -9,7 +9,6 @@ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Email Address", "type": "object", - "meta:auditable": true, "description": "A standard email address.", "definitions": { "emailaddress": { @@ -65,12 +64,9 @@ "allOf": [ { "$ref": "#/definitions/emailaddress" - }, - { - "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:primary": false, diff --git a/docs/reference/context/emailaddress.schema.md b/docs/reference/context/emailaddress.schema.md index e18dbbe80a..3837190567 100644 --- a/docs/reference/context/emailaddress.schema.md +++ b/docs/reference/context/emailaddress.schema.md @@ -9,12 +9,7 @@ A standard email address. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/emailaddress.schema.json](context/emailaddress.schema.json) | - -## Schema Hierarchy - -* Email Address `https://ns.adobe.com/xdm/context/emailaddress` - * [Audit Trail](../common/auditable.schema.md) `https://ns.adobe.com/xdm/common/auditable` +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/emailaddress.schema.json](context/emailaddress.schema.json) | ## Email Address Example ```json @@ -32,12 +27,8 @@ A standard email address. | Property | Type | Required | Defined by | |----------|------|----------|------------| | [xdm:address](#xdmaddress) | `string` | Optional | Email Address (this schema) | -| [xdm:createdByBatchID](#xdmcreatedbybatchid) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmcreatedbybatchid) | | [xdm:label](#xdmlabel) | `string` | Optional | Email Address (this schema) | -| [xdm:modifiedByBatchID](#xdmmodifiedbybatchid) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmmodifiedbybatchid) | | [xdm:primary](#xdmprimary) | `boolean` | Optional | Email Address (this schema) | -| [xdm:repositoryCreatedBy](#xdmrepositorycreatedby) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmrepositorycreatedby) | -| [xdm:repositoryLastModifiedBy](#xdmrepositorylastmodifiedby) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmrepositorylastmodifiedby) | | [xdm:status](#xdmstatus) | `string` | Optional | Email Address (this schema) | | [xdm:statusReason](#xdmstatusreason) | `string` | Optional | Email Address (this schema) | | [xdm:type](#xdmtype) | `string` | Optional | Email Address (this schema) | @@ -64,28 +55,6 @@ The technical address, e.g 'name@domain.com' as commonly defined in RFC2 -## xdm:createdByBatchID -### Created by Batch Identifier - -The Data Set Files in Catalog Services which has been originating the creation of the entity. - - -`xdm:createdByBatchID` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:createdByBatchID) - -### xdm:createdByBatchID Type - - -`string` -* format: `uri` – Uniformous Resource Identifier (according to [RFC3986](http://tools.ietf.org/html/rfc3986)) - - - - - - ## xdm:label ### Label @@ -106,29 +75,6 @@ Additional display information that maybe available, e.g MS Outlook rich address -## xdm:modifiedByBatchID -### Modified by Batch Identifier - -The last Data Set Files in Catalog Services which has modified the entity. -At creation time, `modifiedByBatchID` is set as `createdByBatchID`. - - -`xdm:modifiedByBatchID` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:modifiedByBatchID) - -### xdm:modifiedByBatchID Type - - -`string` -* format: `uri` – Uniformous Resource Identifier (according to [RFC3986](http://tools.ietf.org/html/rfc3986)) - - - - - - ## xdm:primary ### Primary @@ -151,49 +97,6 @@ A Profile can have only one `primary` email address at a given point of time. -## xdm:repositoryCreatedBy -### Created by User Identifier - -User id who has created the entity. - - -`xdm:repositoryCreatedBy` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:repositoryCreatedBy) - -### xdm:repositoryCreatedBy Type - - -`string` - - - - - - -## xdm:repositoryLastModifiedBy -### Modified by User Identifier - -User id who last modified the entity. -At creation time, `modifiedByUser` is set as `createdByUser`. - - -`xdm:repositoryLastModifiedBy` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:repositoryLastModifiedBy) - -### xdm:repositoryLastModifiedBy Type - - -`string` - - - - - - ## xdm:status ### Status diff --git a/docs/reference/context/enduserids.schema.json b/docs/reference/context/enduserids.schema.json index 0daa67c972..6debc436d6 100644 --- a/docs/reference/context/enduserids.schema.json +++ b/docs/reference/context/enduserids.schema.json @@ -46,7 +46,7 @@ "$ref": "https://ns.adobe.com/xdm/context/identity" } }, - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "https://ns.adobe.com/experience/mcid": { diff --git a/docs/reference/context/enduserids.schema.md b/docs/reference/context/enduserids.schema.md index 4bc9e594b5..8aa3a1dd6d 100644 --- a/docs/reference/context/enduserids.schema.md +++ b/docs/reference/context/enduserids.schema.md @@ -15,7 +15,7 @@ Additionally, this schema can include a property that describes the data source | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | No | Experimental | Forbidden | Permitted | [context/enduserids.schema.json](context/enduserids.schema.json) | +| Can be instantiated | No | Stabilizing | Forbidden | Permitted | [context/enduserids.schema.json](context/enduserids.schema.json) | ## Schema Hierarchy diff --git a/docs/reference/context/environment.schema.json b/docs/reference/context/environment.schema.json index 4502ee4408..a13001b40a 100644 --- a/docs/reference/context/environment.schema.json +++ b/docs/reference/context/environment.schema.json @@ -130,7 +130,7 @@ "$ref": "#/definitions/environment" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:type": "browser", diff --git a/docs/reference/context/environment.schema.md b/docs/reference/context/environment.schema.md index d55a2c06d8..2fcc5f3b9d 100644 --- a/docs/reference/context/environment.schema.md +++ b/docs/reference/context/environment.schema.md @@ -9,7 +9,7 @@ Information about the surrounding situation the event observation occurred in, s | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/environment.schema.json](context/environment.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/environment.schema.json](context/environment.schema.json) | ## Schema Hierarchy diff --git a/docs/reference/context/marketing.schema.json b/docs/reference/context/marketing.schema.json index 2517523bdc..2cca2eaea5 100644 --- a/docs/reference/context/marketing.schema.json +++ b/docs/reference/context/marketing.schema.json @@ -26,7 +26,7 @@ "$ref": "#/definitions/marketing" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:trackingCode": "marketingcampaign111" diff --git a/docs/reference/context/marketing.schema.md b/docs/reference/context/marketing.schema.md index ffdedfe023..b391ce1237 100644 --- a/docs/reference/context/marketing.schema.md +++ b/docs/reference/context/marketing.schema.md @@ -9,7 +9,7 @@ The information related to marketing activities that are active with the touchpo | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/marketing.schema.json](context/marketing.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/marketing.schema.json](context/marketing.schema.json) | ## Marketing Example ```json diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index 0f7af5cfa8..946614f2d0 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -54,15 +54,15 @@ "xdm:lastName": "Doe", "xdm:fullName": "John S. Doe" }, - { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" - }, { "xdm:firstName": "فلانة", "xdm:lastName": "الفلانية", "xdm:fullName": "فلانة الفلانية" + }, + { + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" } ] } \ No newline at end of file diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index 603043eeab..410d8bdd8d 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -27,17 +27,17 @@ In addition, a number of optional properties are made available that can be used ```json { - "xdm:firstName": "张", - "xdm:lastName": "三", - "xdm:fullName": "张三" + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ``` ```json { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" + "xdm:firstName": "张", + "xdm:lastName": "三", + "xdm:fullName": "张三" } ``` diff --git a/docs/reference/context/phonenumber.schema.json b/docs/reference/context/phonenumber.schema.json index bcffd3afbf..3b18ce7b17 100644 --- a/docs/reference/context/phonenumber.schema.json +++ b/docs/reference/context/phonenumber.schema.json @@ -62,12 +62,9 @@ "allOf": [ { "$ref": "#/definitions/phonenumber" - }, - { - "$ref": "https://ns.adobe.com/xdm/common/auditable#/definitions/auditlog" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:primary": true, diff --git a/docs/reference/context/phonenumber.schema.md b/docs/reference/context/phonenumber.schema.md index 8568cdeef1..96e4f5d9f8 100644 --- a/docs/reference/context/phonenumber.schema.md +++ b/docs/reference/context/phonenumber.schema.md @@ -9,12 +9,7 @@ Information that allows the phone calling of a person. Typically an alphanumeric | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/phonenumber.schema.json](context/phonenumber.schema.json) | - -## Schema Hierarchy - -* Phone Number `https://ns.adobe.com/xdm/context/phonenumber` - * [Audit Trail](../common/auditable.schema.md) `https://ns.adobe.com/xdm/common/auditable` +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/phonenumber.schema.json](context/phonenumber.schema.json) | ## Phone Number Example ```json @@ -29,40 +24,14 @@ Information that allows the phone calling of a person. Typically an alphanumeric | Property | Type | Required | Defined by | |----------|------|----------|------------| -| [xdm:createdByBatchID](#xdmcreatedbybatchid) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmcreatedbybatchid) | | [xdm:extension](#xdmextension) | `string` | Optional | Phone Number (this schema) | -| [xdm:modifiedByBatchID](#xdmmodifiedbybatchid) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmmodifiedbybatchid) | | [xdm:number](#xdmnumber) | `string` | Optional | Phone Number (this schema) | | [xdm:primary](#xdmprimary) | `boolean` | Optional | Phone Number (this schema) | -| [xdm:repositoryCreatedBy](#xdmrepositorycreatedby) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmrepositorycreatedby) | -| [xdm:repositoryLastModifiedBy](#xdmrepositorylastmodifiedby) | `string` | Optional | [Audit Trail](../common/auditable.schema.md#xdmrepositorylastmodifiedby) | | [xdm:status](#xdmstatus) | `string` | Optional | Phone Number (this schema) | | [xdm:statusReason](#xdmstatusreason) | `string` | Optional | Phone Number (this schema) | | [xdm:validity](#xdmvalidity) | `string` | Optional | Phone Number (this schema) | | `*` | any | Additional | this schema *allows* additional properties | -## xdm:createdByBatchID -### Created by Batch Identifier - -The Data Set Files in Catalog Services which has been originating the creation of the entity. - - -`xdm:createdByBatchID` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:createdByBatchID) - -### xdm:createdByBatchID Type - - -`string` -* format: `uri` – Uniformous Resource Identifier (according to [RFC3986](http://tools.ietf.org/html/rfc3986)) - - - - - - ## xdm:extension ### Extension @@ -83,29 +52,6 @@ The internal dialing number used to call from a private exchange, operator or sw -## xdm:modifiedByBatchID -### Modified by Batch Identifier - -The last Data Set Files in Catalog Services which has modified the entity. -At creation time, `modifiedByBatchID` is set as `createdByBatchID`. - - -`xdm:modifiedByBatchID` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:modifiedByBatchID) - -### xdm:modifiedByBatchID Type - - -`string` -* format: `uri` – Uniformous Resource Identifier (according to [RFC3986](http://tools.ietf.org/html/rfc3986)) - - - - - - ## xdm:number ### Number @@ -153,49 +99,6 @@ The communication channel is defined by the type: -## xdm:repositoryCreatedBy -### Created by User Identifier - -User id who has created the entity. - - -`xdm:repositoryCreatedBy` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:repositoryCreatedBy) - -### xdm:repositoryCreatedBy Type - - -`string` - - - - - - -## xdm:repositoryLastModifiedBy -### Modified by User Identifier - -User id who last modified the entity. -At creation time, `modifiedByUser` is set as `createdByUser`. - - -`xdm:repositoryLastModifiedBy` -* is optional -* type: `string` -* defined in [Audit Trail](../common/auditable.schema.md#xdm:repositoryLastModifiedBy) - -### xdm:repositoryLastModifiedBy Type - - -`string` - - - - - - ## xdm:status ### Status diff --git a/docs/reference/context/pushnotificationtoken.schema.json b/docs/reference/context/pushnotificationtoken.schema.json index 8724efdb99..f74ffde434 100644 --- a/docs/reference/context/pushnotificationtoken.schema.json +++ b/docs/reference/context/pushnotificationtoken.schema.json @@ -58,7 +58,7 @@ "$ref": "#/definitions/pushnotificationtoken" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "xdm:token": "ABC123DEFG", diff --git a/docs/reference/context/pushnotificationtoken.schema.md b/docs/reference/context/pushnotificationtoken.schema.md index 66cf408c47..98b51f6390 100644 --- a/docs/reference/context/pushnotificationtoken.schema.md +++ b/docs/reference/context/pushnotificationtoken.schema.md @@ -13,7 +13,7 @@ Notification service. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/pushnotificationtoken.schema.json](context/pushnotificationtoken.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/pushnotificationtoken.schema.json](context/pushnotificationtoken.schema.json) | ## Schema Hierarchy diff --git a/docs/reference/data/measure.schema.json b/docs/reference/data/measure.schema.json index c0974be012..a0db303b8b 100644 --- a/docs/reference/data/measure.schema.json +++ b/docs/reference/data/measure.schema.json @@ -57,7 +57,7 @@ "required": [ "xdm:value" ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "@type": "https://ns.adobe.com/xdm/data/example-metric", diff --git a/docs/reference/data/measure.schema.md b/docs/reference/data/measure.schema.md index 7d8c24b9ab..b46b2a86fa 100644 --- a/docs/reference/data/measure.schema.md +++ b/docs/reference/data/measure.schema.md @@ -12,7 +12,7 @@ It has a value, and optionally a unit, although the unit can be inferred from th | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [data/measure.schema.json](data/measure.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [data/measure.schema.json](data/measure.schema.json) | ## Measure Example ```json diff --git a/docs/reference/external/repo/directory.schema.json b/docs/reference/external/repo/directory.schema.json index a7360b6fc2..30816b7534 100644 --- a/docs/reference/external/repo/directory.schema.json +++ b/docs/reference/external/repo/directory.schema.json @@ -77,6 +77,12 @@ "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -96,12 +102,6 @@ "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", diff --git a/docs/reference/external/repo/directory.schema.md b/docs/reference/external/repo/directory.schema.md index 2b6d492471..1e62df598a 100644 --- a/docs/reference/external/repo/directory.schema.md +++ b/docs/reference/external/repo/directory.schema.md @@ -32,6 +32,12 @@ A directory in Adobe Cloud Platform. "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -54,12 +60,6 @@ A directory in Adobe Cloud Platform. "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", From cf7779ab93002d44b56d90231d667552931f0b4e Mon Sep 17 00:00:00 2001 From: Kevin Streeter Date: Thu, 12 Apr 2018 15:32:18 -0700 Subject: [PATCH 123/127] Update experienceevent.schema.json --- schemas/context/experienceevent.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/context/experienceevent.schema.json b/schemas/context/experienceevent.schema.json index acf0fb9e7f..04e2764099 100644 --- a/schemas/context/experienceevent.schema.json +++ b/schemas/context/experienceevent.schema.json @@ -143,5 +143,5 @@ "$ref": "#/definitions/experienceevent" } ], - "meta:status": "experimental" + "meta:status": "stabilizing" } From 6c63cd5109a0c162d441cb53409797110c20cc11 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 22:35:34 +0000 Subject: [PATCH 124/127] [ci skip] updating documentation --- docs/reference/README.md | 124 +++++++++--------- .../common/eventenvelope.schema.json | 54 ++++---- docs/reference/common/eventenvelope.schema.md | 54 ++++---- .../content/page-component.schema.json | 8 +- .../content/page-component.schema.md | 14 +- .../context/experienceevent.schema.json | 2 +- .../context/experienceevent.schema.md | 2 +- .../reference/context/person-name.schema.json | 10 +- docs/reference/context/person-name.schema.md | 14 +- docs/reference/external/hal/hal.schema.json | 48 +++---- docs/reference/external/hal/hal.schema.md | 54 ++++---- .../external/repo/directory.schema.json | 12 +- .../external/repo/directory.schema.md | 12 +- 13 files changed, 204 insertions(+), 204 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index b4fca7419e..27d058fd53 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -17,29 +17,6 @@ * [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` * [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` -## /channels/ - -* [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` -* [E-Mail](./channels/agency.schema.md) – `https://ns.adobe.com/xdm/channels/agency` -* [APNS](./channels/apns.schema.md) – `https://ns.adobe.com/xdm/channels/apns` -* [Application](./channels/application.schema.md) – `https://ns.adobe.com/xdm/channels/application` -* [Baidu](./channels/baidu.schema.md) – `https://ns.adobe.com/xdm/channels/baidu` -* [Experience Channel](./channels/channel.schema.md) – `https://ns.adobe.com/xdm/channels/channel` -* [Direct Mail](./channels/direct-mail.schema.md) – `https://ns.adobe.com/xdm/channels/direct-mail` -* [E-Mail](./channels/email.schema.md) – `https://ns.adobe.com/xdm/channels/email` -* [Facebook News Feed](./channels/facebook-feed.schema.md) – `https://ns.adobe.com/xdm/channels/facebook-feed` -* [Fax](./channels/fax.schema.md) – `https://ns.adobe.com/xdm/channels/fax` -* [GCM](./channels/gcm.schema.md) – `https://ns.adobe.com/xdm/channels/gcm` -* [LINE](./channels/line.schema.md) – `https://ns.adobe.com/xdm/channels/line` -* [Web](./channels/mobile-app.schema.md) – `https://ns.adobe.com/xdm/channels/mobile-app` -* [MPNS](./channels/mpns.schema.md) – `https://ns.adobe.com/xdm/channels/mpns` -* [Phone](./channels/phone.schema.md) – `https://ns.adobe.com/xdm/channels/phone` -* [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` -* [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` -* [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` -* [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` -* [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` - ## /assets/ * [Aggregated Asset](./assets/aggregated-asset.schema.md) – `https://ns.adobe.com/xdm/assets/aggregated-asset` @@ -66,6 +43,57 @@ * [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` * [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` +## /channels/ + +* [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` +* [E-Mail](./channels/agency.schema.md) – `https://ns.adobe.com/xdm/channels/agency` +* [APNS](./channels/apns.schema.md) – `https://ns.adobe.com/xdm/channels/apns` +* [Application](./channels/application.schema.md) – `https://ns.adobe.com/xdm/channels/application` +* [Baidu](./channels/baidu.schema.md) – `https://ns.adobe.com/xdm/channels/baidu` +* [Experience Channel](./channels/channel.schema.md) – `https://ns.adobe.com/xdm/channels/channel` +* [Direct Mail](./channels/direct-mail.schema.md) – `https://ns.adobe.com/xdm/channels/direct-mail` +* [E-Mail](./channels/email.schema.md) – `https://ns.adobe.com/xdm/channels/email` +* [Facebook News Feed](./channels/facebook-feed.schema.md) – `https://ns.adobe.com/xdm/channels/facebook-feed` +* [Fax](./channels/fax.schema.md) – `https://ns.adobe.com/xdm/channels/fax` +* [GCM](./channels/gcm.schema.md) – `https://ns.adobe.com/xdm/channels/gcm` +* [LINE](./channels/line.schema.md) – `https://ns.adobe.com/xdm/channels/line` +* [Web](./channels/mobile-app.schema.md) – `https://ns.adobe.com/xdm/channels/mobile-app` +* [MPNS](./channels/mpns.schema.md) – `https://ns.adobe.com/xdm/channels/mpns` +* [Phone](./channels/phone.schema.md) – `https://ns.adobe.com/xdm/channels/phone` +* [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` +* [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` +* [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` +* [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` +* [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` + +## /context/ + +* [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` +* [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` +* [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` +* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` +* [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` +* [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` +* [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` +* [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` +* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` +* [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` +* [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` +* [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` +* [Person Name](./context/person-name.schema.md) – `https://ns.adobe.com/xdm/context/person-name` +* [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` +* [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` +* [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` +* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` +* [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` +* [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` +* [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` +* [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` +* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` +* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` +* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` +* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` + ## /data/ * [abandons](./data/abandons.schema.md) – `https://ns.adobe.com/xdm/data/metrics/commerce/abandons` @@ -98,34 +126,6 @@ * [unsubscriptions](./data/unsubscriptions.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/unsubscriptions` * [user-complaints](./data/user-complaints.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` -## /context/ - -* [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` -* [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` -* [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` -* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` -* [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` -* [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` -* [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` -* [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` -* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` -* [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` -* [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` -* [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` -* [Person Name](./context/person-name.schema.md) – `https://ns.adobe.com/xdm/context/person-name` -* [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` -* [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` -* [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` -* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` -* [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` -* [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` -* [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` -* [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` -* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` -* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` -* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` -* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` - ## /common/event/ * [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` @@ -136,13 +136,19 @@ * [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` * [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` +## /content/repository-policies/ + +* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` +* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` +* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` + ## /external/activity-streams-2/ * [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` * [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` * [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` -* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` * [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` +* [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` * [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` * [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` * [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` @@ -155,12 +161,6 @@ * [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` * [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` -## /external/schema/ - -* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` -* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` -* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` - ## /external/repo/ * [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` @@ -171,8 +171,8 @@ * [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` * [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` -## /content/repository-policies/ +## /external/schema/ -* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` -* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` -* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` +* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` +* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` +* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index 81f5f4d560..c9a7295869 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -61,11 +61,7 @@ "activitystreams:object": { "@type": "https://ns.adobe.com/xdm/assets/asset", "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "xdm:name": "example.jpg", - "xdm:path": "/MyFolder/example.jpg", - "dc:format": "image/jpg", - "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } }, { @@ -96,30 +92,31 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/published", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } }, { - "@type": "https://ns.adobe.com/xdm/common/event/published", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", @@ -143,27 +140,30 @@ } }, { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "xdm:name": "example.jpg", + "xdm:path": "/MyFolder/example.jpg", + "dc:format": "image/jpg", + "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" } } ] diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index dcd513a43e..e6ad19cbcb 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -40,11 +40,7 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream "activitystreams:object": { "@type": "https://ns.adobe.com/xdm/assets/asset", "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "xdm:name": "example.jpg", - "xdm:path": "/MyFolder/example.jpg", - "dc:format": "image/jpg", - "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" } } ``` @@ -81,33 +77,34 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "@type": "https://ns.adobe.com/xdm/common/event/published", + "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", + "@id": "08B3E5CE5822FC520A494229@AdobeOrg" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" + "@id": "https://francois.corp.adobe.com:4502/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + "@type": "https://ns.adobe.com/experience/aem/user", + "@id": "admin" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + "@type": "https://ns.adobe.com/xdm/content/componentized-page", + "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", + "dc:title": "Vintage Collection", + "xdm:path": "/content/geometrixx/en/vintage.html" } } ``` ```json { - "@type": "https://ns.adobe.com/xdm/common/event/published", + "@type": "https://ns.adobe.com/xdm/common/event/unpublished", "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", @@ -134,27 +131,30 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ```json { - "@type": "https://ns.adobe.com/xdm/common/event/unpublished", - "xdm:objectType": "https://ns.adobe.com/xdm/content/componentized-page", + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", "activitystreams:published": "2016-07-16T19:20:30+01:00", "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", "activitystreams:to": { - "@type": "http://ns.adobe.com/adobecloudplatform/ims/organization", - "@id": "08B3E5CE5822FC520A494229@AdobeOrg" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:generator": { "@type": "https://ns.adobe.com/xdm/content/repository", - "@id": "https://francois.corp.adobe.com:4502/" + "xdm:root": "https://cc-api-storage-stage.adobe.io/" }, "activitystreams:actor": { - "@type": "https://ns.adobe.com/experience/aem/user", - "@id": "admin" + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" }, "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/content/componentized-page", - "@id": "http://adobesummit.adobesandbox.com:4502/content/geometrixx/en/vintage.html", - "dc:title": "Vintage Collection", - "xdm:path": "/content/geometrixx/en/vintage.html" + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "xdm:name": "example.jpg", + "xdm:path": "/MyFolder/example.jpg", + "dc:format": "image/jpg", + "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" } } ``` diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index dd49beb513..f16502a736 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,6 +32,10 @@ ], "meta:status": "experimental", "examples": [ + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" + }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -39,10 +43,6 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } - }, - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index befc3dca0b..420cf10e6b 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -21,6 +21,13 @@ The type determines how the component will be displayed, rendered, and authored. ## Page Component Examples +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + ```json { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", @@ -32,13 +39,6 @@ The type determines how the component will be displayed, rendered, and authored. } ``` -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` - # Page Component Properties diff --git a/docs/reference/context/experienceevent.schema.json b/docs/reference/context/experienceevent.schema.json index 8523af2458..13dbfdd870 100644 --- a/docs/reference/context/experienceevent.schema.json +++ b/docs/reference/context/experienceevent.schema.json @@ -134,7 +134,7 @@ "$ref": "#/definitions/experienceevent" } ], - "meta:status": "experimental", + "meta:status": "stabilizing", "examples": [ { "@id": "https://data.adobe.io/experienceid-123456", diff --git a/docs/reference/context/experienceevent.schema.md b/docs/reference/context/experienceevent.schema.md index e5359f16cc..04e02e1075 100644 --- a/docs/reference/context/experienceevent.schema.md +++ b/docs/reference/context/experienceevent.schema.md @@ -9,7 +9,7 @@ The core ExperienceEvent XDM is used to capture observations that are altering o | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| -| Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/experienceevent.schema.json](context/experienceevent.schema.json) | +| Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/experienceevent.schema.json](context/experienceevent.schema.json) | ## Schema Hierarchy diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index 946614f2d0..f35f46c1a7 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -48,17 +48,17 @@ ], "meta:status": "experimental", "examples": [ + { + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" + }, { "xdm:firstName": "John", "xdm:middleName": "S", "xdm:lastName": "Doe", "xdm:fullName": "John S. Doe" }, - { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" - }, { "xdm:firstName": "张", "xdm:lastName": "三", diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index 410d8bdd8d..b69cf6ea43 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -18,18 +18,18 @@ In addition, a number of optional properties are made available that can be used ```json { - "xdm:firstName": "John", - "xdm:middleName": "S", - "xdm:lastName": "Doe", - "xdm:fullName": "John S. Doe" + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ``` ```json { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" + "xdm:firstName": "John", + "xdm:middleName": "S", + "xdm:lastName": "Doe", + "xdm:fullName": "John S. Doe" } ``` diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 7bcb6625fb..3fa44f9918 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -296,6 +296,30 @@ "status": "shipped", "total": 10.2 }, + { + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 + }, { "_links": { "self": { @@ -340,30 +364,6 @@ "currency": "USD", "status": "shipped", "total": 10.2 - }, - { - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 } ] } \ No newline at end of file diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index 6389ecf343..b9c7815e1b 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -39,6 +39,33 @@ This external schema definition allows adding HAL expressions into an existing s } ``` +```json +{ + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 +} +``` + ```json { "_links": { @@ -87,33 +114,6 @@ This external schema definition allows adding HAL expressions into an existing s } ``` -```json -{ - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 -} -``` - # HAL Resource Properties diff --git a/docs/reference/external/repo/directory.schema.json b/docs/reference/external/repo/directory.schema.json index 30816b7534..a7360b6fc2 100644 --- a/docs/reference/external/repo/directory.schema.json +++ b/docs/reference/external/repo/directory.schema.json @@ -77,12 +77,6 @@ "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -102,6 +96,12 @@ "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", diff --git a/docs/reference/external/repo/directory.schema.md b/docs/reference/external/repo/directory.schema.md index 1e62df598a..2b6d492471 100644 --- a/docs/reference/external/repo/directory.schema.md +++ b/docs/reference/external/repo/directory.schema.md @@ -32,12 +32,6 @@ A directory in Adobe Cloud Platform. "templated": true } }, - "_page": { - "orderBy": "id", - "start": "123", - "next": "789", - "count": 100 - }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", @@ -60,6 +54,12 @@ A directory in Adobe Cloud Platform. "templated": true } }, + "_page": { + "orderBy": "id", + "start": "123", + "next": "789", + "count": 100 + }, "repo:createdDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", "repo:path": "/", From d1ce03fa037ce0f9ef82e72939fa6c30bf212371 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Thu, 12 Apr 2018 22:37:45 +0000 Subject: [PATCH 125/127] [ci skip] updating documentation --- docs/reference/README.md | 68 +++++++++---------- .../common/eventenvelope.schema.json | 54 +++++++-------- docs/reference/common/eventenvelope.schema.md | 60 ++++++++-------- docs/reference/common/extensible.schema.json | 30 ++++---- docs/reference/common/extensible.schema.md | 36 +++++----- .../reference/context/person-name.schema.json | 10 +-- docs/reference/context/person-name.schema.md | 16 ++--- docs/reference/external/hal/hal.schema.json | 48 ++++++------- docs/reference/external/hal/hal.schema.md | 54 +++++++-------- 9 files changed, 188 insertions(+), 188 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index 27d058fd53..c20d48b58c 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -4,6 +4,29 @@ +## /channels/ + +* [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` +* [E-Mail](./channels/agency.schema.md) – `https://ns.adobe.com/xdm/channels/agency` +* [APNS](./channels/apns.schema.md) – `https://ns.adobe.com/xdm/channels/apns` +* [Application](./channels/application.schema.md) – `https://ns.adobe.com/xdm/channels/application` +* [Baidu](./channels/baidu.schema.md) – `https://ns.adobe.com/xdm/channels/baidu` +* [Experience Channel](./channels/channel.schema.md) – `https://ns.adobe.com/xdm/channels/channel` +* [Direct Mail](./channels/direct-mail.schema.md) – `https://ns.adobe.com/xdm/channels/direct-mail` +* [E-Mail](./channels/email.schema.md) – `https://ns.adobe.com/xdm/channels/email` +* [Facebook News Feed](./channels/facebook-feed.schema.md) – `https://ns.adobe.com/xdm/channels/facebook-feed` +* [Fax](./channels/fax.schema.md) – `https://ns.adobe.com/xdm/channels/fax` +* [GCM](./channels/gcm.schema.md) – `https://ns.adobe.com/xdm/channels/gcm` +* [LINE](./channels/line.schema.md) – `https://ns.adobe.com/xdm/channels/line` +* [Web](./channels/mobile-app.schema.md) – `https://ns.adobe.com/xdm/channels/mobile-app` +* [MPNS](./channels/mpns.schema.md) – `https://ns.adobe.com/xdm/channels/mpns` +* [Phone](./channels/phone.schema.md) – `https://ns.adobe.com/xdm/channels/phone` +* [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` +* [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` +* [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` +* [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` +* [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` + ## /common/ * [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` @@ -43,29 +66,6 @@ * [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` * [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` -## /channels/ - -* [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` -* [E-Mail](./channels/agency.schema.md) – `https://ns.adobe.com/xdm/channels/agency` -* [APNS](./channels/apns.schema.md) – `https://ns.adobe.com/xdm/channels/apns` -* [Application](./channels/application.schema.md) – `https://ns.adobe.com/xdm/channels/application` -* [Baidu](./channels/baidu.schema.md) – `https://ns.adobe.com/xdm/channels/baidu` -* [Experience Channel](./channels/channel.schema.md) – `https://ns.adobe.com/xdm/channels/channel` -* [Direct Mail](./channels/direct-mail.schema.md) – `https://ns.adobe.com/xdm/channels/direct-mail` -* [E-Mail](./channels/email.schema.md) – `https://ns.adobe.com/xdm/channels/email` -* [Facebook News Feed](./channels/facebook-feed.schema.md) – `https://ns.adobe.com/xdm/channels/facebook-feed` -* [Fax](./channels/fax.schema.md) – `https://ns.adobe.com/xdm/channels/fax` -* [GCM](./channels/gcm.schema.md) – `https://ns.adobe.com/xdm/channels/gcm` -* [LINE](./channels/line.schema.md) – `https://ns.adobe.com/xdm/channels/line` -* [Web](./channels/mobile-app.schema.md) – `https://ns.adobe.com/xdm/channels/mobile-app` -* [MPNS](./channels/mpns.schema.md) – `https://ns.adobe.com/xdm/channels/mpns` -* [Phone](./channels/phone.schema.md) – `https://ns.adobe.com/xdm/channels/phone` -* [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` -* [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` -* [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` -* [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` -* [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` - ## /context/ * [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` @@ -136,19 +136,13 @@ * [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` * [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` -## /content/repository-policies/ - -* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` -* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` -* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` - ## /external/activity-streams-2/ * [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` * [Collection Page](./external/activity-streams-2/collection-page.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` * [Collection](./external/activity-streams-2/collection.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/collection` -* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` * [JSON-LD `@context`](./external/activity-streams-2/context.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/context` +* [Document](./external/activity-streams-2/document.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/document` * [JSON-LD `@id`](./external/activity-streams-2/id.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/id` * [Image Document](./external/activity-streams-2/image.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/image` * [Link](./external/activity-streams-2/link.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/link` @@ -156,6 +150,12 @@ * [RDF Language Tagged String](./external/activity-streams-2/rdf-langstring.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` * [JSON-LD `@type`](./external/activity-streams-2/type.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/type` +## /external/schema/ + +* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` +* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` +* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` + ## /external/hal/ * [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` @@ -171,8 +171,8 @@ * [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` * [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` -## /external/schema/ +## /content/repository-policies/ -* [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` -* [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` -* [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` +* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` +* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` +* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index c9a7295869..5e1c011ad3 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -41,6 +41,33 @@ ], "meta:status": "experimental", "examples": [ + { + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "activitystreams:published": "2016-07-16T19:20:30+01:00", + "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", + "activitystreams:to": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:generator": { + "@type": "https://ns.adobe.com/xdm/content/repository", + "xdm:root": "https://cc-api-storage-stage.adobe.io/" + }, + "activitystreams:actor": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:object": { + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "xdm:name": "example.jpg", + "xdm:path": "/MyFolder/example.jpg", + "dc:format": "image/jpg", + "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" + } + }, { "@type": "https://ns.adobe.com/xdm/common/event/created", "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", @@ -138,33 +165,6 @@ "dc:title": "Vintage Collection", "xdm:path": "/content/geometrixx/en/vintage.html" } - }, - { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", - "activitystreams:published": "2016-07-16T19:20:30+01:00", - "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", - "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:generator": { - "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" - }, - "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "xdm:name": "example.jpg", - "xdm:path": "/MyFolder/example.jpg", - "dc:format": "image/jpg", - "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" - } } ] } \ No newline at end of file diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index e6ad19cbcb..cbf63de124 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -19,6 +19,36 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream ## EventEnvelope Examples +```json +{ + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "activitystreams:published": "2016-07-16T19:20:30+01:00", + "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", + "activitystreams:to": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:generator": { + "@type": "https://ns.adobe.com/xdm/content/repository", + "xdm:root": "https://cc-api-storage-stage.adobe.io/" + }, + "activitystreams:actor": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:object": { + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "xdm:name": "example.jpg", + "xdm:path": "/MyFolder/example.jpg", + "dc:format": "image/jpg", + "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" + } +} +``` + ```json { "@type": "https://ns.adobe.com/xdm/common/event/created", @@ -129,36 +159,6 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream } ``` -```json -{ - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", - "activitystreams:published": "2016-07-16T19:20:30+01:00", - "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", - "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:generator": { - "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" - }, - "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "xdm:name": "example.jpg", - "xdm:path": "/MyFolder/example.jpg", - "dc:format": "image/jpg", - "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" - } -} -``` - # EventEnvelope Properties diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index 3f36a1c6b5..44d5a4a2e6 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -264,21 +264,6 @@ "xdm:path": "/here", "repo:etag": "15" }, - { - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" - }, { "@context": { "xdm": "https://ns.adobe.com/xdm/", @@ -323,6 +308,21 @@ "repo:size": 1632418, "xdm:path": "here", "repo:etag": "15" + }, + { + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" } ] } \ No newline at end of file diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index 35d419fa86..c2a2ee8289 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -42,24 +42,6 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` -```json -{ - "https://ns.example.com/asset_name": "custom_asset_1", - "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", - "xdm:createDate": "2017-09-26T15:52:25+00:00", - "repo:createdDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryCreatedBy": "lars", - "xdm:modifyDate": "2017-09-26T15:52:25+00:00", - "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", - "repo:version": "15", - "dc:title": "This is an example", - "repo:size": 1632418, - "xdm:path": "/here", - "repo:etag": "15" -} -``` - ```json { "@context": { @@ -108,3 +90,21 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in } ``` +```json +{ + "https://ns.example.com/asset_name": "custom_asset_1", + "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", + "xdm:createDate": "2017-09-26T15:52:25+00:00", + "repo:createdDate": "2017-09-26T15:52:25+00:00", + "xdm:repositoryCreatedBy": "lars", + "xdm:modifyDate": "2017-09-26T15:52:25+00:00", + "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "repo:version": "15", + "dc:title": "This is an example", + "repo:size": 1632418, + "xdm:path": "/here", + "repo:etag": "15" +} +``` + diff --git a/docs/reference/context/person-name.schema.json b/docs/reference/context/person-name.schema.json index f35f46c1a7..0f7af5cfa8 100644 --- a/docs/reference/context/person-name.schema.json +++ b/docs/reference/context/person-name.schema.json @@ -48,11 +48,6 @@ ], "meta:status": "experimental", "examples": [ - { - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" - }, { "xdm:firstName": "John", "xdm:middleName": "S", @@ -63,6 +58,11 @@ "xdm:firstName": "张", "xdm:lastName": "三", "xdm:fullName": "张三" + }, + { + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" } ] } \ No newline at end of file diff --git a/docs/reference/context/person-name.schema.md b/docs/reference/context/person-name.schema.md index b69cf6ea43..603043eeab 100644 --- a/docs/reference/context/person-name.schema.md +++ b/docs/reference/context/person-name.schema.md @@ -16,14 +16,6 @@ In addition, a number of optional properties are made available that can be used ## Person Name Examples -```json -{ - "xdm:firstName": "فلانة", - "xdm:lastName": "الفلانية", - "xdm:fullName": "فلانة الفلانية" -} -``` - ```json { "xdm:firstName": "John", @@ -41,6 +33,14 @@ In addition, a number of optional properties are made available that can be used } ``` +```json +{ + "xdm:firstName": "فلانة", + "xdm:lastName": "الفلانية", + "xdm:fullName": "فلانة الفلانية" +} +``` + # Person Name Properties diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 3fa44f9918..7bcb6625fb 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -296,30 +296,6 @@ "status": "shipped", "total": 10.2 }, - { - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 - }, { "_links": { "self": { @@ -364,6 +340,30 @@ "currency": "USD", "status": "shipped", "total": 10.2 + }, + { + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 } ] } \ No newline at end of file diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index b9c7815e1b..6389ecf343 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -39,33 +39,6 @@ This external schema definition allows adding HAL expressions into an existing s } ``` -```json -{ - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 -} -``` - ```json { "_links": { @@ -114,6 +87,33 @@ This external schema definition allows adding HAL expressions into an existing s } ``` +```json +{ + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 +} +``` + # HAL Resource Properties From 5ae66f0ab4d53d83261ae6b62f7c5b09bf3115d1 Mon Sep 17 00:00:00 2001 From: Andy Steed Date: Fri, 13 Apr 2018 12:52:05 -0700 Subject: [PATCH 126/127] Update jsonschema2md dependency version to 1.0.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ae2025b1d9..a4de8b5cb2 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ }, "license": "https://creativecommons.org/licenses/by/4.0/", "devDependencies": { - "@adobe/jsonschema2md": "1.0.3", + "@adobe/jsonschema2md": "1.0.4", "prettier": "1.11.1", "pretty-quick": "^1.4.1", "mocha": "^5.0.1", From ba8f040806bd93e14d223bb339d1b8cd282404df Mon Sep 17 00:00:00 2001 From: CircleCI Date: Fri, 13 Apr 2018 20:50:10 +0000 Subject: [PATCH 127/127] [ci skip] updating documentation --- docs/reference/README.md | 166 +++++++++--------- .../assets/aggregated-asset.schema.md | 14 +- docs/reference/assets/artboard.schema.md | 2 +- docs/reference/assets/asset.schema.md | 16 +- docs/reference/assets/image.schema.md | 10 +- docs/reference/assets/layer.schema.md | 2 +- docs/reference/assets/video.schema.md | 10 +- docs/reference/channels/adm.schema.md | 2 +- docs/reference/channels/agency.schema.md | 2 +- docs/reference/channels/apns.schema.md | 2 +- docs/reference/channels/baidu.schema.md | 2 +- docs/reference/channels/channel.schema.md | 2 +- docs/reference/channels/direct-mail.schema.md | 2 +- docs/reference/channels/email.schema.md | 2 +- .../channels/facebook-feed.schema.md | 2 +- docs/reference/channels/fax.schema.md | 2 +- docs/reference/channels/gcm.schema.md | 2 +- docs/reference/channels/line.schema.md | 2 +- docs/reference/channels/mobile-app.schema.md | 2 +- docs/reference/channels/mpns.schema.md | 2 +- docs/reference/channels/phone.schema.md | 2 +- docs/reference/channels/sms.schema.md | 2 +- .../reference/channels/twitter-feed.schema.md | 2 +- docs/reference/channels/web.schema.md | 2 +- docs/reference/channels/wechat.schema.md | 2 +- docs/reference/channels/wns.schema.md | 2 +- docs/reference/common/address.schema.md | 4 +- docs/reference/common/auditable.schema.md | 6 +- docs/reference/common/event/created.schema.md | 2 +- docs/reference/common/event/deleted.schema.md | 2 +- docs/reference/common/event/emitted.schema.md | 4 +- .../common/event/published.schema.md | 2 +- .../reference/common/event/rejected.schema.md | 2 +- .../common/event/unpublished.schema.md | 2 +- docs/reference/common/event/updated.schema.md | 2 +- .../common/eventenvelope.schema.json | 46 ++--- docs/reference/common/eventenvelope.schema.md | 60 +++---- docs/reference/common/extensible.schema.json | 6 +- docs/reference/common/extensible.schema.md | 12 +- docs/reference/common/geo.schema.md | 2 +- docs/reference/common/organization.schema.md | 6 +- docs/reference/common/principal.schema.md | 2 +- .../content/componentized-page.schema.md | 2 +- docs/reference/content/content.schema.md | 10 +- .../content/page-component.schema.json | 8 +- .../content/page-component.schema.md | 16 +- docs/reference/content/product.schema.md | 8 +- .../repository-policies/encryption.schema.md | 4 +- .../repository-policies/quota.schema.md | 2 +- .../context/browserdetails.schema.md | 2 +- docs/reference/context/commerce.schema.md | 2 +- docs/reference/context/device.schema.md | 10 +- docs/reference/context/emailaddress.schema.md | 6 +- docs/reference/context/enduserids.schema.md | 2 +- docs/reference/context/environment.schema.md | 6 +- .../context/experienceevent.schema.md | 2 +- docs/reference/context/identity.schema.md | 2 +- .../context/implementationdetails.schema.md | 2 +- docs/reference/context/optinout.schema.md | 2 +- docs/reference/context/person.schema.md | 4 +- docs/reference/context/place.schema.md | 6 +- docs/reference/context/placecontext.schema.md | 4 +- docs/reference/context/profile.schema.md | 2 +- .../context/pushnotificationtoken.schema.md | 2 +- docs/reference/context/subscription.schema.md | 2 +- docs/reference/context/webinfo.schema.json | 18 +- docs/reference/context/webinfo.schema.md | 20 +-- docs/reference/context/webpageview.schema.md | 2 +- docs/reference/context/webreferrer.schema.md | 2 +- docs/reference/data/measure.schema.md | 4 +- docs/reference/data/metric.schema.md | 2 +- docs/reference/data/metrics.schema.md | 4 +- docs/reference/data/not-sent.schema.md | 2 +- docs/reference/data/sends.schema.md | 2 +- .../activity-streams-2/activity.schema.md | 12 +- .../collection-page.schema.md | 2 +- .../activity-streams-2/collection.schema.md | 6 +- .../activity-streams-2/link.schema.md | 4 +- .../activity-streams-2/object.schema.md | 6 +- .../reference/external/hal/hal-link.schema.md | 18 +- docs/reference/external/hal/hal.schema.json | 48 ++--- docs/reference/external/hal/hal.schema.md | 60 +++---- .../repo/accesscontrolpolicy.schema.md | 2 +- docs/reference/external/repo/asset.schema.md | 6 +- docs/reference/external/repo/common.schema.md | 4 +- .../external/repo/directory.schema.md | 6 +- .../external/repo/sub-directory.schema.md | 2 +- .../external/schema/geocircle.schema.md | 2 +- .../external/schema/geoshape.schema.md | 2 +- 89 files changed, 380 insertions(+), 380 deletions(-) diff --git a/docs/reference/README.md b/docs/reference/README.md index c20d48b58c..9895124806 100644 --- a/docs/reference/README.md +++ b/docs/reference/README.md @@ -4,42 +4,6 @@ -## /channels/ - -* [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` -* [E-Mail](./channels/agency.schema.md) – `https://ns.adobe.com/xdm/channels/agency` -* [APNS](./channels/apns.schema.md) – `https://ns.adobe.com/xdm/channels/apns` -* [Application](./channels/application.schema.md) – `https://ns.adobe.com/xdm/channels/application` -* [Baidu](./channels/baidu.schema.md) – `https://ns.adobe.com/xdm/channels/baidu` -* [Experience Channel](./channels/channel.schema.md) – `https://ns.adobe.com/xdm/channels/channel` -* [Direct Mail](./channels/direct-mail.schema.md) – `https://ns.adobe.com/xdm/channels/direct-mail` -* [E-Mail](./channels/email.schema.md) – `https://ns.adobe.com/xdm/channels/email` -* [Facebook News Feed](./channels/facebook-feed.schema.md) – `https://ns.adobe.com/xdm/channels/facebook-feed` -* [Fax](./channels/fax.schema.md) – `https://ns.adobe.com/xdm/channels/fax` -* [GCM](./channels/gcm.schema.md) – `https://ns.adobe.com/xdm/channels/gcm` -* [LINE](./channels/line.schema.md) – `https://ns.adobe.com/xdm/channels/line` -* [Web](./channels/mobile-app.schema.md) – `https://ns.adobe.com/xdm/channels/mobile-app` -* [MPNS](./channels/mpns.schema.md) – `https://ns.adobe.com/xdm/channels/mpns` -* [Phone](./channels/phone.schema.md) – `https://ns.adobe.com/xdm/channels/phone` -* [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` -* [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` -* [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` -* [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` -* [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` - -## /common/ - -* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` -* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` -* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` -* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` -* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` -* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` -* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` -* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` -* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` -* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` - ## /assets/ * [Aggregated Asset](./assets/aggregated-asset.schema.md) – `https://ns.adobe.com/xdm/assets/aggregated-asset` @@ -66,33 +30,18 @@ * [Product List Item](./content/productlistitem.schema.md) – `https://ns.adobe.com/xdm/content/productlistitem` * [Content Repository](./content/repository.schema.md) – `https://ns.adobe.com/xdm/content/repository` -## /context/ +## /common/ -* [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` -* [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` -* [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` -* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` -* [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` -* [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` -* [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` -* [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` -* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` -* [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` -* [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` -* [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` -* [Person Name](./context/person-name.schema.md) – `https://ns.adobe.com/xdm/context/person-name` -* [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` -* [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` -* [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` -* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` -* [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` -* [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` -* [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` -* [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` -* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` -* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` -* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` -* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` +* [Address](./common/address.schema.md) – `https://ns.adobe.com/xdm/common/address` +* [Audit Trail](./common/auditable.schema.md) – `https://ns.adobe.com/xdm/common/auditable` +* [EventEnvelope](./common/eventenvelope.schema.md) – `https://ns.adobe.com/xdm/common/eventenvelope` +* [Extensibility base schema](./common/extensible.schema.md) – `https://ns.adobe.com/xdm/common/extensible` +* [Geo](./common/geo.schema.md) – `https://ns.adobe.com/xdm/common/geo` +* [Identity Provider](./common/identity-provider.schema.md) – `https://ns.adobe.com/xdm/common/identity-provider` +* [Organization](./common/organization.schema.md) – `https://ns.adobe.com/xdm/common/organization` +* [Page](./common/page.schema.md) – `https://ns.adobe.com/xdm/common/page` +* [Principal](./common/principal.schema.md) – `https://ns.adobe.com/xdm/common/principal` +* [Customer Managed Environment](./common/selfservice.schema.md) – `https://ns.adobe.com/xdm/common/selfservice` ## /data/ @@ -126,6 +75,63 @@ * [unsubscriptions](./data/unsubscriptions.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/unsubscriptions` * [user-complaints](./data/user-complaints.schema.md) – `https://ns.adobe.com/xdm/data/metrics/direct-marketing/user-complaints` +## /channels/ + +* [ADM](./channels/adm.schema.md) – `https://ns.adobe.com/xdm/channels/adm` +* [E-Mail](./channels/agency.schema.md) – `https://ns.adobe.com/xdm/channels/agency` +* [APNS](./channels/apns.schema.md) – `https://ns.adobe.com/xdm/channels/apns` +* [Application](./channels/application.schema.md) – `https://ns.adobe.com/xdm/channels/application` +* [Baidu](./channels/baidu.schema.md) – `https://ns.adobe.com/xdm/channels/baidu` +* [Experience Channel](./channels/channel.schema.md) – `https://ns.adobe.com/xdm/channels/channel` +* [Direct Mail](./channels/direct-mail.schema.md) – `https://ns.adobe.com/xdm/channels/direct-mail` +* [E-Mail](./channels/email.schema.md) – `https://ns.adobe.com/xdm/channels/email` +* [Facebook News Feed](./channels/facebook-feed.schema.md) – `https://ns.adobe.com/xdm/channels/facebook-feed` +* [Fax](./channels/fax.schema.md) – `https://ns.adobe.com/xdm/channels/fax` +* [GCM](./channels/gcm.schema.md) – `https://ns.adobe.com/xdm/channels/gcm` +* [LINE](./channels/line.schema.md) – `https://ns.adobe.com/xdm/channels/line` +* [Web](./channels/mobile-app.schema.md) – `https://ns.adobe.com/xdm/channels/mobile-app` +* [MPNS](./channels/mpns.schema.md) – `https://ns.adobe.com/xdm/channels/mpns` +* [Phone](./channels/phone.schema.md) – `https://ns.adobe.com/xdm/channels/phone` +* [SMS](./channels/sms.schema.md) – `https://ns.adobe.com/xdm/channels/sms` +* [Twitter Feed](./channels/twitter-feed.schema.md) – `https://ns.adobe.com/xdm/channels/twitter-feed` +* [Web](./channels/web.schema.md) – `https://ns.adobe.com/xdm/channels/web` +* [WeChat](./channels/wechat.schema.md) – `https://ns.adobe.com/xdm/channels/wechat` +* [WNS](./channels/wns.schema.md) – `https://ns.adobe.com/xdm/channels/wns` + +## /context/ + +* [Browser Details](./context/browserdetails.schema.md) – `https://ns.adobe.com/xdm/context/browserdetails` +* [Commerce](./context/commerce.schema.md) – `https://ns.adobe.com/xdm/context/commerce` +* [Device](./context/device.schema.md) – `https://ns.adobe.com/xdm/context/device` +* [Email Address](./context/emailaddress.schema.md) – `https://ns.adobe.com/xdm/context/emailaddress` +* [End User IDs](./context/enduserids.schema.md) – `https://ns.adobe.com/xdm/context/enduserids` +* [Environment](./context/environment.schema.md) – `https://ns.adobe.com/xdm/context/environment` +* [ExperienceEvent](./context/experienceevent.schema.md) – `https://ns.adobe.com/xdm/context/experienceevent` +* [Identity](./context/identity.schema.md) – `https://ns.adobe.com/xdm/context/identity` +* [Implementation Details](./context/implementationdetails.schema.md) – `https://ns.adobe.com/xdm/context/implementationdetails` +* [Marketing](./context/marketing.schema.md) – `https://ns.adobe.com/xdm/context/marketing` +* [Namespace](./context/namespace.schema.md) – `https://ns.adobe.com/xdm/context/namespace` +* [OptInOut](./context/optinout.schema.md) – `https://ns.adobe.com/xdm/context/optinout` +* [Person Name](./context/person-name.schema.md) – `https://ns.adobe.com/xdm/context/person-name` +* [Person](./context/person.schema.md) – `https://ns.adobe.com/xdm/context/person` +* [Phone Number](./context/phonenumber.schema.md) – `https://ns.adobe.com/xdm/context/phonenumber` +* [Place](./context/place.schema.md) – `https://ns.adobe.com/xdm/context/place` +* [Place Context](./context/placecontext.schema.md) – `https://ns.adobe.com/xdm/context/placecontext` +* [Profile](./context/profile.schema.md) – `https://ns.adobe.com/xdm/context/profile` +* [Push Notification Token](./context/pushnotificationtoken.schema.md) – `https://ns.adobe.com/xdm/context/pushnotificationtoken` +* [Search](./context/search.schema.md) – `https://ns.adobe.com/xdm/context/search` +* [Subscription](./context/subscription.schema.md) – `https://ns.adobe.com/xdm/context/subscription` +* [Web Information](./context/webinfo.schema.md) – `https://ns.adobe.com/xdm/context/webinfo` +* [Web Interaction](./context/webinteraction.schema.md) – `https://ns.adobe.com/xdm/context/webinteraction` +* [Web Page View](./context/webpageview.schema.md) – `https://ns.adobe.com/xdm/context/webpageview` +* [Web Referrer](./context/webreferrer.schema.md) – `https://ns.adobe.com/xdm/context/webreferrer` + +## /content/repository-policies/ + +* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` +* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` +* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` + ## /common/event/ * [Created Event](./common/event/created.schema.md) – `https://ns.adobe.com/xdm/common/event/created` @@ -136,6 +142,21 @@ * [Unpublished Event](./common/event/unpublished.schema.md) – `https://ns.adobe.com/xdm/common/event/unpublished` * [Updated Event](./common/event/updated.schema.md) – `https://ns.adobe.com/xdm/common/event/updated` +## /external/repo/ + +* [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` +* [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` +* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` +* [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` +* [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` +* [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` +* [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` + +## /external/hal/ + +* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` +* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` + ## /external/activity-streams-2/ * [Activity](./external/activity-streams-2/activity.schema.md) – `https://ns.adobe.com/xdm/external/activity-streams-2/activity` @@ -155,24 +176,3 @@ * [Geo Circle](./external/schema/geocircle.schema.md) – `http://schema.org/GeoCircle` * [Geo Coordinates](./external/schema/geocoordinates.schema.md) – `http://schema.org/GeoCoordinates` * [Geo Shape](./external/schema/geoshape.schema.md) – `http://schema.org/GeoShape` - -## /external/hal/ - -* [HAL Link](./external/hal/hal-link.schema.md) – `https://ns.adobe.com/xdm/external/hal/link` -* [HAL Resource](./external/hal/hal.schema.md) – `https://ns.adobe.com/xdm/external/hal/resource` - -## /external/repo/ - -* [Access Control Entry](./external/repo/accesscontrolentry.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` -* [Access Control Policy](./external/repo/accesscontrolpolicy.schema.md) – `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` -* [Asset](./external/repo/asset.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/asset` -* [Common Properties](./external/repo/common.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0` -* [Directory](./external/repo/directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/directory` -* [Effective Privileges](./external/repo/effectiveprivileges.schema.md) – `https://ns.adobe.com/xdm/external/repo/effectiveprivileges` -* [Sub-Directory](./external/repo/sub-directory.schema.md) – `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` - -## /content/repository-policies/ - -* [At-Rest Encryption](./content/repository-policies/encryption.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/encryption` -* [Storage Quota](./content/repository-policies/quota.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/quota` -* [Versioning](./content/repository-policies/versioning.schema.md) – `https://ns.adobe.com/xdm/content/repository-policies/versioning` diff --git a/docs/reference/assets/aggregated-asset.schema.md b/docs/reference/assets/aggregated-asset.schema.md index 6818fb332a..6120018367 100644 --- a/docs/reference/assets/aggregated-asset.schema.md +++ b/docs/reference/assets/aggregated-asset.schema.md @@ -10,7 +10,6 @@ This schema aggregates all asset sub-schemas that are supported by XDM. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [assets/aggregated-asset.schema.json](assets/aggregated-asset.schema.json) | - ## Schema Hierarchy * Aggregated Asset `https://ns.adobe.com/xdm/assets/aggregated-asset` @@ -24,6 +23,7 @@ This schema aggregates all asset sub-schemas that are supported by XDM. * [Image](image.schema.md) `https://ns.adobe.com/xdm/assets/image` * [Video](video.schema.md) `https://ns.adobe.com/xdm/assets/video` + ## Aggregated Asset Example ```json { @@ -181,7 +181,7 @@ It is an object whose property names are link relation types (as defined by [RFC ## cc:attributionName ### Attribution Name -For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. +For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. `cc:attributionName` * is optional @@ -201,7 +201,7 @@ For licenses that require attribution, such as some Creative Commons licenses, t ## cc:attributionUrl ### Attribution URL -For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. +For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. `cc:attributionUrl` * is optional @@ -754,7 +754,7 @@ All instances must conform to this regular expression ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -799,7 +799,7 @@ An ETag is an HTTP response header returned by an HTTP/1.1 compliant web server ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is optional @@ -1128,7 +1128,7 @@ Describes the proportional relationship between the width and the height. To det ## xdm:documentID ### Document ID -It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. +It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. The value is a GUID, capital A-F, 8-4-4-12, preceded by the string `uuid:` @@ -1653,7 +1653,7 @@ The keyword itself. A keyword can be considered like a tag, i.e. a short descrip ## xmp:modifyDate ### Mofification Date -The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. +The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. `xmp:modifyDate` * is optional diff --git a/docs/reference/assets/artboard.schema.md b/docs/reference/assets/artboard.schema.md index a4ca37ceac..1dd90a8222 100644 --- a/docs/reference/assets/artboard.schema.md +++ b/docs/reference/assets/artboard.schema.md @@ -19,12 +19,12 @@ Artboards can contain layers and layer groups, but not other artboards. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [assets/artboard.schema.json](assets/artboard.schema.json) | - ## Schema Hierarchy * Artboard `https://ns.adobe.com/xdm/assets/artboard` * [Rectangular Object (measured in variable unit)](variable-unit-rectangular.schema.md) `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` + ## Artboard Example ```json { diff --git a/docs/reference/assets/asset.schema.md b/docs/reference/assets/asset.schema.md index fddfdc8d85..3835b49d1d 100644 --- a/docs/reference/assets/asset.schema.md +++ b/docs/reference/assets/asset.schema.md @@ -9,7 +9,7 @@ A digital asset, is anything that exists in a binary format and comes with the r As described in [What is a digital asset](https://www.realstorygroup.com/Blog/3140-What-is-a-digital-asset), the definition of a digital asset can be put like this: -> In theory, a digital asset is something represented in a digital form that has an intrinsic or acquired value. This initial definition is intentionally general. It could correspond to almost anything or any piece of media in a digital form, such as a photo, website, or email message. As a practical matter, however, DAM [Digital Asset Management] has evolved to support the management of digital media assets almost exclusively. This includes images, video, audio, and related artifacts (such as brochures and compound publications). You would typically use different types of technology to manage email, Word documents, relational data records, and web pages. Even some image “assets” don’t fall under the domain of DAM technology as it is known today. Scanned paper or forms that end up as TIFF or PDF files do not constitute media assets that originate through some creative process. +> In theory, a digital asset is something represented in a digital form that has an intrinsic or acquired value. This initial definition is intentionally general. It could correspond to almost anything or any piece of media in a digital form, such as a photo, website, or email message. As a practical matter, however, DAM [Digital Asset Management] has evolved to support the management of digital media assets almost exclusively. This includes images, video, audio, and related artifacts (such as brochures and compound publications). You would typically use different types of technology to manage email, Word documents, relational data records, and web pages. Even some image “assets” don’t fall under the domain of DAM technology as it is known today. Scanned paper or forms that end up as TIFF or PDF files do not constitute media assets that originate through some creative process. All digital assets are content, and some content can include, link to, or refer digital assets. Content can furthermore be transformed (rendered) into digital assets, such as when exporting a PDF. @@ -17,7 +17,6 @@ All digital assets are content, and some content can include, link to, or refer | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [assets/asset.schema.json](assets/asset.schema.json) | - ## Schema Hierarchy * Asset `https://ns.adobe.com/xdm/assets/asset` @@ -28,6 +27,7 @@ All digital assets are content, and some content can include, link to, or refer * [Copyright Owner](copyright-owner.schema.md) `https://ns.adobe.com/xdm/assets/copyright-owner` * [Layer Group](layer-group.schema.md) `https://ns.adobe.com/xdm/assets/layer-group` + ## Asset Example ```json { @@ -175,7 +175,7 @@ It is an object whose property names are link relation types (as defined by [RFC ## cc:attributionName ### Attribution Name -For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. +For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. `cc:attributionName` * is optional @@ -195,7 +195,7 @@ For licenses that require attribution, such as some Creative Commons licenses, t ## cc:attributionUrl ### Attribution URL -For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. +For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. `cc:attributionUrl` * is optional @@ -682,7 +682,7 @@ All instances must conform to this regular expression ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -727,7 +727,7 @@ An ETag is an HTTP response header returned by an HTTP/1.1 compliant web server ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is **required** @@ -921,7 +921,7 @@ Unknown type ``. ## xdm:documentID ### Document ID -It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. +It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. The value is a GUID, capital A-F, 8-4-4-12, preceded by the string `uuid:` @@ -1418,7 +1418,7 @@ The keyword itself. A keyword can be considered like a tag, i.e. a short descrip ## xmp:modifyDate ### Mofification Date -The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. +The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. `xmp:modifyDate` * is optional diff --git a/docs/reference/assets/image.schema.md b/docs/reference/assets/image.schema.md index 7f232906ef..a0a5032f19 100644 --- a/docs/reference/assets/image.schema.md +++ b/docs/reference/assets/image.schema.md @@ -10,7 +10,6 @@ The Image class is for raster and vector image assets, including JPEG, PNG, SVG | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [assets/image.schema.json](assets/image.schema.json) | - ## Schema Hierarchy * Image `https://ns.adobe.com/xdm/assets/image` @@ -18,6 +17,7 @@ The Image class is for raster and vector image assets, including JPEG, PNG, SVG * [Asset](asset.schema.md) `https://ns.adobe.com/xdm/assets/asset` * [Rectangular Media](rectangular.schema.md) `https://ns.adobe.com/xdm/assets/rectangular` + ## Image Example ```json { @@ -120,7 +120,7 @@ A unique identifier given to every addressable piece of content in a given repos ## cc:attributionName ### Attribution Name -For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. +For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. `cc:attributionName` * is optional @@ -140,7 +140,7 @@ For licenses that require attribution, such as some Creative Commons licenses, t ## cc:attributionUrl ### Attribution URL -For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. +For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. `cc:attributionUrl` * is optional @@ -814,7 +814,7 @@ Describes the proportional relationship between the width and the height. To det ## xdm:documentID ### Document ID -It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. +It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. The value is a GUID, capital A-F, 8-4-4-12, preceded by the string `uuid:` @@ -1319,7 +1319,7 @@ The keyword itself. A keyword can be considered like a tag, i.e. a short descrip ## xmp:modifyDate ### Mofification Date -The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. +The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. `xmp:modifyDate` * is optional diff --git a/docs/reference/assets/layer.schema.md b/docs/reference/assets/layer.schema.md index 1b527cb99c..5852ecb992 100644 --- a/docs/reference/assets/layer.schema.md +++ b/docs/reference/assets/layer.schema.md @@ -14,12 +14,12 @@ Users can also apply a layer style to add a special effect such as a drop shadow | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [assets/layer.schema.json](assets/layer.schema.json) | - ## Schema Hierarchy * Layer `https://ns.adobe.com/xdm/assets/layer` * [Rectangular Object (measured in variable unit)](variable-unit-rectangular.schema.md) `https://ns.adobe.com/xdm/assets/variable-unit-rectangular` + ## Layer Example ```json { diff --git a/docs/reference/assets/video.schema.md b/docs/reference/assets/video.schema.md index d88c94feb9..cd85b73e6d 100644 --- a/docs/reference/assets/video.schema.md +++ b/docs/reference/assets/video.schema.md @@ -10,13 +10,13 @@ The Video class is for video assets, i.e. assets that consist of moving pictures | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [assets/video.schema.json](assets/video.schema.json) | - ## Schema Hierarchy * Video `https://ns.adobe.com/xdm/assets/video` * [Asset](asset.schema.md) `https://ns.adobe.com/xdm/assets/asset` * [Rectangular Media](rectangular.schema.md) `https://ns.adobe.com/xdm/assets/rectangular` + ## Video Examples ```json @@ -111,7 +111,7 @@ The Video class is for video assets, i.e. assets that consist of moving pictures ## cc:attributionName ### Attribution Name -For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. +For licenses that require attribution, such as some Creative Commons licenses, the user to which a work is attributed. When publishing to Behance, this is taken from the user's Behance profile information. `cc:attributionName` * is optional @@ -131,7 +131,7 @@ For licenses that require attribution, such as some Creative Commons licenses, t ## cc:attributionUrl ### Attribution URL -For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. +For licenses that require attribution, such as some Creative Commons licenses, a URL that identifies the user to which a work should be attributed. When publishing to Behance, we link to the user's profile page. `cc:attributionUrl` * is optional @@ -629,7 +629,7 @@ Describes the proportional relationship between the width and the height. To det ## xdm:documentID ### Document ID -It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. +It takes the value of xmpMM:DocumentID present in the [XMP packet of the asset](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/xmp/pdfs/XMP%20SDK%20Release%20cc-2014-12/XMPSpecificationPart1.pdf). For the assets having no XMP packet this property won't be populated. The value is a GUID, capital A-F, 8-4-4-12, preceded by the string `uuid:` @@ -1116,7 +1116,7 @@ The keyword itself. A keyword can be considered like a tag, i.e. a short descrip ## xmp:modifyDate ### Mofification Date -The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. +The date and time when asset was last modified. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". Opposed to `repositoryLastModifiedDate`, this is the time when the asset was last modified locally, with or without knowledge of the repository. `xmp:modifyDate` * is optional diff --git a/docs/reference/channels/adm.schema.md b/docs/reference/channels/adm.schema.md index 6ce9f79ef1..cc971658b1 100644 --- a/docs/reference/channels/adm.schema.md +++ b/docs/reference/channels/adm.schema.md @@ -10,13 +10,13 @@ Amazon Device Messaging | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/adm.schema.json](channels/adm.schema.json) | - ## Schema Hierarchy * ADM `https://ns.adobe.com/xdm/channels/adm` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## ADM Example ```json { diff --git a/docs/reference/channels/agency.schema.md b/docs/reference/channels/agency.schema.md index 11a195632c..61d6f39cd0 100644 --- a/docs/reference/channels/agency.schema.md +++ b/docs/reference/channels/agency.schema.md @@ -13,13 +13,13 @@ Such as, to define experiences for which you want to keep a trace of the populat | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/agency.schema.json](channels/agency.schema.json) | - ## Schema Hierarchy * E-Mail `https://ns.adobe.com/xdm/channels/agency` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## E-Mail Example ```json { diff --git a/docs/reference/channels/apns.schema.md b/docs/reference/channels/apns.schema.md index f563b09b80..5f75d5230a 100644 --- a/docs/reference/channels/apns.schema.md +++ b/docs/reference/channels/apns.schema.md @@ -10,13 +10,13 @@ Apple Push Notification Service | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/apns.schema.json](channels/apns.schema.json) | - ## Schema Hierarchy * APNS `https://ns.adobe.com/xdm/channels/apns` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## APNS Example ```json { diff --git a/docs/reference/channels/baidu.schema.md b/docs/reference/channels/baidu.schema.md index 3d0819c83c..1b7652b36c 100644 --- a/docs/reference/channels/baidu.schema.md +++ b/docs/reference/channels/baidu.schema.md @@ -10,13 +10,13 @@ Baidu Cloud Push Service | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/baidu.schema.json](channels/baidu.schema.json) | - ## Schema Hierarchy * Baidu `https://ns.adobe.com/xdm/channels/baidu` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Baidu Example ```json { diff --git a/docs/reference/channels/channel.schema.md b/docs/reference/channels/channel.schema.md index 9f8b989f70..d8d48e3255 100644 --- a/docs/reference/channels/channel.schema.md +++ b/docs/reference/channels/channel.schema.md @@ -13,12 +13,12 @@ There are multiple experience channels, each with different constraints on how c | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/channel.schema.json](channels/channel.schema.json) | - ## Schema Hierarchy * Experience Channel `https://ns.adobe.com/xdm/channels/channel` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` + ## Experience Channel Example ```json { diff --git a/docs/reference/channels/direct-mail.schema.md b/docs/reference/channels/direct-mail.schema.md index c90722919a..66ef3643ab 100644 --- a/docs/reference/channels/direct-mail.schema.md +++ b/docs/reference/channels/direct-mail.schema.md @@ -10,13 +10,13 @@ Mail delivered by a postal service. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/direct-mail.schema.json](channels/direct-mail.schema.json) | - ## Schema Hierarchy * Direct Mail `https://ns.adobe.com/xdm/channels/direct-mail` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Direct Mail Example ```json { diff --git a/docs/reference/channels/email.schema.md b/docs/reference/channels/email.schema.md index f29ccf9f44..38114d4465 100644 --- a/docs/reference/channels/email.schema.md +++ b/docs/reference/channels/email.schema.md @@ -10,13 +10,13 @@ E-Mail messages, delivered via SMTP to list subscribers. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/email.schema.json](channels/email.schema.json) | - ## Schema Hierarchy * E-Mail `https://ns.adobe.com/xdm/channels/email` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## E-Mail Example ```json { diff --git a/docs/reference/channels/facebook-feed.schema.md b/docs/reference/channels/facebook-feed.schema.md index dc60fa29e0..83931f6f55 100644 --- a/docs/reference/channels/facebook-feed.schema.md +++ b/docs/reference/channels/facebook-feed.schema.md @@ -10,13 +10,13 @@ The Facebook News Feed. This does not include Facebook Messenger, or Facebook Ap | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/facebook-feed.schema.json](channels/facebook-feed.schema.json) | - ## Schema Hierarchy * Facebook News Feed `https://ns.adobe.com/xdm/channels/facebook-feed` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Facebook News Feed Example ```json { diff --git a/docs/reference/channels/fax.schema.md b/docs/reference/channels/fax.schema.md index d9b49b0266..e83fab4af1 100644 --- a/docs/reference/channels/fax.schema.md +++ b/docs/reference/channels/fax.schema.md @@ -10,13 +10,13 @@ Telefacsimile | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/fax.schema.json](channels/fax.schema.json) | - ## Schema Hierarchy * Fax `https://ns.adobe.com/xdm/channels/fax` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Fax Example ```json { diff --git a/docs/reference/channels/gcm.schema.md b/docs/reference/channels/gcm.schema.md index 376dda22b7..ed2d12edc5 100644 --- a/docs/reference/channels/gcm.schema.md +++ b/docs/reference/channels/gcm.schema.md @@ -10,13 +10,13 @@ Google Cloud Messaging | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/gcm.schema.json](channels/gcm.schema.json) | - ## Schema Hierarchy * GCM `https://ns.adobe.com/xdm/channels/gcm` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## GCM Example ```json { diff --git a/docs/reference/channels/line.schema.md b/docs/reference/channels/line.schema.md index 8ffcb5cdca..0b76c53ae6 100644 --- a/docs/reference/channels/line.schema.md +++ b/docs/reference/channels/line.schema.md @@ -10,13 +10,13 @@ Line Platform Notification | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/line.schema.json](channels/line.schema.json) | - ## Schema Hierarchy * LINE `https://ns.adobe.com/xdm/channels/line` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## LINE Example ```json { diff --git a/docs/reference/channels/mobile-app.schema.md b/docs/reference/channels/mobile-app.schema.md index f50ca62f1b..b33546b92d 100644 --- a/docs/reference/channels/mobile-app.schema.md +++ b/docs/reference/channels/mobile-app.schema.md @@ -10,13 +10,13 @@ Native mobile applications that are installed through an app store. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/mobile-app.schema.json](channels/mobile-app.schema.json) | - ## Schema Hierarchy * Web `https://ns.adobe.com/xdm/channels/mobile-app` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Web Example ```json { diff --git a/docs/reference/channels/mpns.schema.md b/docs/reference/channels/mpns.schema.md index 3c208b0745..bf7bccf48a 100644 --- a/docs/reference/channels/mpns.schema.md +++ b/docs/reference/channels/mpns.schema.md @@ -10,13 +10,13 @@ Microsoft Push Notification Service | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/mpns.schema.json](channels/mpns.schema.json) | - ## Schema Hierarchy * MPNS `https://ns.adobe.com/xdm/channels/mpns` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## MPNS Example ```json { diff --git a/docs/reference/channels/phone.schema.md b/docs/reference/channels/phone.schema.md index 7d8fc6a47d..aea23dca95 100644 --- a/docs/reference/channels/phone.schema.md +++ b/docs/reference/channels/phone.schema.md @@ -10,13 +10,13 @@ The telephone. Includes both inbound and outbound. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/phone.schema.json](channels/phone.schema.json) | - ## Schema Hierarchy * Phone `https://ns.adobe.com/xdm/channels/phone` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Phone Example ```json { diff --git a/docs/reference/channels/sms.schema.md b/docs/reference/channels/sms.schema.md index 8474079dfc..d61e2d38c5 100644 --- a/docs/reference/channels/sms.schema.md +++ b/docs/reference/channels/sms.schema.md @@ -10,13 +10,13 @@ Short Message Service delivered to a mobile phone. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/sms.schema.json](channels/sms.schema.json) | - ## Schema Hierarchy * SMS `https://ns.adobe.com/xdm/channels/sms` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## SMS Example ```json { diff --git a/docs/reference/channels/twitter-feed.schema.md b/docs/reference/channels/twitter-feed.schema.md index ba0893630d..b44101d3db 100644 --- a/docs/reference/channels/twitter-feed.schema.md +++ b/docs/reference/channels/twitter-feed.schema.md @@ -10,13 +10,13 @@ The Twitter Feed, i.e. the stream of user-generated tweets. This does not includ | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/twitter-feed.schema.json](channels/twitter-feed.schema.json) | - ## Schema Hierarchy * Twitter Feed `https://ns.adobe.com/xdm/channels/twitter-feed` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Twitter Feed Example ```json { diff --git a/docs/reference/channels/web.schema.md b/docs/reference/channels/web.schema.md index 0d08fcb82d..4c991e51e5 100644 --- a/docs/reference/channels/web.schema.md +++ b/docs/reference/channels/web.schema.md @@ -10,13 +10,13 @@ The world wide web and mobile web. Pages delivered via HTTP to a web browser or | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/web.schema.json](channels/web.schema.json) | - ## Schema Hierarchy * Web `https://ns.adobe.com/xdm/channels/web` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Web Example ```json { diff --git a/docs/reference/channels/wechat.schema.md b/docs/reference/channels/wechat.schema.md index 0d860d1511..d1cdd6488e 100644 --- a/docs/reference/channels/wechat.schema.md +++ b/docs/reference/channels/wechat.schema.md @@ -10,13 +10,13 @@ WeChat Platform Notification | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/wechat.schema.json](channels/wechat.schema.json) | - ## Schema Hierarchy * WeChat `https://ns.adobe.com/xdm/channels/wechat` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## WeChat Example ```json { diff --git a/docs/reference/channels/wns.schema.md b/docs/reference/channels/wns.schema.md index 726e398600..b002b614b8 100644 --- a/docs/reference/channels/wns.schema.md +++ b/docs/reference/channels/wns.schema.md @@ -10,13 +10,13 @@ Windows Push Notification Service. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [channels/wns.schema.json](channels/wns.schema.json) | - ## Schema Hierarchy * WNS `https://ns.adobe.com/xdm/channels/wns` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` * [Experience Channel](channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## WNS Example ```json { diff --git a/docs/reference/common/address.schema.md b/docs/reference/common/address.schema.md index 4bd3ead9eb..4466076b90 100644 --- a/docs/reference/common/address.schema.md +++ b/docs/reference/common/address.schema.md @@ -5,12 +5,11 @@ https://ns.adobe.com/xdm/common/address ``` -A postal address. Address could relate to a person's home, work, preferred store location etc. +A postal address. Address could relate to a person's home, work, preferred store location etc. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [common/address.schema.json](common/address.schema.json) | - ## Schema Hierarchy * Address `https://ns.adobe.com/xdm/common/address` @@ -18,6 +17,7 @@ A postal address. Address could relate to a person's home, work, preferred s * [Geo](geo.schema.md) `https://ns.adobe.com/xdm/common/geo` * [Audit Trail](auditable.schema.md) `https://ns.adobe.com/xdm/common/auditable` + ## Address Example ```json { diff --git a/docs/reference/common/auditable.schema.md b/docs/reference/common/auditable.schema.md index 1c87b686db..a2c10b0436 100644 --- a/docs/reference/common/auditable.schema.md +++ b/docs/reference/common/auditable.schema.md @@ -10,12 +10,12 @@ Inheriting this schema using `allOf` indicates that the data record is auditable | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [common/auditable.schema.json](common/auditable.schema.json) | - ## Schema Hierarchy * Audit Trail `https://ns.adobe.com/xdm/common/auditable` * [Common Properties](../external/repo/common.schema.md) `http://ns.adobe.com/adobecloud/core/1.0` + ## Audit Trail Example ```json { @@ -42,7 +42,7 @@ Inheriting this schema using `allOf` indicates that the data record is auditable ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -67,7 +67,7 @@ The server date and time when the resource was created in the repository, such a ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is optional diff --git a/docs/reference/common/event/created.schema.md b/docs/reference/common/event/created.schema.md index 843f1712e7..b4c7bc0648 100644 --- a/docs/reference/common/event/created.schema.md +++ b/docs/reference/common/event/created.schema.md @@ -10,12 +10,12 @@ A `created event` follows semantics that are exactly equivalent to the semantics | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/created.schema.json](common/event/created.schema.json) | - ## Schema Hierarchy * Created Event `https://ns.adobe.com/xdm/common/event/created` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Created Event Example ```json { diff --git a/docs/reference/common/event/deleted.schema.md b/docs/reference/common/event/deleted.schema.md index 04ef8de431..c6bb2e4c68 100644 --- a/docs/reference/common/event/deleted.schema.md +++ b/docs/reference/common/event/deleted.schema.md @@ -10,12 +10,12 @@ A `deleted event` follows semantics that are exactly equivalent to the semantics | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/deleted.schema.json](common/event/deleted.schema.json) | - ## Schema Hierarchy * Deleted Event `https://ns.adobe.com/xdm/common/event/deleted` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Deleted Event Example ```json { diff --git a/docs/reference/common/event/emitted.schema.md b/docs/reference/common/event/emitted.schema.md index 4324931a6a..5f35f44b73 100644 --- a/docs/reference/common/event/emitted.schema.md +++ b/docs/reference/common/event/emitted.schema.md @@ -5,17 +5,17 @@ https://ns.adobe.com/xdm/common/event/emitted ``` -The `emitted event` represents the activity of emitting a message or some `object`. This event type provides the capability to conform custom activities to the XDM Event Envelope. A custom activity is one where the system transporting the event isn't aware of what is in the event. A custom activity typically tends to be configured by a system's end user. Take, for example, custom OSGI events in AEM. One concern does arise regarding the `emitted event`, which is, its generic nature that allows for almost every activity to be modeled as 'message emitted' activity. This, however, is a trap that publishers of the XDM Event Envelope must steer away from. +The `emitted event` represents the activity of emitting a message or some `object`. This event type provides the capability to conform custom activities to the XDM Event Envelope. A custom activity is one where the system transporting the event isn't aware of what is in the event. A custom activity typically tends to be configured by a system's end user. Take, for example, custom OSGI events in AEM. One concern does arise regarding the `emitted event`, which is, its generic nature that allows for almost every activity to be modeled as 'message emitted' activity. This, however, is a trap that publishers of the XDM Event Envelope must steer away from. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/emitted.schema.json](common/event/emitted.schema.json) | - ## Schema Hierarchy * Emitted Event `https://ns.adobe.com/xdm/common/event/emitted` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Emitted Event Example ```json { diff --git a/docs/reference/common/event/published.schema.md b/docs/reference/common/event/published.schema.md index 658b8ec4b2..b160066d4f 100644 --- a/docs/reference/common/event/published.schema.md +++ b/docs/reference/common/event/published.schema.md @@ -10,12 +10,12 @@ The `published event` represents the activity of releasing an object for distrib | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/published.schema.json](common/event/published.schema.json) | - ## Schema Hierarchy * Published Event `https://ns.adobe.com/xdm/common/event/published` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Published Event Example ```json { diff --git a/docs/reference/common/event/rejected.schema.md b/docs/reference/common/event/rejected.schema.md index 8882a7ffb6..959b042b17 100644 --- a/docs/reference/common/event/rejected.schema.md +++ b/docs/reference/common/event/rejected.schema.md @@ -25,12 +25,12 @@ Some examples of the `rejected event` include: | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/rejected.schema.json](common/event/rejected.schema.json) | - ## Schema Hierarchy * Rejected Event `https://ns.adobe.com/xdm/common/event/rejected` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Rejected Event Example ```json { diff --git a/docs/reference/common/event/unpublished.schema.md b/docs/reference/common/event/unpublished.schema.md index 608a6665ba..6e80d7931f 100644 --- a/docs/reference/common/event/unpublished.schema.md +++ b/docs/reference/common/event/unpublished.schema.md @@ -10,12 +10,12 @@ The `unpublished event` represents the activity of making an object, which was p | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/unpublished.schema.json](common/event/unpublished.schema.json) | - ## Schema Hierarchy * Unpublished Event `https://ns.adobe.com/xdm/common/event/unpublished` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Unpublished Event Example ```json { diff --git a/docs/reference/common/event/updated.schema.md b/docs/reference/common/event/updated.schema.md index 24de2c51f9..879f065bd5 100644 --- a/docs/reference/common/event/updated.schema.md +++ b/docs/reference/common/event/updated.schema.md @@ -10,12 +10,12 @@ A `updated event` follows semantics that are exactly equivalent to the semantics | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/event/updated.schema.json](common/event/updated.schema.json) | - ## Schema Hierarchy * Updated Event `https://ns.adobe.com/xdm/common/event/updated` * [EventEnvelope](../eventenvelope.schema.md) `https://ns.adobe.com/xdm/common/eventenvelope` + ## Updated Event Example ```json { diff --git a/docs/reference/common/eventenvelope.schema.json b/docs/reference/common/eventenvelope.schema.json index 5e1c011ad3..c74be9e0c3 100644 --- a/docs/reference/common/eventenvelope.schema.json +++ b/docs/reference/common/eventenvelope.schema.json @@ -68,29 +68,6 @@ "repo:etag": "\"6fc55d0389d856ae7deccebba54f110e\"" } }, - { - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", - "activitystreams:published": "2016-07-16T19:20:30+01:00", - "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", - "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:generator": { - "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" - }, - "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" - } - }, { "@type": "https://ns.adobe.com/xdm/common/event/updated", "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", @@ -165,6 +142,29 @@ "dc:title": "Vintage Collection", "xdm:path": "/content/geometrixx/en/vintage.html" } + }, + { + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "activitystreams:published": "2016-07-16T19:20:30+01:00", + "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", + "activitystreams:to": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:generator": { + "@type": "https://ns.adobe.com/xdm/content/repository", + "xdm:root": "https://cc-api-storage-stage.adobe.io/" + }, + "activitystreams:actor": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:object": { + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + } } ] } \ No newline at end of file diff --git a/docs/reference/common/eventenvelope.schema.md b/docs/reference/common/eventenvelope.schema.md index cbf63de124..68c491f17c 100644 --- a/docs/reference/common/eventenvelope.schema.md +++ b/docs/reference/common/eventenvelope.schema.md @@ -10,13 +10,13 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [common/eventenvelope.schema.json](common/eventenvelope.schema.json) | - ## Schema Hierarchy * EventEnvelope `https://ns.adobe.com/xdm/common/eventenvelope` * [Activity](../external/activity-streams-2/activity.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/activity` * [JSON-LD `@type`](../external/activity-streams-2/type.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/type` + ## EventEnvelope Examples ```json @@ -49,32 +49,6 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream } ``` -```json -{ - "@type": "https://ns.adobe.com/xdm/common/event/created", - "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", - "activitystreams:published": "2016-07-16T19:20:30+01:00", - "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", - "activitystreams:to": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:generator": { - "@type": "https://ns.adobe.com/xdm/content/repository", - "xdm:root": "https://cc-api-storage-stage.adobe.io/" - }, - "activitystreams:actor": { - "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", - "@id": "D13A1E7053E46A220A4C86E1@AdobeID" - }, - "activitystreams:object": { - "@type": "https://ns.adobe.com/xdm/assets/asset", - "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", - "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" - } -} -``` - ```json { "@type": "https://ns.adobe.com/xdm/common/event/updated", @@ -159,6 +133,32 @@ An `EventEnvelope` is a type of `Activity` (in the sense of [W3C Activity Stream } ``` +```json +{ + "@type": "https://ns.adobe.com/xdm/common/event/created", + "xdm:objectType": "https://ns.adobe.com/xdm/assets/asset", + "activitystreams:published": "2016-07-16T19:20:30+01:00", + "@id": "https://events.adobe.io/event/id/82235bac-2b81-4e70-90b5-2bd1f04b5c7b", + "activitystreams:to": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:generator": { + "@type": "https://ns.adobe.com/xdm/content/repository", + "xdm:root": "https://cc-api-storage-stage.adobe.io/" + }, + "activitystreams:actor": { + "@type": "https://ns.adobe.com/adobecloudplatform/ims/user", + "@id": "D13A1E7053E46A220A4C86E1@AdobeID" + }, + "activitystreams:object": { + "@type": "https://ns.adobe.com/xdm/assets/asset", + "repo:assetID": "urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185", + "@id": "https://cc-api-storage-stage.adobe.io/id/urn:aaid:sc:us:4123ba4c-93a8-4c5d-b979-ffbbe4318185" + } +} +``` + # EventEnvelope Properties @@ -343,7 +343,7 @@ Unknown type `anyOf`. ## activitystreams:object -When used within an Activity, describes the direct object of the activity. For instance, in the activity 'John added a movie to his wishlist', the object of the activity is the movie added. When used within a Relationship describes the entity to which the subject is related. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object) document for a complete description. +When used within an Activity, describes the direct object of the activity. For instance, in the activity 'John added a movie to his wishlist', the object of the activity is the movie added. When used within a Relationship describes the entity to which the subject is related. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object) document for a complete description. `activitystreams:object` * is **required** @@ -427,7 +427,7 @@ Unknown type `anyOf`. ## activitystreams:origin -Describes an indirect object of the activity from which the activity is directed. The precise meaning of the origin is the object of the English preposition 'from'. For instance, in the activity 'John moved an item to List B from List A', the origin of the activity is 'List A'. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin) document for a complete description. +Describes an indirect object of the activity from which the activity is directed. The precise meaning of the origin is the object of the English preposition 'from'. For instance, in the activity 'John moved an item to List B from List A', the origin of the activity is 'List A'. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin) document for a complete description. `activitystreams:origin` * is optional @@ -595,7 +595,7 @@ Unknown type `anyOf`. ## activitystreams:target -Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition 'to'. For instance, in the activity 'John added a movie to his wishlist', the target of the activity is John's wishlist. An activity can have more than one target. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target) document for a complete description. +Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition 'to'. For instance, in the activity 'John added a movie to his wishlist', the target of the activity is John's wishlist. An activity can have more than one target. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target) document for a complete description. `activitystreams:target` * is optional diff --git a/docs/reference/common/extensible.schema.json b/docs/reference/common/extensible.schema.json index 44d5a4a2e6..5af29debb8 100644 --- a/docs/reference/common/extensible.schema.json +++ b/docs/reference/common/extensible.schema.json @@ -251,13 +251,14 @@ "meta:status": "stabilizing", "examples": [ { + "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, @@ -310,14 +311,13 @@ "repo:etag": "15" }, { - "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, diff --git a/docs/reference/common/extensible.schema.md b/docs/reference/common/extensible.schema.md index c2a2ee8289..0d430b70ae 100644 --- a/docs/reference/common/extensible.schema.md +++ b/docs/reference/common/extensible.schema.md @@ -10,9 +10,9 @@ This schema can be included by referencing `https://ns.adobe.com/xdm/common/exte In order to make a given schema extensible, include this section at the bottom of your schema: ```json -"allOf":[ - {"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"}, - {"$ref": "#/definitions/…"} +"allOf":[ + {"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"}, + {"$ref": "#/definitions/…"} ] ``` @@ -27,13 +27,14 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ```json { + "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, @@ -92,14 +93,13 @@ Replace `#/definitions/…` with the correct path to the `definitions` object in ```json { - "https://ns.example.com/asset_name": "custom_asset_1", "repo:assetID": "urn:aaid:a:b:01234578-0123-ABCD-abcd-0123456789ab", "xdm:createDate": "2017-09-26T15:52:25+00:00", "repo:createdDate": "2017-09-26T15:52:25+00:00", "xdm:repositoryCreatedBy": "lars", "xdm:modifyDate": "2017-09-26T15:52:25+00:00", "repo:lastModifiedDate": "2017-09-26T15:52:25+00:00", - "xdm:repository_lastModifiedBy": "2017-09-26T15:52:25+00:00", + "xdm:repositoryLastModifiedBy": "2017-09-26T15:52:25+00:00", "repo:version": "15", "dc:title": "This is an example", "repo:size": 1632418, diff --git a/docs/reference/common/geo.schema.md b/docs/reference/common/geo.schema.md index 3123fb0aa0..42193dc8a5 100644 --- a/docs/reference/common/geo.schema.md +++ b/docs/reference/common/geo.schema.md @@ -10,12 +10,12 @@ The geographic related data where an event was observed. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [common/geo.schema.json](common/geo.schema.json) | - ## Schema Hierarchy * Geo `https://ns.adobe.com/xdm/common/geo` * [Geo Coordinates](../external/schema/geocoordinates.schema.md) `http://schema.org/GeoCoordinates` + ## Geo Examples ```json diff --git a/docs/reference/common/organization.schema.md b/docs/reference/common/organization.schema.md index d6f6c7836c..fd613dbca2 100644 --- a/docs/reference/common/organization.schema.md +++ b/docs/reference/common/organization.schema.md @@ -11,12 +11,12 @@ Information that uniquely identifies an organized entity such as company, non-pr | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [common/organization.schema.json](common/organization.schema.json) | - ## Schema Hierarchy * Organization `https://ns.adobe.com/xdm/common/organization` * [Place](../context/place.schema.md) `https://ns.adobe.com/xdm/context/place` + ## Organization Example ```json { @@ -243,7 +243,7 @@ The official name of the organization. ## xdm:location ### Location -The location of the organization's main office. +The location of the organization's main office. `xdm:location` * is optional @@ -303,7 +303,7 @@ The calculated score or star rating for this organization. `1` indicates the max ## xdm:website ### Web Site -The URL of the organization's website. +The URL of the organization's website. `xdm:website` * is optional diff --git a/docs/reference/common/principal.schema.md b/docs/reference/common/principal.schema.md index 8363e1be41..57a2ebfc0d 100644 --- a/docs/reference/common/principal.schema.md +++ b/docs/reference/common/principal.schema.md @@ -10,12 +10,12 @@ This model represents a principal in an access control system. Principals are en | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Experimental | Forbidden | Permitted | [common/principal.schema.json](common/principal.schema.json) | - ## Schema Hierarchy * Principal `https://ns.adobe.com/xdm/common/principal` * [Identity Provider](identity-provider.schema.md) `https://ns.adobe.com/xdm/common/identity-provider` + ## Principal Example ```json { diff --git a/docs/reference/content/componentized-page.schema.md b/docs/reference/content/componentized-page.schema.md index c8ee98a87c..af67a95223 100644 --- a/docs/reference/content/componentized-page.schema.md +++ b/docs/reference/content/componentized-page.schema.md @@ -13,12 +13,12 @@ Componentized pages are modular (consist of smaller content components), hyperli | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [content/componentized-page.schema.json](content/componentized-page.schema.json) | - ## Schema Hierarchy * Componentized Page `https://ns.adobe.com/xdm/content/componentized-page` * [Content](content.schema.md) `https://ns.adobe.com/xdm/content/content` + ## Componentized Page Example ```json { diff --git a/docs/reference/content/content.schema.md b/docs/reference/content/content.schema.md index d0cf91bc9f..8c1e38426c 100644 --- a/docs/reference/content/content.schema.md +++ b/docs/reference/content/content.schema.md @@ -9,8 +9,8 @@ Content is information that is directed towards an audience for consumption in a In [Web Content Management by Deane Barker](https://www.safaribooksonline.com/library/view/web-content-management/9781491908112/ch01.html) two key differences between content and other digital information are pointed out: -> 1. Content is _created_ differently -> 2. Content is _used_ differently +> 1. Content is _created_ differently +> 2. Content is _used_ differently These differences boil down to a number of key characteristics of content. @@ -22,7 +22,6 @@ _Content is created for human audiences_, which gives the content the ultimate v | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [content/content.schema.json](content/content.schema.json) | - ## Schema Hierarchy * Content `https://ns.adobe.com/xdm/content/content` @@ -30,6 +29,7 @@ _Content is created for human audiences_, which gives the content the ultimate v * [Common Properties](../external/repo/common.schema.md) `http://ns.adobe.com/adobecloud/core/1.0` * [HAL Resource](../external/hal/hal.schema.md) `https://ns.adobe.com/xdm/external/hal/resource` + ## Content Example ```json { @@ -199,7 +199,7 @@ All instances must conform to this regular expression ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -244,7 +244,7 @@ An ETag is an HTTP response header returned by an HTTP/1.1 compliant web server ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is optional diff --git a/docs/reference/content/page-component.schema.json b/docs/reference/content/page-component.schema.json index f16502a736..dd49beb513 100644 --- a/docs/reference/content/page-component.schema.json +++ b/docs/reference/content/page-component.schema.json @@ -32,10 +32,6 @@ ], "meta:status": "experimental", "examples": [ - { - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" - }, { "@type": "https://francois.corp.adobe.com:4502/apps/foundation/image", "image": { @@ -43,6 +39,10 @@ "repo:assetID": "urn:aaid:aem:4123ba4c-93a8-4c5d-b979-1234e4318185", "@id": "https://francois.corp.adobe.com:4502/content/dam/Glasses-small.jpg" } + }, + { + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" } ] } \ No newline at end of file diff --git a/docs/reference/content/page-component.schema.md b/docs/reference/content/page-component.schema.md index 420cf10e6b..f10b6aa775 100644 --- a/docs/reference/content/page-component.schema.md +++ b/docs/reference/content/page-component.schema.md @@ -13,20 +13,13 @@ The type determines how the component will be displayed, rendered, and authored. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [content/page-component.schema.json](content/page-component.schema.json) | - ## Schema Hierarchy * Page Component `https://ns.adobe.com/xdm/content/page-component` * [Componentized Page](componentized-page.schema.md) `https://ns.adobe.com/xdm/content/componentized-page` -## Page Component Examples -```json -{ - "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", - "dc:title": "Protect Your Eyes" -} -``` +## Page Component Examples ```json { @@ -39,6 +32,13 @@ The type determines how the component will be displayed, rendered, and authored. } ``` +```json +{ + "@type": "https://francois.corp.adobe.com:4502/apps/foundation/title", + "dc:title": "Protect Your Eyes" +} +``` + # Page Component Properties diff --git a/docs/reference/content/product.schema.md b/docs/reference/content/product.schema.md index f78e61ece8..e2b6b7e8e5 100644 --- a/docs/reference/content/product.schema.md +++ b/docs/reference/content/product.schema.md @@ -11,12 +11,12 @@ XDM product variant, master product and key attributes of product in the product | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [content/product.schema.json](content/product.schema.json) | - ## Schema Hierarchy * Product `https://ns.adobe.com/xdm/context/product` * [Extensibility base schema](../common/extensible.schema.md) `https://ns.adobe.com/xdm/common/extensible` + ## Product Example ```json { @@ -469,7 +469,7 @@ The name of the product. ## xdm:originalSaleDate ### Original Sale Date -First date the product was made available for sale. The time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". +First date the product was made available for sale. The time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". `xdm:originalSaleDate` * is optional @@ -490,7 +490,7 @@ First date the product was made available for sale. The time using RFC3339 with ## xdm:productCreateDate ### Product Creation Date -The date when this product variant was created. The time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". +The date when this product variant was created. The time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". `xdm:productCreateDate` * is optional @@ -511,7 +511,7 @@ The date when this product variant was created. The time using RFC3339 with a st ## xdm:productLastModified ### Product Last Modified -The date when this product variant was last modified. The time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". +The date when this product variant was last modified. The time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". `xdm:productLastModified` * is optional diff --git a/docs/reference/content/repository-policies/encryption.schema.md b/docs/reference/content/repository-policies/encryption.schema.md index c075e7dbec..f8da29f38f 100644 --- a/docs/reference/content/repository-policies/encryption.schema.md +++ b/docs/reference/content/repository-policies/encryption.schema.md @@ -29,7 +29,7 @@ Encryption policy represents how content in a given part of the repository is en ## xdm:keyStatus -The status of the encryption key - 'enabled': the key is enabled and content is accessible to authorized users; 'disabled': the key is disabled and content is not accessible +The status of the encryption key - 'enabled': the key is enabled and content is accessible to authorized users; 'disabled': the key is disabled and content is not accessible `xdm:keyStatus` * is optional @@ -49,7 +49,7 @@ The value of this property **must** be equal to one of the [known values below]( ## xdm:keyType -The type of encryption key - 'platform': a key used across all tenants of the platform; 'org': a key managed exclusviely for the org to which the storage belongs +The type of encryption key - 'platform': a key used across all tenants of the platform; 'org': a key managed exclusviely for the org to which the storage belongs `xdm:keyType` * is optional diff --git a/docs/reference/content/repository-policies/quota.schema.md b/docs/reference/content/repository-policies/quota.schema.md index 0d1c47d618..1e05e66a5c 100644 --- a/docs/reference/content/repository-policies/quota.schema.md +++ b/docs/reference/content/repository-policies/quota.schema.md @@ -7,7 +7,7 @@ https://ns.adobe.com/xdm/content/repository-policies/quota Quota policy represents how storage consumption is managed and monitored in a given part of the repository. Quota is expressed as two values: _Quota Amount_ (`amount`) and _Current Consumption_ (`consumed`). The former represents a limit of storage space that can be allocated in the directory and its descendants. The latter represents the storage space that is currently allocated. -Furthermore, _Storage Quota_ can be either _hard_ or _soft_ via the 'enforcement' property. If a _hard_ _Storage Quota_ is set, the repository implementation will not allow clients to allocate storage beyond the _Quota Amount_. +Furthermore, _Storage Quota_ can be either _hard_ or _soft_ via the 'enforcement' property. If a _hard_ _Storage Quota_ is set, the repository implementation will not allow clients to allocate storage beyond the _Quota Amount_. Repository implementations can generate notifications or alerts when the consumed space in a part of the repository for which a (hard or soft) quota has been defined exceeds a given percentage (e.g. 80%) of the _Quota Amount_. diff --git a/docs/reference/context/browserdetails.schema.md b/docs/reference/context/browserdetails.schema.md index d6b5b21c7a..36a36d1803 100644 --- a/docs/reference/context/browserdetails.schema.md +++ b/docs/reference/context/browserdetails.schema.md @@ -69,7 +69,7 @@ An IETF Language Tag (RFC 5646). ## xdm:cookiesEnabled ### Allows Cookies -The current user agent settings allow for the writing of cookies.' +The current user agent settings allow for the writing of cookies.' `xdm:cookiesEnabled` * is optional diff --git a/docs/reference/context/commerce.schema.md b/docs/reference/context/commerce.schema.md index cd5a2241c1..79c5b5655e 100644 --- a/docs/reference/context/commerce.schema.md +++ b/docs/reference/context/commerce.schema.md @@ -10,12 +10,12 @@ The entites related to buying and selling activity. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/commerce.schema.json](context/commerce.schema.json) | - ## Schema Hierarchy * Commerce `https://ns.adobe.com/xdm/context/commerce` * [Order](../data/order.schema.md) `https://ns.adobe.com/xdm/data/order` + ## Commerce Example ```json { diff --git a/docs/reference/context/device.schema.md b/docs/reference/context/device.schema.md index 0dccd71a02..8f6dddde92 100644 --- a/docs/reference/context/device.schema.md +++ b/docs/reference/context/device.schema.md @@ -64,7 +64,7 @@ The number of colors the display is able to represent. ## xdm:manufacturer ### Manufacturer -The name of the organization who owns the design and creation of the Device. For example, 'Apple' is the manufacturer of the iPhone. +The name of the organization who owns the design and creation of the Device. For example, 'Apple' is the manufacturer of the iPhone. `xdm:manufacturer` * is optional @@ -84,7 +84,7 @@ The name of the organization who owns the design and creation of the Device. For ## xdm:model ### Model -The name of the model for the Device. This is the common, human-readable or marketing name for the Device. The 'iPhone 6S' is a particular model of mobile phone. +The name of the model for the Device. This is the common, human-readable or marketing name for the Device. The 'iPhone 6S' is a particular model of mobile phone. `xdm:model` * is optional @@ -104,7 +104,7 @@ The name of the model for the Device. This is the common, human-readable or mark ## xdm:modelNumber ### Model Number -The unique model number designation assigned by the manufacturer for this Device. Model numbers are not versions, but unique identifiers that identify a particular model configuration. While the model for a particular phone might be 'iPhone 6S' the model number would be 'A1633', or 'A1634' based on configuration at the time of sale. +The unique model number designation assigned by the manufacturer for this Device. Model numbers are not versions, but unique identifiers that identify a particular model configuration. While the model for a particular phone might be 'iPhone 6S' the model number would be 'A1633', or 'A1634' based on configuration at the time of sale. `xdm:modelNumber` * is optional @@ -124,7 +124,7 @@ The unique model number designation assigned by the manufacturer for this Device ## xdm:screenHeight ### Screen Height -The number of veritcal pixels of the device's active display in its default orientation. +The number of veritcal pixels of the device's active display in its default orientation. `xdm:screenHeight` * is optional @@ -144,7 +144,7 @@ The number of veritcal pixels of the device's active display in its default ## xdm:screenWidth ### Screen Width -The number of horizontal pixels of the device's active display in its default orientation. +The number of horizontal pixels of the device's active display in its default orientation. `xdm:screenWidth` * is optional diff --git a/docs/reference/context/emailaddress.schema.md b/docs/reference/context/emailaddress.schema.md index 3837190567..9b9e99b6b8 100644 --- a/docs/reference/context/emailaddress.schema.md +++ b/docs/reference/context/emailaddress.schema.md @@ -37,7 +37,7 @@ A standard email address. ## xdm:address ### Address -The technical address, e.g 'name@domain.com' as commonly defined in RFC2822 and subsequent standards. +The technical address, e.g 'name@domain.com' as commonly defined in RFC2822 and subsequent standards. `xdm:address` * is optional @@ -58,7 +58,7 @@ The technical address, e.g 'name@domain.com' as commonly defined in RFC2 ## xdm:label ### Label -Additional display information that maybe available, e.g MS Outlook rich address controls display 'John Smith smithjr@company.uk', the 'John Smith' part is data that would be placed in the label. +Additional display information that maybe available, e.g MS Outlook rich address controls display 'John Smith smithjr@company.uk', the 'John Smith' part is data that would be placed in the label. `xdm:label` * is optional @@ -149,7 +149,7 @@ A description of the current status. ## xdm:type ### Type -The way the account relates to the person. e.g 'work' or 'personal' +The way the account relates to the person. e.g 'work' or 'personal' `xdm:type` * is optional diff --git a/docs/reference/context/enduserids.schema.md b/docs/reference/context/enduserids.schema.md index 8aa3a1dd6d..a77ddfa19f 100644 --- a/docs/reference/context/enduserids.schema.md +++ b/docs/reference/context/enduserids.schema.md @@ -16,12 +16,12 @@ Additionally, this schema can include a property that describes the data source | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | No | Stabilizing | Forbidden | Permitted | [context/enduserids.schema.json](context/enduserids.schema.json) | - ## Schema Hierarchy * End User IDs `https://ns.adobe.com/xdm/context/enduserids` * [Identity](identity.schema.md) `https://ns.adobe.com/xdm/context/identity` + ## End User IDs Example ```json { diff --git a/docs/reference/context/environment.schema.md b/docs/reference/context/environment.schema.md index 2fcc5f3b9d..5cb6928697 100644 --- a/docs/reference/context/environment.schema.md +++ b/docs/reference/context/environment.schema.md @@ -5,17 +5,17 @@ https://ns.adobe.com/xdm/context/environment ``` -Information about the surrounding situation the event observation occurred in, specifically detailing transitory information such as the network or software versions. > IMPORTANT: All values should be aligned with the [DeviceAtlas](https://deviceatlas.com) database licensed by Adobe. +Information about the surrounding situation the event observation occurred in, specifically detailing transitory information such as the network or software versions. > IMPORTANT: All values should be aligned with the [DeviceAtlas](https://deviceatlas.com) database licensed by Adobe. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/environment.schema.json](context/environment.schema.json) | - ## Schema Hierarchy * Environment `https://ns.adobe.com/xdm/context/environment` * [Browser Details](browserdetails.schema.md) `https://ns.adobe.com/xdm/context/browserdetails` + ## Environment Example ```json { @@ -196,7 +196,7 @@ The numerical label assigned to a device participating in a computer network tha ## xdm:operatingSystem ### Operating System -The name of the operating system used when the observation was made. This attribute should not contain any version information i.e. 10.5.3, but can contain *edition* designations such as 'Ultimate', or 'Professional'. +The name of the operating system used when the observation was made. This attribute should not contain any version information i.e. 10.5.3, but can contain *edition* designations such as 'Ultimate', or 'Professional'. `xdm:operatingSystem` * is optional diff --git a/docs/reference/context/experienceevent.schema.md b/docs/reference/context/experienceevent.schema.md index 04e02e1075..3f627f51a4 100644 --- a/docs/reference/context/experienceevent.schema.md +++ b/docs/reference/context/experienceevent.schema.md @@ -10,7 +10,6 @@ The core ExperienceEvent XDM is used to capture observations that are altering o | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/experienceevent.schema.json](context/experienceevent.schema.json) | - ## Schema Hierarchy * ExperienceEvent `https://ns.adobe.com/xdm/context/experienceevent` @@ -27,6 +26,7 @@ The core ExperienceEvent XDM is used to capture observations that are altering o * [Marketing](marketing.schema.md) `https://ns.adobe.com/xdm/context/marketing` * [Place Context](placecontext.schema.md) `https://ns.adobe.com/xdm/context/placecontext` + ## ExperienceEvent Example ```json { diff --git a/docs/reference/context/identity.schema.md b/docs/reference/context/identity.schema.md index cb9780afc3..a4e26c3729 100644 --- a/docs/reference/context/identity.schema.md +++ b/docs/reference/context/identity.schema.md @@ -10,12 +10,12 @@ Identity is used to clearly distinguish people that are interacting with digital | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/identity.schema.json](context/identity.schema.json) | - ## Schema Hierarchy * Identity `https://ns.adobe.com/xdm/context/identity` * [Namespace](namespace.schema.md) `https://ns.adobe.com/xdm/context/namespace` + ## Identity Example ```json { diff --git a/docs/reference/context/implementationdetails.schema.md b/docs/reference/context/implementationdetails.schema.md index 494f0528a8..af7ff553d9 100644 --- a/docs/reference/context/implementationdetails.schema.md +++ b/docs/reference/context/implementationdetails.schema.md @@ -5,7 +5,7 @@ https://ns.adobe.com/xdm/context/implementationdetails ``` -Details about the sdk, library or service used in an application's or web page's implementation of a service. +Details about the sdk, library or service used in an application's or web page's implementation of a service. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| diff --git a/docs/reference/context/optinout.schema.md b/docs/reference/context/optinout.schema.md index 8f60c17566..94c7c1f848 100644 --- a/docs/reference/context/optinout.schema.md +++ b/docs/reference/context/optinout.schema.md @@ -5,7 +5,7 @@ https://ns.adobe.com/xdm/context/optinout ``` -Describes a users' communication preferences by channel. For each channel individually, which is a property of this object, a user's preference (opt-in, opt-out, pending) can be recorded. In addition, a global override opt-out is possible. Each property of this schema must be a valid and known URI for an XDM Channel. +Describes a users' communication preferences by channel. For each channel individually, which is a property of this object, a user's preference (opt-in, opt-out, pending) can be recorded. In addition, a global override opt-out is possible. Each property of this schema must be a valid and known URI for an XDM Channel. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| diff --git a/docs/reference/context/person.schema.md b/docs/reference/context/person.schema.md index c2d22171ab..5f0b879789 100644 --- a/docs/reference/context/person.schema.md +++ b/docs/reference/context/person.schema.md @@ -10,13 +10,13 @@ An individual person. May represent a person acting in various roles, such as a | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/person.schema.json](context/person.schema.json) | - ## Schema Hierarchy * Person `https://ns.adobe.com/xdm/context/person` * [Person Name](person-name.schema.md) `https://ns.adobe.com/xdm/context/person-name` * [Audit Trail](../common/auditable.schema.md) `https://ns.adobe.com/xdm/common/auditable` + ## Person Example ```json { @@ -183,7 +183,7 @@ At creation time, `modifiedByBatchID` is set as `createdByBatchID`. ## xdm:name ### Full name -The person's full name +The person's full name `xdm:name` * is optional diff --git a/docs/reference/context/place.schema.md b/docs/reference/context/place.schema.md index ec5dc41bdc..cf9f30bd03 100644 --- a/docs/reference/context/place.schema.md +++ b/docs/reference/context/place.schema.md @@ -10,7 +10,6 @@ A place in the real world with a physical location. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/place.schema.json](context/place.schema.json) | - ## Schema Hierarchy * Place `https://ns.adobe.com/xdm/context/place` @@ -19,6 +18,7 @@ A place in the real world with a physical location. * [Geo Shape](../external/schema/geoshape.schema.md) `http://schema.org/GeoShape` * [Geo Coordinates](../external/schema/geocoordinates.schema.md) `http://schema.org/GeoCoordinates` + ## Place Example ```json { @@ -85,9 +85,9 @@ The unique identifier of the place. ## schema:branchCode ### Location Code -A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parent Organization and used in structured URLs. +A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parent Organization and used in structured URLs. -For example, in the URL `http://www.starbucks.co.uk/store-locator/etc/detail/3047` the code "3047" is a `branchCode` for a particular branch. +For example, in the URL `http://www.starbucks.co.uk/store-locator/etc/detail/3047` the code "3047" is a `branchCode` for a particular branch. `schema:branchCode` * is optional diff --git a/docs/reference/context/placecontext.schema.md b/docs/reference/context/placecontext.schema.md index a4bfafa74a..ba16f4ece0 100644 --- a/docs/reference/context/placecontext.schema.md +++ b/docs/reference/context/placecontext.schema.md @@ -12,12 +12,12 @@ Examples include location specific information such as weather, local time, traf | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/placecontext.schema.json](context/placecontext.schema.json) | - ## Schema Hierarchy * Place Context `https://ns.adobe.com/xdm/context/placecontext` * [Geo](../common/geo.schema.md) `https://ns.adobe.com/xdm/common/geo` + ## Place Context Example ```json { @@ -64,7 +64,7 @@ The geographic location where the experience was delivered . ## xdm:localTime ### Local Time -The local time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". +The local time using RFC3339 with a stated timezone offset such as "2001-07-04T12:08:56-07:00". An example formatting pattern is "yyyy-MM-dd'T'HH:mm:ssXXX". `xdm:localTime` * is optional diff --git a/docs/reference/context/profile.schema.md b/docs/reference/context/profile.schema.md index 66561c7f0f..54ab8888ce 100644 --- a/docs/reference/context/profile.schema.md +++ b/docs/reference/context/profile.schema.md @@ -27,7 +27,6 @@ for other Profile data such as preference, propensities and other attributes. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/profile.schema.json](context/profile.schema.json) | - ## Schema Hierarchy * Profile `https://ns.adobe.com/xdm/context/profile` @@ -39,6 +38,7 @@ for other Profile data such as preference, propensities and other attributes. * [Phone Number](phonenumber.schema.md) `https://ns.adobe.com/xdm/context/phonenumber` * [OptInOut](optinout.schema.md) `https://ns.adobe.com/xdm/context/optinout` + ## Profile Example ```json { diff --git a/docs/reference/context/pushnotificationtoken.schema.md b/docs/reference/context/pushnotificationtoken.schema.md index 98b51f6390..ca37240c9d 100644 --- a/docs/reference/context/pushnotificationtoken.schema.md +++ b/docs/reference/context/pushnotificationtoken.schema.md @@ -14,7 +14,6 @@ Notification service. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Stabilizing | Forbidden | Permitted | [context/pushnotificationtoken.schema.json](context/pushnotificationtoken.schema.json) | - ## Schema Hierarchy * Push Notification Token `https://ns.adobe.com/xdm/context/pushnotificationtoken` @@ -23,6 +22,7 @@ Notification service. * [Application](../channels/application.schema.md) `https://ns.adobe.com/xdm/channels/application` * [Experience Channel](../channels/channel.schema.md) `https://ns.adobe.com/xdm/channels/channel` + ## Push Notification Token Example ```json { diff --git a/docs/reference/context/subscription.schema.md b/docs/reference/context/subscription.schema.md index 521a9fcda5..9ac539c6e0 100644 --- a/docs/reference/context/subscription.schema.md +++ b/docs/reference/context/subscription.schema.md @@ -10,7 +10,6 @@ Subscriptions are licensed entitlements to software, services or goods that are | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/subscription.schema.json](context/subscription.schema.json) | - ## Schema Hierarchy * Subscription `https://ns.adobe.com/xdm/context/subscription` @@ -18,6 +17,7 @@ Subscriptions are licensed entitlements to software, services or goods that are * [Device](device.schema.md) `https://ns.adobe.com/xdm/context/device` * [Environment](environment.schema.md) `https://ns.adobe.com/xdm/context/environment` + ## Subscription Example ```json { diff --git a/docs/reference/context/webinfo.schema.json b/docs/reference/context/webinfo.schema.json index 16eed84601..10ab78c039 100644 --- a/docs/reference/context/webinfo.schema.json +++ b/docs/reference/context/webinfo.schema.json @@ -46,9 +46,14 @@ "xdm:errorPage": false, "xdm:homePage": true }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, "xdm:webReferrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" } }, { @@ -60,14 +65,9 @@ "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webInteraction": { - "xdm:type": "other", - "xdm:URL": "#stores", - "xdm:name": "product store" - }, "xdm:webReferrer": { - "xdm:URL": "https://www.example.com/products", - "xdm:type": "internal" + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } ] diff --git a/docs/reference/context/webinfo.schema.md b/docs/reference/context/webinfo.schema.md index 115a55858d..2e1bad5c1f 100644 --- a/docs/reference/context/webinfo.schema.md +++ b/docs/reference/context/webinfo.schema.md @@ -11,7 +11,6 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [context/webinfo.schema.json](context/webinfo.schema.json) | - ## Schema Hierarchy * Web Information `https://ns.adobe.com/xdm/context/webinfo` @@ -19,6 +18,7 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide * [Web Interaction](webinteraction.schema.md) `https://ns.adobe.com/xdm/context/webinteraction` * [Web Referrer](webreferrer.schema.md) `https://ns.adobe.com/xdm/context/webreferrer` + ## Web Information Examples ```json @@ -31,9 +31,14 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide "xdm:errorPage": false, "xdm:homePage": true }, + "xdm:webInteraction": { + "xdm:type": "other", + "xdm:URL": "#stores", + "xdm:name": "product store" + }, "xdm:webReferrer": { - "xdm:URL": "https://www.some-adserver.com", - "xdm:referrerType": "external" + "xdm:URL": "https://www.example.com/products", + "xdm:type": "internal" } } ``` @@ -48,14 +53,9 @@ Information recorded via an `ExperienceEvent` that is specific to the World Wide "xdm:errorPage": false, "xdm:homePage": true }, - "xdm:webInteraction": { - "xdm:type": "other", - "xdm:URL": "#stores", - "xdm:name": "product store" - }, "xdm:webReferrer": { - "xdm:URL": "https://www.example.com/products", - "xdm:type": "internal" + "xdm:URL": "https://www.some-adserver.com", + "xdm:referrerType": "external" } } ``` diff --git a/docs/reference/context/webpageview.schema.md b/docs/reference/context/webpageview.schema.md index fd3953eda8..855a57be77 100644 --- a/docs/reference/context/webpageview.schema.md +++ b/docs/reference/context/webpageview.schema.md @@ -101,7 +101,7 @@ Flag that indicate if the page is the site home page or not. The definition of ## xdm:name ### Name -The normative name of the web page. This name is not necessarily the page title or directy associate with page content, but is used to organize a site's pages for classification purposes +The normative name of the web page. This name is not necessarily the page title or directy associate with page content, but is used to organize a site's pages for classification purposes `xdm:name` * is optional diff --git a/docs/reference/context/webreferrer.schema.md b/docs/reference/context/webreferrer.schema.md index 5433f7edc7..12c392cac4 100644 --- a/docs/reference/context/webreferrer.schema.md +++ b/docs/reference/context/webreferrer.schema.md @@ -8,7 +8,7 @@ https://ns.adobe.com/xdm/context/webreferrer The referrer of the web page, which is the URL a visitor came from immediately before the current web interaction was recorded. The information in this schema is semantically compatible with the information in the HTTP `referer` header field, but allows for additional classification. -> **Note:** While the [HTTP specification](https://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z14) uses the term "referer", XDM follows the [Document Object Model specification ](https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-95229140) and uses the spelling "referrer", which is more widely accepted as the correct spelling. +> **Note:** While the [HTTP specification](https://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z14) uses the term "referer", XDM follows the [Document Object Model specification ](https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-95229140) and uses the spelling "referrer", which is more widely accepted as the correct spelling. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | diff --git a/docs/reference/data/measure.schema.md b/docs/reference/data/measure.schema.md index b46b2a86fa..64045c5402 100644 --- a/docs/reference/data/measure.schema.md +++ b/docs/reference/data/measure.schema.md @@ -7,7 +7,7 @@ https://ns.adobe.com/xdm/data/measure A measure is a concrete quantifiable data point of a particular metric. -It has a value, and optionally a unit, although the unit can be inferred from the measure's metric. +It has a value, and optionally a unit, although the unit can be inferred from the measure's metric. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | @@ -75,7 +75,7 @@ Unique identifier of the measure. In cases of data collection using lossy commun ## xdm:unit -The (optional) unit that this measure's value is measured in. The `unit` in the `Measure` is purely informational, as the `unit` property of the referenced `Metric` determines the interpretation. +The (optional) unit that this measure's value is measured in. The `unit` in the `Measure` is purely informational, as the `unit` property of the referenced `Metric` determines the interpretation. `xdm:unit` * is optional diff --git a/docs/reference/data/metric.schema.md b/docs/reference/data/metric.schema.md index b1bd6a875e..f9927fe32e 100644 --- a/docs/reference/data/metric.schema.md +++ b/docs/reference/data/metric.schema.md @@ -10,7 +10,7 @@ A metric is a definition of a measurable or countable quantity. A metric consists of a measurement and a dimension. For easier identification, metrics have a name and a unique URI that can be used when referring to the metric. -Through XDM's extensibility mechanism, new metrics can be defined by extending `Metric`. +Through XDM's extensibility mechanism, new metrics can be defined by extending `Metric`. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | diff --git a/docs/reference/data/metrics.schema.md b/docs/reference/data/metrics.schema.md index 665eb83a4f..5f3c73b33f 100644 --- a/docs/reference/data/metrics.schema.md +++ b/docs/reference/data/metrics.schema.md @@ -10,12 +10,12 @@ This is map of metrics and measures. Each key is the valid URI of a known `Metri | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [data/metrics.schema.json](data/metrics.schema.json) | - ## Schema Hierarchy * Metrics `https://ns.adobe.com/xdm/data/metrics` * [Measure](measure.schema.md) `https://ns.adobe.com/xdm/data/measure` + ## Metrics Example ```json { @@ -484,7 +484,7 @@ The direct marketing message (email, SMS, Push Notifications etc) has been opene ## https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends -Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a person's account/address/device. +Asynchronous message(s) (email, SMS, MMS etc) have been dispatched to a person's account/address/device. `https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends` * is optional diff --git a/docs/reference/data/not-sent.schema.md b/docs/reference/data/not-sent.schema.md index 748274c375..37de359be1 100644 --- a/docs/reference/data/not-sent.schema.md +++ b/docs/reference/data/not-sent.schema.md @@ -5,7 +5,7 @@ https://ns.adobe.com/xdm/data/metrics/direct-marketing/not-sent ``` -The direct-marketing metric `not-sent` describes the number of asynchronous messages (email, SMS, MMS etc) that have not been dispatched to an recipient's account/address/device due to cancellation or expiration of the marketing activity. +The direct-marketing metric `not-sent` describes the number of asynchronous messages (email, SMS, MMS etc) that have not been dispatched to an recipient's account/address/device due to cancellation or expiration of the marketing activity. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| diff --git a/docs/reference/data/sends.schema.md b/docs/reference/data/sends.schema.md index 3e7cf6dcf0..b78353a4c1 100644 --- a/docs/reference/data/sends.schema.md +++ b/docs/reference/data/sends.schema.md @@ -5,7 +5,7 @@ https://ns.adobe.com/xdm/data/metrics/direct-marketing/sends ``` -The direct-marketing metric sends describes the number of asynchronous messages (email, SMS, MMS etc) that have been dispatched to an recipient's account/address/device +The direct-marketing metric sends describes the number of asynchronous messages (email, SMS, MMS etc) that have been dispatched to an recipient's account/address/device | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| diff --git a/docs/reference/external/activity-streams-2/activity.schema.md b/docs/reference/external/activity-streams-2/activity.schema.md index 0a8d4737d6..fe517133f9 100644 --- a/docs/reference/external/activity-streams-2/activity.schema.md +++ b/docs/reference/external/activity-streams-2/activity.schema.md @@ -10,13 +10,13 @@ An [Activity](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity) is | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/activity-streams-2/activity.schema.json](external/activity-streams-2/activity.schema.json) | - ## Schema Hierarchy * Activity `https://ns.adobe.com/xdm/external/activity-streams-2/activity` * [Object](object.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/object` * [Link](link.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/link` + ## Activity Example ```json { @@ -710,7 +710,7 @@ The content or textual representation of the Object encoded as a JSON string. By ## activitystreams:context -Identifies the context within which the object exists or an activity was performed. The notion of 'context' used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context) document for a complete description. +Identifies the context within which the object exists or an activity was performed. The notion of 'context' used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context) document for a complete description. `activitystreams:context` * is optional @@ -1404,7 +1404,7 @@ A simple, human-readable, plain-text name for the object. HTML markup must not b ## activitystreams:object -When used within an Activity, describes the direct object of the activity. For instance, in the activity 'John added a movie to his wishlist', the object of the activity is the movie added. When used within a Relationship describes the entity to which the subject is related. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object) document for a complete description. +When used within an Activity, describes the direct object of the activity. For instance, in the activity 'John added a movie to his wishlist', the object of the activity is the movie added. When used within a Relationship describes the entity to which the subject is related. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object) document for a complete description. `activitystreams:object` * is optional @@ -1488,7 +1488,7 @@ Unknown type `anyOf`. ## activitystreams:origin -Describes an indirect object of the activity from which the activity is directed. The precise meaning of the origin is the object of the English preposition 'from'. For instance, in the activity 'John moved an item to List B from List A', the origin of the activity is 'List A'. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin) document for a complete description. +Describes an indirect object of the activity from which the activity is directed. The precise meaning of the origin is the object of the English preposition 'from'. For instance, in the activity 'John moved an item to List B from List A', the origin of the activity is 'List A'. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-origin) document for a complete description. `activitystreams:origin` * is optional @@ -1830,7 +1830,7 @@ A natural language summarization of the object encoded as HTML. Multiple languag ## activitystreams:tag -One or more 'tags' that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag) document for a complete description. +One or more 'tags' that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag) document for a complete description. `activitystreams:tag` * is optional @@ -1914,7 +1914,7 @@ Unknown type `anyOf`. ## activitystreams:target -Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition 'to'. For instance, in the activity 'John added a movie to his wishlist', the target of the activity is John's wishlist. An activity can have more than one target. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target) document for a complete description. +Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition 'to'. For instance, in the activity 'John added a movie to his wishlist', the target of the activity is John's wishlist. An activity can have more than one target. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-target) document for a complete description. `activitystreams:target` * is optional diff --git a/docs/reference/external/activity-streams-2/collection-page.schema.md b/docs/reference/external/activity-streams-2/collection-page.schema.md index b934d3ee81..5e9bb9689d 100644 --- a/docs/reference/external/activity-streams-2/collection-page.schema.md +++ b/docs/reference/external/activity-streams-2/collection-page.schema.md @@ -10,7 +10,6 @@ Used to represent distinct subsets of items from a `Collection`. Refer to the [A | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/activity-streams-2/collection-page.schema.json](external/activity-streams-2/collection-page.schema.json) | - ## Schema Hierarchy * Collection Page `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` @@ -18,6 +17,7 @@ Used to represent distinct subsets of items from a `Collection`. Refer to the [A * [Link](link.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/link` * [Collection Page](collection-page.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` + ## Collection Page Example ```json { diff --git a/docs/reference/external/activity-streams-2/collection.schema.md b/docs/reference/external/activity-streams-2/collection.schema.md index 4da4feb322..1e2c0bc55c 100644 --- a/docs/reference/external/activity-streams-2/collection.schema.md +++ b/docs/reference/external/activity-streams-2/collection.schema.md @@ -10,7 +10,6 @@ A `Collection` is a subtype of `[Object](https://www.w3.org/TR/activitystreams-v | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/activity-streams-2/collection.schema.json](external/activity-streams-2/collection.schema.json) | - ## Schema Hierarchy * Collection `https://ns.adobe.com/xdm/external/activity-streams-2/collection` @@ -18,6 +17,7 @@ A `Collection` is a subtype of `[Object](https://www.w3.org/TR/activitystreams-v * [Collection Page](collection-page.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/collection-page` * [Link](link.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/link` + ## Collection Example ```json { @@ -615,7 +615,7 @@ The content or textual representation of the Object encoded as a JSON string. By ## activitystreams:context -Identifies the context within which the object exists or an activity was performed. The notion of 'context' used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context) document for a complete description. +Identifies the context within which the object exists or an activity was performed. The notion of 'context' used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context) document for a complete description. `activitystreams:context` * is optional @@ -1588,7 +1588,7 @@ A natural language summarization of the object encoded as HTML. Multiple languag ## activitystreams:tag -One or more 'tags' that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag) document for a complete description. +One or more 'tags' that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag) document for a complete description. `activitystreams:tag` * is optional diff --git a/docs/reference/external/activity-streams-2/link.schema.md b/docs/reference/external/activity-streams-2/link.schema.md index 91e0577088..aa97a742ff 100644 --- a/docs/reference/external/activity-streams-2/link.schema.md +++ b/docs/reference/external/activity-streams-2/link.schema.md @@ -10,7 +10,6 @@ A Link is an indirect, qualified reference to a resource identified by a URL. Th | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/activity-streams-2/link.schema.json](external/activity-streams-2/link.schema.json) | - ## Schema Hierarchy * Link `https://ns.adobe.com/xdm/external/activity-streams-2/link` @@ -18,6 +17,7 @@ A Link is an indirect, qualified reference to a resource identified by a URL. Th * [RDF Language Tagged String](rdf-langstring.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/rdf-langstring` * [Link](link.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/link` + ## Link Example ```json { @@ -259,7 +259,7 @@ Unknown type `anyOf`. ## activitystreams:rel ### Link Relation -A link relation associated with a `[Link](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link)`. The value _MUST_ conform to both the [HTML5](https://www.w3.org/TR/html5/) and [RFC5988](https://tools.ietf.org/html/rfc5988) 'link relation' definitions. In the [HTML5](https://www.w3.org/TR/html5/), any string not containing the 'space' U+0020, 'tab' (U+0009), 'LF' (U+000A), 'FF' (U+000C), 'CR' (U+000D) or ',' (U+002C) characters can be used as a valid link relation. +A link relation associated with a `[Link](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-link)`. The value _MUST_ conform to both the [HTML5](https://www.w3.org/TR/html5/) and [RFC5988](https://tools.ietf.org/html/rfc5988) 'link relation' definitions. In the [HTML5](https://www.w3.org/TR/html5/), any string not containing the 'space' U+0020, 'tab' (U+0009), 'LF' (U+000A), 'FF' (U+000C), 'CR' (U+000D) or ',' (U+002C) characters can be used as a valid link relation. `activitystreams:rel` * is optional diff --git a/docs/reference/external/activity-streams-2/object.schema.md b/docs/reference/external/activity-streams-2/object.schema.md index e06beacbd6..215aacfeae 100644 --- a/docs/reference/external/activity-streams-2/object.schema.md +++ b/docs/reference/external/activity-streams-2/object.schema.md @@ -10,7 +10,6 @@ Describes an object of any kind. The [`Object`](https://www.w3.org/TR/activityst | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/activity-streams-2/object.schema.json](external/activity-streams-2/object.schema.json) | - ## Schema Hierarchy * Object `https://ns.adobe.com/xdm/external/activity-streams-2/object` @@ -23,6 +22,7 @@ Describes an object of any kind. The [`Object`](https://www.w3.org/TR/activityst * [Image Document](image.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/image` * [Collection](collection.schema.md) `https://ns.adobe.com/xdm/external/activity-streams-2/collection` + ## Object Example ```json { @@ -792,7 +792,7 @@ The content or textual representation of the Object encoded as a JSON string. By ## activitystreams:context -Identifies the context within which the object exists or an activity was performed. The notion of 'context' used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context) document for a complete description. +Identifies the context within which the object exists or an activity was performed. The notion of 'context' used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context) document for a complete description. `activitystreams:context` * is optional @@ -1576,7 +1576,7 @@ A natural language summarization of the object encoded as HTML. Multiple languag ## activitystreams:tag -One or more 'tags' that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag) document for a complete description. +One or more 'tags' that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference. Refer to the [Activity Streams 2.0 Core](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag) document for a complete description. `activitystreams:tag` * is optional diff --git a/docs/reference/external/hal/hal-link.schema.md b/docs/reference/external/hal/hal-link.schema.md index a92a38dfc8..e3f7f1c58d 100644 --- a/docs/reference/external/hal/hal-link.schema.md +++ b/docs/reference/external/hal/hal-link.schema.md @@ -5,7 +5,7 @@ https://ns.adobe.com/xdm/external/hal/link ``` -> A Link Object represents a hyperlink from the containing resource to a URI. +> A Link Object represents a hyperlink from the containing resource to a URI. -- from [JSON Hypertext Application Language, section 5](https://tools.ietf.org/html/draft-kelly-json-hal-08#section-5) @@ -46,7 +46,7 @@ https://ns.adobe.com/xdm/external/hal/link ## deprecation -> Its presence indicates that the link is to be deprecated (i.e. removed) at a future date. Its value is a URL that SHOULD provide further information about the deprecation. +> Its presence indicates that the link is to be deprecated (i.e. removed) at a future date. Its value is a URL that SHOULD provide further information about the deprecation. `deprecation` * is optional @@ -66,7 +66,7 @@ https://ns.adobe.com/xdm/external/hal/link ## href -> If the value is a URI Template then the Link Object SHOULD have a `templated` attribute whose value is `true` +> If the value is a URI Template then the Link Object SHOULD have a `templated` attribute whose value is `true` `href` * is optional @@ -85,7 +85,7 @@ https://ns.adobe.com/xdm/external/hal/link ## hreflang -> Its value is a string and is intended for indicating the language of the target resource (as defined by [RFC5988](https://tools.ietf.org/html/rfc5988) +> Its value is a string and is intended for indicating the language of the target resource (as defined by [RFC5988](https://tools.ietf.org/html/rfc5988) `hreflang` * is optional @@ -111,7 +111,7 @@ All instances must conform to this regular expression ## name -> Its value MAY be used as a secondary key for selecting Link Objects which share the same relation type. +> Its value MAY be used as a secondary key for selecting Link Objects which share the same relation type. `name` * is optional @@ -130,7 +130,7 @@ All instances must conform to this regular expression ## profile -> Its value is a string which is a URI that hints about the profile (as defined by [I-D.wilde-profile-link](https://tools.ietf.org/html/draft-wilde-profile-link-04) of the target resource. +> Its value is a string which is a URI that hints about the profile (as defined by [I-D.wilde-profile-link](https://tools.ietf.org/html/draft-wilde-profile-link-04) of the target resource. `profile` * is optional @@ -150,7 +150,7 @@ All instances must conform to this regular expression ## templated -> Its value is boolean and SHOULD be true when the Link Object's `href` property is a URI Template.\n\nIts value SHOULD be considered false if it is undefined or any other value than `true`. +> Its value is boolean and SHOULD be true when the Link Object's `href` property is a URI Template.\n\nIts value SHOULD be considered false if it is undefined or any other value than `true`. `templated` * is optional @@ -168,7 +168,7 @@ All instances must conform to this regular expression ## title -> Its value is a string and is intended for labelling the link with a human-readable identifier (as defined by [RFC5988](https://tools.ietf.org/html/rfc5988)) +> Its value is a string and is intended for labelling the link with a human-readable identifier (as defined by [RFC5988](https://tools.ietf.org/html/rfc5988)) `title` * is optional @@ -187,7 +187,7 @@ All instances must conform to this regular expression ## type -> Its value is a string used as a hint to indicate the media type expected when dereferencing the target resource. +> Its value is a string used as a hint to indicate the media type expected when dereferencing the target resource. `type` * is optional diff --git a/docs/reference/external/hal/hal.schema.json b/docs/reference/external/hal/hal.schema.json index 7bcb6625fb..3fa44f9918 100644 --- a/docs/reference/external/hal/hal.schema.json +++ b/docs/reference/external/hal/hal.schema.json @@ -296,6 +296,30 @@ "status": "shipped", "total": 10.2 }, + { + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 + }, { "_links": { "self": { @@ -340,30 +364,6 @@ "currency": "USD", "status": "shipped", "total": 10.2 - }, - { - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 } ] } \ No newline at end of file diff --git a/docs/reference/external/hal/hal.schema.md b/docs/reference/external/hal/hal.schema.md index 6389ecf343..8f6b64ef90 100644 --- a/docs/reference/external/hal/hal.schema.md +++ b/docs/reference/external/hal/hal.schema.md @@ -5,9 +5,9 @@ https://ns.adobe.com/xdm/external/hal/resource ``` -> The JSON Hypertext Application Language (HAL) is a standard which -> establishes conventions for expressing hypermedia controls, such as -> links, with JSON [RFC4627](https://tools.ietf.org/html/rfc4627). +> The JSON Hypertext Application Language (HAL) is a standard which +> establishes conventions for expressing hypermedia controls, such as +> links, with JSON [RFC4627](https://tools.ietf.org/html/rfc4627). -- from [JSON Hypertext Application Language draft-kelly-json-hal-08](https://tools.ietf.org/html/draft-kelly-json-hal-08) @@ -39,6 +39,33 @@ This external schema definition allows adding HAL expressions into an existing s } ``` +```json +{ + "_links": { + "self": { + "href": "/orders/523" + }, + "warehouses": [ + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + }, + { + "href": "/warehouse/56" + } + ], + "invoice": { + "href": "/invoices/873" + } + }, + "currency": "USD", + "status": "shipped", + "total": 10.2 +} +``` + ```json { "_links": { @@ -87,33 +114,6 @@ This external schema definition allows adding HAL expressions into an existing s } ``` -```json -{ - "_links": { - "self": { - "href": "/orders/523" - }, - "warehouses": [ - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - }, - { - "href": "/warehouse/56" - } - ], - "invoice": { - "href": "/invoices/873" - } - }, - "currency": "USD", - "status": "shipped", - "total": 10.2 -} -``` - # HAL Resource Properties diff --git a/docs/reference/external/repo/accesscontrolpolicy.schema.md b/docs/reference/external/repo/accesscontrolpolicy.schema.md index 57d51153ea..81a135fece 100644 --- a/docs/reference/external/repo/accesscontrolpolicy.schema.md +++ b/docs/reference/external/repo/accesscontrolpolicy.schema.md @@ -10,12 +10,12 @@ Schema for the Access Control Policy of a resource | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/repo/accesscontrolpolicy.schema.json](external/repo/accesscontrolpolicy.schema.json) | - ## Schema Hierarchy * Access Control Policy `https://ns.adobe.com/xdm/external/repo/accesscontrolpolicy` * [Access Control Entry](accesscontrolentry.schema.md) `https://ns.adobe.com/xdm/external/repo/accesscontrolentry` + ## Access Control Policy Example ```json { diff --git a/docs/reference/external/repo/asset.schema.md b/docs/reference/external/repo/asset.schema.md index 69de003948..ec3befe4b0 100644 --- a/docs/reference/external/repo/asset.schema.md +++ b/docs/reference/external/repo/asset.schema.md @@ -10,13 +10,13 @@ An asset in Adobe Cloud Platform. It is not neccessarily a Digital Asset in the | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/repo/asset.schema.json](external/repo/asset.schema.json) | - ## Schema Hierarchy * Asset `http://ns.adobe.com/adobecloud/core/1.0/asset` * [Common Properties](common.schema.md) `http://ns.adobe.com/adobecloud/core/1.0` * [HAL Resource](../hal/hal.schema.md) `https://ns.adobe.com/xdm/external/hal/resource` + ## Asset Example ```json { @@ -166,7 +166,7 @@ All instances must conform to this regular expression ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -211,7 +211,7 @@ An ETag is an HTTP response header returned by an HTTP/1.1 compliant web server ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is **required** diff --git a/docs/reference/external/repo/common.schema.md b/docs/reference/external/repo/common.schema.md index b75164d3d8..6507b1bd30 100644 --- a/docs/reference/external/repo/common.schema.md +++ b/docs/reference/external/repo/common.schema.md @@ -65,7 +65,7 @@ All instances must conform to this regular expression ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -90,7 +90,7 @@ The server date and time when the resource was created in the repository, such a ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is optional diff --git a/docs/reference/external/repo/directory.schema.md b/docs/reference/external/repo/directory.schema.md index 2b6d492471..897645bae1 100644 --- a/docs/reference/external/repo/directory.schema.md +++ b/docs/reference/external/repo/directory.schema.md @@ -10,7 +10,6 @@ A directory in Adobe Cloud Platform. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/repo/directory.schema.json](external/repo/directory.schema.json) | - ## Schema Hierarchy * Directory `http://ns.adobe.com/adobecloud/core/1.0/directory` @@ -18,6 +17,7 @@ A directory in Adobe Cloud Platform. * [Common Properties](common.schema.md) `http://ns.adobe.com/adobecloud/core/1.0` * [HAL Resource](../hal/hal.schema.md) `https://ns.adobe.com/xdm/external/hal/resource` + ## Directory Examples ```json @@ -227,7 +227,7 @@ All instances must conform to this regular expression ## repo:createDate -The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was created in the repository, such as when an asset file is first uploaded or a directory is created by the server as the parent of a new asset. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:createDate` * is optional @@ -252,7 +252,7 @@ The server date and time when the resource was created in the repository, such a ## repo:lastModifiedDate -The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". +The server date and time when the resource was most recently modified in the repository, such as when a new version of an asset is uploaded or a directory's child resource is added or removed. The Date Time property should conform to ISO 8601 standard. An example form is "2004-10-23T12:00:00-06:00". `repo:lastModifiedDate` * is **required** diff --git a/docs/reference/external/repo/sub-directory.schema.md b/docs/reference/external/repo/sub-directory.schema.md index 973d6c0668..33c188c343 100644 --- a/docs/reference/external/repo/sub-directory.schema.md +++ b/docs/reference/external/repo/sub-directory.schema.md @@ -10,13 +10,13 @@ A sub-directory in a directory listing. | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/repo/sub-directory.schema.json](external/repo/sub-directory.schema.json) | - ## Schema Hierarchy * Sub-Directory `http://ns.adobe.com/adobecloud/core/1.0/sub-directory` * [Common Properties](common.schema.md) `http://ns.adobe.com/adobecloud/core/1.0` * [HAL Resource](../hal/hal.schema.md) `https://ns.adobe.com/xdm/external/hal/resource` + ## Sub-Directory Example ```json { diff --git a/docs/reference/external/schema/geocircle.schema.md b/docs/reference/external/schema/geocircle.schema.md index 6f6026022a..9e77d92225 100644 --- a/docs/reference/external/schema/geocircle.schema.md +++ b/docs/reference/external/schema/geocircle.schema.md @@ -10,12 +10,12 @@ A circular region of a particular radius centered on a GeoCoordinate. Based on [ | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/schema/geocircle.schema.json](external/schema/geocircle.schema.json) | - ## Schema Hierarchy * Geo Circle `http://schema.org/GeoCircle` * [Geo Coordinates](geocoordinates.schema.md) `http://schema.org/GeoCoordinates` + ## Geo Circle Example ```json { diff --git a/docs/reference/external/schema/geoshape.schema.md b/docs/reference/external/schema/geoshape.schema.md index 43d7d01b90..0a5d195c7d 100644 --- a/docs/reference/external/schema/geoshape.schema.md +++ b/docs/reference/external/schema/geoshape.schema.md @@ -10,12 +10,12 @@ The geographic shape of a place. Based on [schema.org](http://schema.org/GeoShap | Abstract | Extensible | Status | Custom Properties | Additional Properties | Defined In | |----------|------------|--------|-------------------|-----------------------|------------| | Can be instantiated | Yes | Experimental | Forbidden | Permitted | [external/schema/geoshape.schema.json](external/schema/geoshape.schema.json) | - ## Schema Hierarchy * Geo Shape `http://schema.org/GeoShape` * [Geo Circle](geocircle.schema.md) `http://schema.org/GeoCircle` + ## Geo Shape Example ```json {