{
  "type": "array",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "",
  "minItems": 1,
  "uniqueItems": true,
  "items": {
    "type": "object",
    "required": [
      "name",
      "bannerImageUrl",
      "tiers",
      "id",
      "contentId"
    ],
    "properties": {
      "name": {
        "type": "string",
        "minLength": 1
      },
      "bannerImageUrl": {
        "type": "string",
        "minLength": 1
      },
      "tiers": {
        "type": "array",
        "uniqueItems": true,
        "minItems": 1,
        "items": {
          "required": [
            "iconImageUrl",
            "id",
            "contentId"
          ],
          "properties": {
            "iconImageUrl": {
              "type": "string",
              "minLength": 1
            },
            "id": {
              "type": "string",
              "minLength": 1
            },
            "contentId": {
              "type": "string",
              "minLength": 1
            }
          }
        }
      },
      "id": {
        "type": "string",
        "minLength": 1
      },
      "contentId": {
        "type": "string",
        "minLength": 1
      }
    }
  }
}
