forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.schema.json
94 lines (94 loc) · 3.57 KB
/
web.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
{
"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/channels/web",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Web",
"description":
"The world wide web and mobile web. Pages delivered via HTTP to a web browser or in-app browser.",
"meta:extensible": true,
"meta:extends": [
"https://ns.adobe.com/xdm/channels/channel#/definitions/channel"
],
"meta:abstract": false,
"type": "object",
"definitions": {
"channel": {
"properties": {
"@id": {
"type": "string",
"format": "uri",
"const": "https://ns.adobe.com/xdm/channels/web",
"description":
"The ID uniquely identifies the channel. Each specific experience channel defines a constant `@id`."
},
"xdm:mode": {
"type": "string",
"const": "pull",
"description": "How experiences are delivered in this channel.",
"meta:enum": {
"push":
"The publisher of an experience can initiate an experience by sending a message into the channel. Most `push` channels involve some form of subscription or opt-in.",
"pull":
"The consumer can initiate an experience by requesting a location in the channel. Most `pull` channels give publishers some control how the experience is then delivered.",
"bidirectional":
"Both `push` and `pull` interaction modes are supported by the channel."
}
},
"@type": {
"type": "string",
"format": "uri",
"description":
"The `@type` property is used to provide a rough classification of channels with similar properties.",
"const": "https://ns.adobe.com/xdm/channel-types/web",
"meta:enum": {
"https://ns.adobe.com/xdm/channel-types/web":
"The world wide web, including mobile web",
"https://ns.adobe.com/xdm/channel-types/social":
"Social media platforms",
"https://ns.adobe.com/xdm/channel-types/mobile":
"Mobile applications",
"https://ns.adobe.com/xdm/channel-types/messaging":
"Instant Messaging",
"https://ns.adobe.com/xdm/channel-types/email": "E-Mail",
"https://ns.adobe.com/xdm/channel-types/offline":
"Non-Digital experience channels"
}
},
"xdm:contentTypes": {
"type": "array",
"const": [],
"description": "The content types that this channel can deliver."
},
"xdm:metricTypes": {
"type": "array",
"const": [],
"description": "The metrics that can be collected in this channel."
},
"xdm:locationTypes": {
"type": "array",
"const": [],
"description":
"The types of locations (virtual places) that this channel consists of and can deliver content to."
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "https://ns.adobe.com/xdm/channels/channel#/definitions/channel"
},
{
"$ref": "#/definitions/channel"
}
],
"required": ["@id"],
"meta:status": "experimental"
}