{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1
    },
    "description": {
      "type": "string",
      "minLength": 1
    },
    "largeImageUrl": {
      "type": "string",
      "minLength": 1
    },
    "isFeatured": {
      "type": "boolean"
    },
    "isNew": {
      "type": "boolean"
    },
    "creditPrice": {
      "type": "number"
    },
    "isPurchasableWithCredits": {
      "type": "boolean"
    },
    "isPurchasableFromMarketplace": {
      "type": "boolean"
    },
    "xboxMarketplaceProductId": {},
    "xboxMarketplaceProductUrl": {},
    "merchandisingOrder": {
      "type": "number"
    },
    "flair": {},
    "id": {
      "type": "string",
      "minLength": 1
    },
    "contentId": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "name",
    "description",
    "largeImageUrl",
    "isFeatured",
    "isNew",
    "creditPrice",
    "isPurchasableWithCredits",
    "isPurchasableFromMarketplace",
    "merchandisingOrder",
    "id",
    "contentId"
  ]
}
