-
Notifications
You must be signed in to change notification settings - Fork 1
/
external-source-system-audit-details.schema.json
51 lines (51 loc) · 2.35 KB
/
external-source-system-audit-details.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"meta:license": [
"Copyright 2020 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/common/external-source-system-audit-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "External Source System Audit Details",
"type": "object",
"meta:extensible": true,
"meta:intendedToExtend": [],
"description": "Defines a set of audit properties for extenal sources. It's strongly encouraged to use this fieldgroup given the asynchronous nature of profile ingestion.",
"definitions": {
"externalSourceSystemAuditDetails": {
"properties": {
"xdm:extSourceSystemAudit": {
"title": "External Source System Audit Properties",
"$ref": "https://ns.adobe.com/xdm/common/external-source-system-audit",
"description": "Audit attributes for external sources.",
"meta:titleId": "external-source-system-audit-details##xdm:extSourceSystemAudit##title##88841",
"meta:descriptionId": "external-source-system-audit-details##xdm:extSourceSystemAudit##description##28131"
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/externalSourceSystemAuditDetails"
}
],
"meta:status": "stable",
"meta:createdDate": "2020-08-10",
"meta:titleId": "external-source-system-audit-details##title##88991",
"meta:descriptionId": "external-source-system-audit-details##description##98601",
"examples": [
{
"xdm:createdBy": "USER111",
"xdm:createdDate": "2018-01-02T15:52:25+00:00",
"xdm:lastUpdatedBy": "USER2222",
"xdm:lastUpdatedDate": "2018-01-02T15:52:25+00:00",
"xdm:lastActivityDate": "2018-01-02T15:52:25+00:00",
"xdm:lastReferencedDate": "2018-01-02T15:52:25+00:00",
"xdm:lastViewedDate": "2018-01-02T15:52:25+00:00"
}
]
}