{
  "id": "/",
  "type": "object",
  "properties": {
    "products": {
      "id": "products",
      "type": "array",
      "items": {
        "id": "0",
        "type": "object",
        "properties": {
          "externalId": {
            "id": "externalId",
            "type": "string"
          },
          "stockBalance": {
            "id": "stockBalance",
            "type": "object",
            "properties": {
              "warehouseBalance": {
                "id": "warehouseBalance",
                "type": "array",
                "items": [
                  {
                    "id": "0",
                    "type": "object",
                    "properties": {
                      "externalWarehouseId": {
                        "id": "externalWarehouseId",
                        "type": "string"
                      },
                      "quantity": {
                        "id": "quantity",
                        "type": "integer"
                      }
                    }
                  },
                  {
                    "id": "1",
                    "type": "object",
                    "properties": {
                      "externalWarehouseId": {
                        "id": "externalWarehouseId",
                        "type": "string"
                      },
                      "quantity": {
                        "id": "quantity",
                        "type": "integer"
                      }
                    }
                  }
                ]
              }
            }
          }
        },
        "required": [
          "externalId",
          "stockBalance"
        ]
      }
    }
  }
}