URL: /rules/schema/organization

---
title: "Organization Schema"
description: "Validates Organization schema for brand presence"
---

Validates Organization schema for brand presence

| | |
|---|---|
| **Rule ID** | `schema/organization` |
| **Category** | [Structured Data](/rules/schema) |
| **Scope** | Per-page |
| **Severity** | info |
| **Weight** | 4/10 |

## Solution

Organization schema helps Google understand your brand and may show a knowledge panel. Required: name, url, logo. Add contactPoint for customer service info, sameAs for social profiles (LinkedIn, Twitter, etc.). Place on homepage or about page. For local businesses, use LocalBusiness instead.

## Enable / Disable

### Disable this rule

```toml squirrel.toml
[rules]
disable = ["schema/organization"]
```

### Disable all Structured Data rules

```toml squirrel.toml
[rules]
disable = ["schema/*"]
```

### Enable only this rule

```toml squirrel.toml
[rules]
enable = ["schema/organization"]
disable = ["*"]
```
