forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperienceevent-quote-request-details.schema.json
99 lines (99 loc) · 5.18 KB
/
experienceevent-quote-request-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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"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/mixins/experienceevent-quote-request-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Quote Request Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"financial_services",
"automotive",
"health_and_life_sciences",
"high_tech",
"manufacturing"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Captures different details of a quote request process for various types of quotes - including insurance policies, healthcare, manufacturing orders, or high tech orders.",
"definitions": {
"quote-request-details": {
"properties": {
"xdm:quotes": {
"type": "object",
"description": "Quotes information including discount, premium, and request ID.",
"properties": {
"xdm:requestID": {
"title": "Quote Request ID",
"type": "string",
"description": "Unique identifier for the quote request.",
"meta:titleId": "experienceevent-quote-request-details##xdm:requestID##title##57321",
"meta:descriptionId": "experienceevent-quote-request-details##xdm:requestID##description##32101"
},
"xdm:discount": {
"title": "Discount",
"$ref": "https://ns.adobe.com/xdm/datatypes/currency",
"description": "Records the discount amount for a quote displayed to a visitor.",
"meta:titleId": "experienceevent-quote-request-details##xdm:discount##title##17531",
"meta:descriptionId": "experienceevent-quote-request-details##xdm:discount##description##18061"
},
"xdm:premium": {
"title": "Premium",
"$ref": "https://ns.adobe.com/xdm/datatypes/currency",
"description": "Records the premium amount for a quote displayed to a visitor.",
"meta:titleId": "experienceevent-quote-request-details##xdm:premium##title##59051",
"meta:descriptionId": "experienceevent-quote-request-details##xdm:premium##description##10971"
},
"xdm:location": {
"title": "Location",
"type": "string",
"description": "Captures the postal code used for finding retailers near the visitor's location.",
"meta:titleId": "experienceevent-quote-request-details##xdm:location##title##37091",
"meta:descriptionId": "experienceevent-quote-request-details##xdm:location##description##29421"
},
"xdm:selectedRetailer": {
"title": "Selected Retailer",
"type": "string",
"description": "Captures the selected retailer for a quote request, if applicable. ",
"meta:titleId": "experienceevent-quote-request-details##xdm:selectedRetailer##title##66731",
"meta:descriptionId": "experienceevent-quote-request-details##xdm:selectedRetailer##description##64221"
},
"xdm:steps": {
"title": "Steps",
"$ref": "https://ns.adobe.com/xdm/datatypes/tool-usage",
"description": "Extension of toolUsage data type.",
"meta:status": "deprecated",
"meta:titleId": "experienceevent-quote-request-details##xdm:steps##title##68281",
"meta:descriptionId": "experienceevent-quote-request-details##xdm:steps##description##42181"
}
},
"meta:descriptionId": "experienceevent-quote-request-details##xdm:quotes##description##89611"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/quote-request-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2021-03-31",
"meta:titleId": "experienceevent-quote-request-details##title##72671",
"meta:descriptionId": "experienceevent-quote-request-details##description##91621",
"examples": [
{
"xdm:quotes": {
"xdm:location": "95110"
}
}
]
}