Digital Discovery Standard Schema

The Label Insight Base Schema is the default schema for all product data delivered via the Products API or to Label Insight's hosted SFTP.

Data Types

Base Schema along with the associated data type for each field.

{
  "upc": "String",
  "brand": "String",
  "subBrand": "String",
  "productTitle": "String",
  "productSize": "String",
  "unitsPerPack": "String",
  "variant": "String",
  "manufacturer": "String",
  "distributor": "String",
  "importer": "String",
  "categorization": {
    "productType": "String",
    "aisle": "String",
    "shelf": "String",
    "category": "String"
  },
  "sizes": [
    {
      "netWeight": {
        "value": "String",
        "uom": "String"
      }
    }
  ],
  "gtinFormats": {
    "gtin12": "String",
    "gtin14": "String"
  },
  "ingredients": {
    "declaration": "String",
    "symbols": [
      "String"
    ]
  },
  "warning": "String",
  "factPanel": {
    "nutrition": {
      "insignificantAmountStatement": "String",
      "labelStyle": "String",
      "serving": {
        "description": "String",
        "numberPerPack": "String",
        "size": "String",
        "sizeUom": "String",
        "size2": "String",
        "sizeUom2": "String"
      },
      "columns": [
        {
          "name": "String",
          "nutrients": [
            {
              "name": "String",
              "valueOperator": "String",
              "value": "Double",
              "uom": "String",
              "percentDvOperator": "String",
              "percentDv": "Double"
            }
          ]
        }
      ]
    },
    "supplement": {
      "insignificantAmountStatement": "String",
      "serving": {
        "description": "String",
        "numberPerPack": "String",
        "size": "String",
        "sizeUom": "String",
        "size2": "String",
        "sizeUom2": "String"
      },
      "columns": [
        {
          "name": "String",
          "supplements": [
            {
              "name": "String",
              "valueOperator": "String",
              "value": "Double",
              "uom": "Double",
              "percentDvOperator": "String",
              "percentDv": "Double"
            }
          ]
        }
      ]
    },
    "drug": {
      "activeIngredients": [
        {
          "name": "String",
          "amount": "Double",
          "uom": "String",
          "purpose": "String"
        }
      ],
      "inEach": "",
      "warnings": [
        "String"
      ],
      "otherInformation": [
        "String"
      ],
      "uses": [
        "String"
      ],
      "questions": [
        "String"
      ],
      "directions": [
        "String"
      ]
    },
    "guaranteedAnalysis": {
      "columns": [
        {
          "name": "String",
          "nutrientsAsFed": [
            {
              "name": "String",
              "valueOperator": "String",
              "value": "Double",
              "uom": "Double",
              "percentOperator": "String",
              "percent": "Double"
            }
          ]
        }
      ],
      "calorieContent": [
        {
          "value": "Double",
          "valueUom": "String",
          "perUom": "String"
        },
        {
          "value": 313.0,
          "valueUom": "kCal",
          "perUom": "kg"
        }
      ]
    }
  },
  "alcohol": {
    "abv": "Double",
    "ibu": "Integer"
  },
  "attributes": [
    {
      "name": "String"
    }
  ],
  "lastUpdatedTimestamp": "IsoTimestamp"
}

Sample Product Data

Base Schema populated with sample product data.

{
  "upc": "12345678912",
  "brand": "Tasty Fudge Bars",
  "subBrand": "Flavorful Tasty Fudge Bars",
  "productTitle": "Fudge Bars",
  "productSize": "3 FL OZ",
  "unitsPerPack": "About 3",
  "variant": "Fudge",
  "manufacturer": "Classic Manufacturing",
  "distributor": "Classic Distributor",
  "importer": "Classic Importer",
  "categorization": {
    "productType": "Food",
    "aisle": "Frozen Food",
    "shelf": "Ice Cream & Frozen Yogurt",
    "category": "Ice Cream - Fudge Bars"
  },
  "sizes": [
    {
      "netWeight": {
        "value": "3",
        "uom": "FL OZ"
      }
    }
  ],
  "gtinFormats": {
    "gtin12": "1234567891234",
    "gtin14": "12345678912"
  },
  "ingredients": {
    "declaration": "SKIM MILK, CONDENSED SKIM MILK, POLYDEXTROSE, WHOLE MILK, SORBITOL*, COCOA (PROCESSED WITH ALKALI), MILK PROTEIN CONCENTRATE, CONTAINS 2% OR LESS OF: GLYCERIN, STABILIZER BLEND (MALTODEXTRIN, WHEY POWDER, CELLULOSE GUM, LOCUST BEAN GUM, MONO- AND DIGLYCERIDES, GUAR GUM, CORN STARCH, CARRAGEENAN, POLYSORBATE 80), WHEY PROTEIN CONCENTRATE, ASPARTAME, VITAMIN A PALMITATE, NATURAL FLAVOR.",
    "symbols": [
      "* Sensitive individuals may experience a laxative effect from excessive consumption of these ingredients."
    ]
  },
  "warning": "CONTAINS: MILK. PHENYLKETONEURICS: CONTAINS PHENYLALANINE.",
  "factPanel": {
    "nutrition": {
      "insignificantAmountStatement": "Not a significant source of trans fat and dietary fiber.",
      "labelStyle": "NLEA_2018",
      "serving": {
        "description": "1 bar",
        "numberPerPack": "1",
        "size": "2.6",
        "sizeUom": "oz",
        "size2": "76",
        "sizeUom2": "g"
      },
      "columns": [
        {
          "name": "Amount/serving",
          "nutrients": [
            {
              "name": "Calories",
              "valueOperator": "=",
              "value": 90.0,
              "uom": "Cal",
              "percentDvOperator": null,
              "percentDv": null
            },
            {
              "name": "Total Fat",
              "valueOperator": "=",
              "value": 1.0,
              "uom": "g",
              "percentDvOperator": "=",
              "percentDv": 1.0
            },
            {
              "name": "Vitamin D",
              "valueOperator": "=",
              "value": 0.0,
              "uom": "mcg",
              "percentDvOperator": "=",
              "percentDv": 0.0
            },
            {
              "name": "Iron",
              "valueOperator": "=",
              "value": 1.2,
              "uom": "mg",
              "percentDvOperator": "=",
              "percentDv": 6.0
            }
          ]
        }
      ]
    },
    "supplement": null,
    "drug": null,
    "guaranteedAnalysis": null
  },
  "attributes": [
    {
      "name": "No Added Sugar"
    },
    {
      "name": "Good Source of Protein"
    },
    {
      "name": "Low Fat"
    }
  ],
  "alcohol": null,
  "lastUpdatedTimestamp": "2021-01-23T18:43:42.468Z"
}

