Skip to content

Commit

Permalink
The phone adobe#81
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Jan 19, 2018
1 parent 0f74464 commit 6d73120
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions schemas/channels/phone.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"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/phone",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Phone",
"description": "The telephone. Includes both inbound and outbound.",
"meta:extensible": true,
"meta:extends": [
"https://ns.adobe.com/xdm/channels/channel#/definitions/channel"
],
"meta:abstract": false,
"definitions": {
"channel": {
"properties": {
"@id": {
"type": "string",
"format": "uri",
"const": "https://ns.adobe.com/xdm/channels/phone",
"description": "The ID uniquely identifies the channel. Each specific experience channel defines a constant `@id`."
},
"xdm:mode": {
"type": "string",
"const": "bidirectional",
"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/offline",
"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"
]
}

0 comments on commit 6d73120

Please sign in to comment.