---
title: "Supported Nodes · v2 · Unhead"
meta:
  "og:description": "The nodes available for the Schema.org integration."
  "og:title": "Supported Nodes · v2 · Unhead"
  description: "The nodes available for the Schema.org integration."
---

**Core Concepts**

# **Supported Nodes**

**On this page **

- [How do I add a custom Schema.org node?](#how-do-i-add-a-custom-schemaorg-node)
- [Which nodes are officially supported?](#which-nodes-are-officially-supported)

**Quick Answer:** Schema.org nodes are created with `define*` functions like `defineArticle()`, `defineProduct()`, etc. Each function validates input and outputs valid JSON-LD.

Official nodes are ones that have a direct impact on Google Rich Results.

## [How do I add a custom Schema.org node?](#how-do-i-add-a-custom-schemaorg-node)

If you need a node that isn't officially supported, provide it as a plain object following the [**Schema.org specification**](https://schema.org/docs/full.html).

For TypeScript support, use [**schema-dts**](https://github.com/google/schema-dts).

```
import { useSchemaOrg } from '@unhead/schema-org/solid-js'

useSchemaOrg([
  {
    '@type': 'DefinedTerm',
    'name': 'Nuxt Schema.org',
    'description': 'Nuxt Schema.org is a Nuxt module for adding Schema.org to your Nuxt app.',
    'inDefinedTermSet': {
      '@type': 'DefinedTermSet',
      'name': 'Nuxt Modules',
    },
  }
])
```

```
import type { DefinedTerm } from 'schema-dts'
import { useSchemaOrg } from '@unhead/schema-org/solid-js'

const NuxtSchemaOrgDefinedTerm: DefinedTerm = {
  '@type': 'DefinedTerm',
  'name': 'Nuxt Schema.org',
  'description': 'Nuxt Schema.org is a Nuxt module for adding Schema.org to your Nuxt app.',
  'inDefinedTermSet': {
    '@type': 'DefinedTermSet',
    'name': 'Nuxt Modules',
  },
}

useSchemaOrg([NuxtSchemaOrgDefinedTerm])
```

## [Which nodes are officially supported?](#which-nodes-are-officially-supported)

Officially supported nodes are those that enable Google Rich Results. Each has a dedicated `define*` function with validation and auto-completion.

[Edit this page](https://github.com/unjs/unhead/edit/v2.1.2/docs/v2/schema-org/2.guides/1.core-concepts/2.nodes.md)

**Did this page help you? **

[**Deduping Nodes** How to add multiple of the same node to your schema graph.](https://unhead.unjs.io/docs/v2/schema-org/guides/core-concepts/deduping-nodes) [**Schema.org Params** Change the behaviour of your integration.](https://unhead.unjs.io/docs/v2/schema-org/guides/core-concepts/params)

**On this page **

- [How do I add a custom Schema.org node?](#how-do-i-add-a-custom-schemaorg-node)
- [Which nodes are officially supported?](#which-nodes-are-officially-supported)