{
  "type": "object",
  "required": ["products"],
  "properties": {
    "products": {
      "type": "array",
      "items": {
        "required": ["product_id","distribution_type_ids"],
        "properties": {
          "product_id": {
            "type": "integer",
            "required": true
          },
          "upc": {
            "type": "number",
            "required": true
          },
          "distribution_type_ids": {
            "type": "array",
            "required": true
          }
        }
      }
    }
  }
}
