{
  "$schema": "http://json-schema.org/draft-04/schema",
  "id": "campaign-social-preferences.json",
  "type": "object",
  "properties": {
    "share": {
      "type": [ "array" ],
      "items": {
        "type": "string",
        "enum": [
          "facebook",
          "twitter",
          "googleplus",
          "linkedin",
          "pinterest"
        ]
      }
    },
    "likes": {
      "type": [ "array" ],
      "items": {
        "type": "string",
        "enum": [
          "facebook",
          "googleplus"
        ]
      }
    },
    "facebookWallPost": {
      "type": [ "boolean" ]
    },
    "facebookPagesPost": {
      "type": [ "array" ],
      "items": {
        "type": "object",
        "properties": {
          "pageId": {
            "type": "string",
            "maxLength": 50,
            "pattern": "[^ \t\r\n]"
          }
        },
        "required": [ "pageId" ]
      }
    },
    "twitterPost": {
      "type": [ "boolean" ]
    },
    "linkedInPost": {
      "type": [ "boolean" ]
    },
    "rssPost": {
      "type": [ "boolean" ]
    },
    "rssDescription": {
      "type": [ "string", "null" ],
      "maxLength": 150
    },
    "_links": {
      "$ref": "link-collection.json"
    }
  },
  "required": [ "share", "likes", "facebookWallPost", "facebookPagesPost", "linkedInPost", "twitterPost", "rssPost" ]
}
