---
title: "Brand Schema"
description: "Add Brand structured data to Sanity documents — associate a logo and identity with a product or organization to strengthen brand signals in search results."
canonical: https://sanity-plugin-seofields.thehardik.in/docs/schema-org/brand
---

# Brand

Add Brand structured data to your Sanity-powered site. Help search engines identify and link brand entities to your products.

## About Brand

Brand schema helps search engines identify brand entities and link them to products. Structured brand data improves how your brand appears in knowledge panels and product listings, strengthening your brand presence across search results.

## Fields

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | Yes | The name of the brand. |
| `slogan` | string | No | A slogan or tagline for the brand. |
| `image` | string \| object | No | An image representing the brand, such as a logo — a URL string or a full ImageObject. |

## Plugin Registration

```typescript
import { defineConfig } from "sanity";
import { schemaOrgBrandPlugin } from "sanity-plugin-seofields/schema";

export default defineConfig({
  // ... your project config
  plugins: [
    schemaOrgBrandPlugin(),
  ],
});
```

## Schema Usage

Add the `schemaOrgBrand` field to any document schema:

```typescript
import { defineField, defineType } from 'sanity'

export default defineType({
  name: 'page',
  title: 'Page',
  type: 'document',
  fields: [
    // ... your other fields
    defineField({
      name: 'schemaOrgBrand',
      title: 'Brand Schema',
      type: 'schemaOrgBrand',
    }),
  ],
})
```

## GROQ Query

```javascript
*[_type == "brand"][0]{
  schemaOrgBrand {
    name,
    slogan,
    image
  }
}
```

## Next.js Component

```tsx
import { BrandSchema } from "sanity-plugin-seofields/schema/next";

export default function Layout({ data }) {
  return <BrandSchema data={data.schemaOrgBrand} />
}
```

## JSON-LD Output

```json
{
  "@context": "https://schema.org",
  "@type": "Brand",
  "name": "Acme Corp",
  "slogan": "Making everything better.",
  "image": "https://example.com/acme-logo.png"
}
```
