# Organization

Configure Organization schema on the homepage with name, logo, images, and sameAs links so Thulite SEO outputs complete org JSON-LD.

An organization such as a school, NGO, corporation, club, etc.

## Settings

You can set `type`, `logo`, `name`, `sameAs`, and `images` in `config/_default/params.toml`:

```toml {title="params.toml"}
# SEO (@thulite/seo)
[seo]
  [seo.schemas]
    type = "Organization" # Organization (default) or Person
    logo = "favicon-512x512.png" # Logo of Organization — favicon-512x512.png (default)
    name = "Thulite" # Name of Organization or Person
    sameAs = ["https://github.com/thuliteio/thulite", "https://fosstodon.org/@thulite"] # E.g. ["https://github.com/thuliteio/thulite", "https://fosstodon.org/@thulite"]
    images = ["cover.png"] # ["cover.png"] (default)
    article = [] # Article sections
    newsArticle = [] # NewsArticle sections
    blogPosting = ["blog"] # BlogPosting sections
    product = [] # Product sections
```

## Generated meta tag

Thulite SEO generates the following meta tag (if applicable, homepage only) — for example:

```html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "url": "https://thulite.io/",
      "name": "Thulite",
      "sameAs": [
        "https://github.com/thuliteio/thulite",
        "https://fosstodon.org/@thulite"
      ],
      "image": [
        {
          "@id": "https://thulite.io/cover.png"
        }
      ],
      "logo": {
        "@id": "https://thulite.io/favicon-512x512.png"
      }
    }
  ]
}
</script>
```

## Resources

- [Organization](https://schema.org/Organization)
