> ## 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.

# update_content_standards

> update_content_standards は AdCP で既存のコンテンツスタンダード設定を変更し、監査目的の新しいバージョンを作成します。

# update\_content\_standards

既存のコンテンツスタンダード設定を更新し、新しいバージョンを作成します。

**レスポンスタイム**: \< 1s

## Request

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

| Parameter               | Type   | Required | Description                |
| ----------------------- | ------ | -------- | -------------------------- |
| `standards_id`          | string | Yes      | 更新対象スタンダードの ID             |
| `scope`                 | object | No       | スコープの更新                    |
| `policy`                | string | No       | ポリシープロンプトの更新               |
| `calibration_exemplars` | object | No       | キャリブレーション用の pass/fail 例の更新 |

### リクエスト例

```json theme={null}
{
  "$schema": "/schemas/content-standards/update-content-standards-request.json",
  "standards_id": "nike_emea_safety",
  "policy": "Sports and fitness content is ideal. Lifestyle content about health and wellness is good. Entertainment content is generally acceptable. Avoid violence, controversial politics, adult themes. Block hate speech and illegal activities.",
  "calibration_exemplars": {
    "pass": [
      { "type": "url", "value": "https://espn.com/nba/story/_/id/12345/lakers-win", "language": "en" },
      { "type": "url", "value": "https://healthline.com/fitness/cardio-workout", "language": "en" },
      { "type": "url", "value": "https://runnersworld.com/training/marathon-tips", "language": "en" }
    ],
    "fail": [
      { "type": "url", "value": "https://tabloid.example.com/celebrity-scandal", "language": "en" },
      { "type": "url", "value": "https://gambling.example.com/betting-guide", "language": "en" }
    ]
  }
}
```

## Response

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

### 成功レスポンス

```json theme={null}
{
  "$schema": "/schemas/content-standards/update-content-standards-response.json",
  "success": true,
  "standards_id": "nike_emea_safety"
}
```

### エラーレスポンス

```json theme={null}
{
  "$schema": "/schemas/content-standards/update-content-standards-response.json",
  "success": false,
  "errors": [
    {
      "code": "STANDARDS_NOT_FOUND",
      "message": "No standards found with ID 'invalid_id'"
    }
  ]
}
```

## Related Tasks

* [get\_content\_standards](./get_content_standards) - 現行設定を取得
* [create\_content\_standards](./create_content_standards) - 新規設定を作成
