Unbxd Knowledge Base
  • Documentation

›Feed Review

Chapter 1

    Product Overview

    • Unbxd Product Overview
    • Unbxd Technical Product Overview
    • Unbxd Integration Overview

Chapter 2

    Feed Review

    • Feed Review Stages
    • Feed Compatibility Review
    • Feed Product Review
    • Feed Data Integrity Review
    • Feed Logic Review

    Feed & Schema Processing

    • Process Feed
    • Process Schema

    Feed Indexing

    • Feed & Schema Indexing

    Search & Browse API

    • Search & Browse API

Chapter 3

    Analytics

    • Types of analytics integration
    • API based integration
    • JS based integration
    • HTML based integration
    • GTM based integration

Chapter 4

    Recommendation Widgets

    • Recommendation

Chapter 5

    AutoSuggest

    • Types of Autosuggest

Chapter 6

    First Integration

    • Integration Prerequisite
    • Scope of integration
    • Meet Your Customers

Chapter 7

    Inter Team Cordination

    • Inter Team Co-ordination
    • Work with Engineering Team
    • Work with Relevancy Team
    • Work with Quality Assurance Team

Chapter 8

    Take Customer Live

    • Before Go Live
    • Go Live Day
    • Post Go Live

Chapter 9

    Account Handover

    • Account Conversion Numbers
    • Account Handover

Top 100 Issues

  • Top 100 Integration Questions

Feed Data Integrity Reivew

This document is in Beta stage and we have try to cover all topics in right hierarchy yet indepth. To make this document better, we need your help. Please give your feedback by rating the stars at the end of each topic. For more updates join slack channel #unbxd-knowledgebase

Use this document for internal purpose only. It is not suppose to be shared with customers


In this stage of feed review, we review and validate the data of different attributes of the feed. An attribute in a feed can contain legitimate values, null values or unknown values. We need to explore these discrepancies in the early stages of the feed review itself so that we can avoid delays and other rework.

Let's consider this sample feed

<?xml version="1.0" encoding="UTF-8"?>
<root>
   <element>
      <categories>Home&gt;Mens&gt;shirts,</categories>
      <description>This is the ultimate flexi-top of the season, thanks to the generous number of prints and hues to add to your summer collection. The Capture Linen Boxy Tee is a brilliant everyday piece with flattering dropped shoulders and a rolled finish to the cuffs for added flair</description>
      <images>https://image.url/image1.jpg,https://image.url/image.jpg,https://image.url/image3.jpg</images>
      <labels>New</labels>
      <parentId null="true" />
      <price>70</price>
      <size>8</size>
      <sku>AD123</sku>
      <is-available>1</is-available>
      <title>Capture Linen Boxy Tee</title>
   </element>
   <element>
      <categories>Home&gt;Mens&gt;shirts,</categories>
      <description>This is the ultimate flexi-top of the season, thanks to the generous number of prints and hues to add to your summer collection. The Capture Linen Boxy Tee is a brilliant everyday piece with flattering dropped shoulders and a rolled finish to the cuffs for added flair</description>
      <images>https://image.url/image1.jpg,https://image.url/image.jpg,https://image.url/image3.jpg</images>
      <labels>New</labels>
      <parentId>AD123</parentId>
      <price></price>
      <size>10</size>
      <sku>AD123</sku>
      <is-available>1</is-available>
      <title>Capture Linen Boxy Tee</title>
   </element>
   <element>
      <categories>Home&gt;Mens&gt;shirts,</categories>
      <description>This is the ultimate flexi-top of the season, thanks to the generous number of prints and hues to add to your summer collection. The Capture Linen Boxy Tee is a brilliant everyday piece with flattering dropped shoulders and a rolled finish to the cuffs for added flair</description>
      <images>https://image.url/image1.jpg,https://image.url/image.jpg,https://image.url/image3.jpg</images>
      <labels>New</labels>
      <parentId>AD123</parentId>
      <price>70</price>
      <size>12</size>
      <sku>AD123</sku>
      <is-available>0</is-available>
      <title>Capture Linen Boxy Tee</title>
   </element>
   <element>
      <categories>Home&gt;Women's&gt;shirts,</categories>
      <description>Enjoy the classic colourways Sara's used for this elegant Tri Button Top. A great all-season piece, this light top has gorgeous drape-style shoulders and with the buttons at the front and side to add subtle, pretty design detail.</description>
      <images>https://image.url/image1.jpg,https://image.url/image.jpg,https://image.url/image3.jpg</images>
      <labels>New</labels>
      <parentId null="true" />
      <price>70</price>
      <size>8</size>
      <sku>AD567</sku>
      <is-available>1</is-available>
      <title>Sara Tri Button Top</title>
   </element>
   <element>
      <categories>Home&gt;Women's&gt;shirts,</categories>
      <description>Enjoy the classic colourways Sara's used for this elegant Tri Button Top. A great all-season piece, this light top has gorgeous drape-style shoulders and with the buttons at the front and side to add subtle, pretty design detail.</description>
      <images>https://image.url/image1.jpg,https://image.url/image.jpg,https://image.url/image3.jpg</images>
      <labels>New</labels>
      <parentId>AD567</parentId>
      <price>70</price>
      <size>10</size>
      <sku>AD567</sku>
      <is-available></is-available>
      <title>Sara Tri Button Top</title>
   </element>
   <element>
      <categories>Home&gt;Women's&gt;shirts,</categories>
      <description>Enjoy the classic colourways Sara's used for this elegant Tri Button Top. A great all-season piece, this light top has gorgeous drape-style shoulders and with the buttons at the front and side to add subtle, pretty design detail.</description>
      <images>https://image.url/image1.jpg,https://image.url/image.jpg,https://image.url/image3.jpg</images>
      <labels>New</labels>
      <parentId>AD567</parentId>
      <price></price>
      <size>12</size>
      <sku>AD567</sku>
      <is-available>1</is-available>
      <title>Sara Tri Button Top</title>
   </element>
</root>

In this stage of feed review, we need to validate different attribute for any unwanted values. However before jumping right into it, it would be helpful if we can infer which attributes are worth checking. This become more important if a feed contains hundred's of product attributes.

So if we take above feed into the consideration then we expect following fields to be worth investigating

  • categories
  • price
  • sku
  • is-available

If we check distinct values on

  • categories field then you would see all product contains legitimate values.
  • price field does have empty values so which does not make sense so here you got a feed review question
  • sku field has all legitimate values.
  • is-available field suppose to have only 1 and 0 but in some products it does not have any value.

So from above exercise you got two feed review questions

Feed Review

Prices for some products are empty and having empty value in is-available flag what does it mean?


Did you find it useful? Rate it

← Feed Product ReviewFeed Logic Review →
Unbxd Knowledge Base
Knowledge Base
Getting Started (or other categories)Guides (or other categories)API Reference (or other categories)
Contributors
Amit Aggarwal
Version
0.1 ( change log )0.5 ( change log )0.8 ( change log )
Unbxd Knowledge Base
Copyright © 2019 Unbxd Software Limited