Add brand name as seller

Add brand name as seller

In SA SEO JSON‑LD Schema markup app, the brand name is included in the “brand” field of Product schema markup by default:

{
  "@context": "https://schema.org/",
  "@type": "Product",
  "name": "Product name",
  "image": [
    "https://example.com/photos/1x1/photo.jpg",
    "https://example.com/photos/4x3/photo.jpg",
    "https://example.com/photos/16x9/photo.jpg"
  ],
  "brand": {
    "@type": "Brand",
    "name": "Brand Name"
  }
...
}

By enabling the “Add brand name as seller” option, the schema markup structure can be changed to the following:

{
  "@context": "https://schema.org/",
  "@type": "Product",
  "name": "Product name",
  "image": [
    "https://example.com/photos/1x1/photo.jpg",
    "https://example.com/photos/4x3/photo.jpg",
    "https://example.com/photos/16x9/photo.jpg"
  ],
  "brand": {
    "@type": "Brand",
    "name": "Brand Name"
  },
  "seller": {
    "@type": "Organization",
    "brand": "Brand Name"
  }
...
}