# JsonLdForFaq Reference

The `JsonLdForFaq` component renders FAQ JSON-LD structured data in a script tag.

## Props

The `JsonLdForFaq` component accepts the following props:

### `faqs` (required)

**type:** `Array<{ question: string; answer: string }>`

**Added in:** `seo-in-nextjs@1.0.0`

An array of FAQ items. Each item must have:

- **question** (`string`): The question text
- **answer** (`string`): The answer text

### `scriptId`

**type:** `string`

**Added in:** `seo-in-nextjs@1.0.0`

A custom ID for the script tag.

### `scriptKey`

**type:** `string`

**Added in:** `seo-in-nextjs@1.0.0`

A custom React key for the script element.