Field Documentation

Field NameDescriptionExample
upcThis is the verbatim on package barcode captured for this given product. This field is NOT normalized to adhere to a certain GS1 Code and is strictly transcribed from the packaging image.012345678900
brandThe brand of the product as listed on package.Best Brand
subBrandFor the given Brand captured, which product line or subset of a Brand this product falls into. Oftentimes, but not always, the Sub Brand is a trademark.Organics
productTitleThis is the identity of the product or the main product description associated with the product label. This field consists of the observed statement of identity, including Flavor when applicable.Strawberry Whole Milk Yogurt
productSizeThe unparsed net weight content statement as it appears on package.6-4 OZ (113g) CUPS NET WT 24 OZ (1.5 LB) 680g
unitsPerPackIf a product has both inner and outer packaging displayed on the front of pack - this field represents the number of individual units per package as listed on the label.6
variantVariant is the flavor, fragrance, or color associated with this product. For food and non-food products this is a further breakdown of a subset within a product line.Strawberry
manufacturerThis field is the manufacturer listed within the contact information on package. It is limited to the company or brand name listed after a phrase such as, “Manufactured By” but does not include the actual phrase “Manufactured By”. This also does not include the contact address, phone number, email address, or social media handles listed.Best Foods, LLC
distributorThis field is the distributor listed within the contact information on package. It is limited to the company or brand name listed after a phrase such as, “Distributed By” but does not include the actual phrase “Distributed By”. This also does not include the contact address, phone number, email address, or social media handles listed.Best Foods
importerThis field is the importer listed within the contact information on package. It is limited to the company or brand name listed after a phrase such as, “Imported By” but does not include the actual phrase “Imported By”. This also does not include the contact address, phone number, email address, or social media handles listed.Best Foods
categorizationThis is the broadest level of Label Insight's categorization. The product types are based on regulations and retailer structure.Food
productTypeThis is the second level of Label Insight's categorization. It consists of broad grouping within a particular Product Type. These are called Aisles because they loosely reflect the organization of most US supermarket stores.DAIRY
aisleShelves are the third level of Label Insight's categorization. Shelves make up smaller grouping within a particular Aisle.Yogurt
shelfProduct Category is the most detailed grouping of products. To date, Label Insight has over 2,600 distinct product categories across all Product Types. A product category can only be associated with one distinct Shelf, Aisle and Product Type.Yogurt - Classic
gtinFormats12-digit with rear check digit012345678900
gtin1214-digit product identifier which is comprised of three components: \n(1) One digit representing the Indicator Digit to indicate packaging level; \n(2) Twelve digits containing the GS1 US-Issued GS1 Company Prefix and the Item Reference which is designated internally by the brand/company; \n(3) One digit representing the check digit00123456789000
ingredientsThis field is the ingredient declaration, verbatim, as it is represented on package.CULTURED PASTEURIZED ORGANIC WHOLE MILK, ORGANIC STRAWBERRIES, ORGANIC CANE SUGAR, PECTIN, CARROT JUICE CONCENTRATE (COLOR), ORGANIC LOCUST BEAN GUM, NATURAL FLAVOR, ORGANIC FRUIT AND VEGETABLE JUICE CONCENTRATES FOR COLOR (CARROT, APPLE), VITAMIN D3. CONTAINS LIVE AND ACTIVE CULTURES: S. THERMOPHILUS. L BULGARICUS. L ACIDOPHILUS, BIFIDUS, L PARACASEI, L RHAMNOSUS.
symbolsThe capture of any symbol (e.g. asterisk) and accompanying definition associated with an ingredient or set of ingredient to provide further detail about the product.* Organic
warningThe allergen warning statement as present on the product's packaging, typically in the form of a "contains:" or "may contain" statement. Also includes other allergen advisory statements such as "made in a shared facility...