> ## Documentation Index
> Fetch the complete documentation index at: https://adcp-docs-ja.pier1.co.jp/llms.txt
> Use this file to discover all available pages before exploring further.

# get_content_standards

> get_content_standards は AdCP で特定のスタンダード ID に対するコンテンツセーフティポリシー設定を取得します。

# get\_content\_standards

特定のスタンダード設定についてコンテンツセーフティポリシーを取得します。

## Request

**Schema**: [get-content-standards-request.json](https://adcontextprotocol.org/schemas/v3/content-standards/get-content-standards-request.json)

| Parameter      | Type   | Required | Description  |
| -------------- | ------ | -------- | ------------ |
| `standards_id` | string | Yes      | スタンダード設定の識別子 |

## Response

**Schema**: [get-content-standards-response.json](https://adcontextprotocol.org/schemas/v3/content-standards/get-content-standards-response.json)

### Success Response

```json theme={null}
{
  "standards_id": "emea_digital_safety",
  "name": "EMEA - all digital channels",
  "countries_all": ["GB", "DE", "FR"],
  "channels_any": ["display", "olv", "ctv"],
  "languages_any": ["en", "de", "fr"],
  "policy": "Sports and fitness content is ideal. Lifestyle content about health and wellness is good. Entertainment content is generally acceptable. Avoid content about violence, controversial political topics, adult themes, or content that portrays sedentary lifestyle positively. Block hate speech, illegal activities, or content disparaging athletes.",
  "calibration_exemplars": {
    "pass": [
      { "type": "url", "value": "https://espn.com/nba/story/_/id/12345/lakers-championship", "language": "en" },
      { "type": "url", "value": "https://healthline.com/fitness/cardio-workout", "language": "en" }
    ],
    "fail": [
      { "type": "url", "value": "https://tabloid.example.com/celebrity-scandal", "language": "en" },
      { "type": "url", "value": "https://news.example.com/controversial-politics-article", "language": "en" }
    ]
  }
}
```

### Fields

| Field                   | Description                                                  |
| ----------------------- | ------------------------------------------------------------ |
| `standards_id`          | このスタンダード設定の一意な識別子                                            |
| `name`                  | 人が読める名称                                                      |
| `countries_all`         | ISO 3166-1 alpha-2 国コード（大文字推奨、大小区別しない）- すべての listed 国に適用     |
| `channels_any`          | 広告チャネル - listed のいずれかに適用                                     |
| `languages_any`         | ISO 639-1 または BCP 47 言語タグ（小文字推奨、大小区別しない）- listed のいずれかの言語に適用 |
| `policy`                | 許容/非許容のコンテキストを記述する自然言語ポリシー                                   |
| `calibration_exemplars` | ポリシー解釈を合わせるための学習/テスト用コンテキスト（pass/fail）                       |

<Note>
  **Brand Safety Floor Requirement**

  実装者は、ポリシー内容にかかわらずブランドセーフティの最低基準を適用する必要があります（AdCP はこの仕様を規定しません）。
</Note>

### Error Response

```json theme={null}
{
  "errors": [
    {
      "code": "STANDARDS_NOT_FOUND",
      "message": "No standards found with ID 'invalid_id'"
    }
  ]
}
```

## Related Tasks

* [calibrate\_content](./calibrate_content) - 本スタンダードに対する協働キャリブレーション
* [list\_content\_standards](./list_content_standards) - 利用可能なスタンダード設定一覧
