Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Account Union Extension and converting Computed Attributes FG to a global schema #1696

Merged
merged 5 commits into from Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

This file was deleted.

@@ -0,0 +1,18 @@
{
"xdm:segmentMembership": {
"AEPSegments-Account": {
"04a81716-43d6-4e7a-a49c-f1d8b3129ba9": {
"xdm:version": "15",
"xdm:timestamp": "2018-04-26T15:52:25+00:00",
"xdm:validUntil": "2019-04-26T15:52:25+00:00",
"xdm:status": "existing"
},
"53cba6b2-a23b-454a-8069-fc41308f1c0f": {
"xdm:version": "3",
"xdm:lastQualificationTime": "2018-04-26T15:52:25+00:00",
"xdm:validUntil": "2018-04-27T15:52:25+00:00",
"xdm:status": "realized"
}
}
}
}
@@ -0,0 +1,31 @@
{
"meta:license": [
"Copyright 2023 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/"
],
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "https://ns.adobe.com/experience/account/account-extension",
"title": "Adobe Unified Profile Service Account Union Extension",
"description": "Adobe Unified Profile Service required fields for the Account Union.",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": ["https://ns.adobe.com/xdm/context/account"],
"meta:extends": ["https://ns.adobe.com/xdm/context/profile-segmentation"],
"definitions": {
"unified-account-union": {
"properties": {}
}
},
"allOf": [
{
"$ref": "#/definitions/unified-account-union"
},
{
"$ref": "https://ns.adobe.com/xdm/context/profile-segmentation"
}
],
"meta:status": "stable"
}
@@ -0,0 +1,66 @@
{
"meta:license": [
"Copyright 2023 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/schemas/computed-attributes",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Computed Attributes System Schema",
"type": "object",
"meta:extensible": false,
"meta:abstract": false,
"meta:service": true,
"description": "This is a system read only schema used by Profile to added computed attributes. This should never be enabled for profile.",
"definitions": {
"computed-attributes": {
"properties": {
"xdm:datasetID": {
"title": "Dataset ID",
"description": "Dataset ID.",
"type": "string"
},
"xdm:fragmentID": {
"title": "Fragment ID",
"description": "Fragment ID.",
"type": "string"
},
"xdm:lastUpdatedAt": {
"title": "Last Updated At",
"description": "Last updated at..",
"type": "string",
"format": "date-time"
},
"xdm:window": {
"title": "Window",
"description": "Window.",
"type": "object",
"properties": {
"xdm:start": {
"title": "Start Date Time",
"description": "Start date time.",
"type": "string",
"format": "date-time"
},
"xdm:end": {
"title": "End Date Time",
"description": "End date time.",
"type": "string",
"format": "date-time"
}
}
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/computed-attributes"
},
{
"$ref": "https://ns.adobe.com/xdm/context/profile"
}
],
"meta:status": "stable"
}