forked from hbacila/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
facebook-feed.schema.json
84 lines (84 loc) · 3.49 KB
/
facebook-feed.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
{
"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/facebook-feed",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Facebook News Feed Channel",
"description": "The Facebook news feed channel. This channel does not include Facebook Messenger or Facebook app pages channels.",
"meta:extensible": true,
"meta:extends": [
"https://ns.adobe.com/xdm/channels/channel#/definitions/channel"
],
"type": "object",
"meta:abstract": true,
"definitions": {
"channel": {
"properties": {
"@id": {
"type": "string",
"format": "uri-reference",
"const": "https://ns.adobe.com/xdm/channels/facebook-feed",
"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/social",
"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 apps",
"https://ns.adobe.com/xdm/channel-types/messaging": "Instant Messaging",
"https://ns.adobe.com/xdm/channel-types/email": "Email",
"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"
}