{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "schema for the fully native mobile endpoint",
  "type": "object",
  "id": "/image",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["image"]
        },
        "attributes": {
          "type": "object",
          "properties": {
            "imageCredit": {
              "type": "string"
            },
            "caption": {
              "type": "string"
            },
            "altText": {
              "type": "string"
            },
            "width": {
              "type": "number"
            },
            "height": {
              "type": "number"
            }
          },
          "required": [
            "width",
            "height"
          ]
        },
        "links": {
          "type": "object",
          "properties": {
            "url": {
              "type": "string",
              "format": "uri",
              "pattern": "https:\/\/i2-(bertha|stable|prod).*\/(ALTERNATES|alternates)\/s[0-9]{3,4}b?\/.*",
              "description": "Source url of the image"
            },
            "thumbnailUrl": {
              "type": "string",
              "format": "uri",
              "pattern": "https:\/\/i2-(bertha|stable|prod).*\/(ALTERNATES|alternates)\/s[0-9]{3}b?\/.*",
              "description": "Source url of the thumbnail image"
            }
          },
          "required": [
            "url",
            "thumbnailUrl"
          ]
        }
      },
      "required": [
        "type",
        "attributes",
        "links"
      ]
    }
  },
  "required": [
    "data"
  ]
}
