{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "schema for the fully native mobile endpoint",
  "type": "object",
  "id": "/list",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "articles"
          ]
        }
      },
      "included": {
        "type": "array",
        "minItems": 0,
        "items": {
          "anyOf": [
            {
              "$ref": "/news"
            },
            {
              "$ref": "/opinion"
            },
            {
              "$ref": "/liveEvent"
            }
          ]
        }
      }
    }
  }
}