Skip to main content

get_content_standards

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

Request

Schema: get-content-standards-request.json
ParameterTypeRequiredDescription
standards_idstringYesスタンダード設定の識別子

Response

Schema: get-content-standards-response.json

Success Response

{
  "standards_id": "emea_digital_safety",
  "name": "EMEA - all digital channels",
  "countries_all": ["GB", "DE", "FR"],
  "channels_any": ["display", "video", "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

FieldDescription
standards_idこのスタンダード設定の一意な識別子
name人が読める名称
countries_allISO 3166-1 alpha-2 国コード(大文字推奨、大小区別しない)- すべての listed 国に適用
channels_any広告チャネル - listed のいずれかに適用
languages_anyISO 639-1 または BCP 47 言語タグ(小文字推奨、大小区別しない)- listed のいずれかの言語に適用
policy許容/非許容のコンテキストを記述する自然言語ポリシー
calibration_exemplarsポリシー解釈を合わせるための学習/テスト用コンテキスト(pass/fail)
Brand Safety Floor Requirement実装者は、ポリシー内容にかかわらずブランドセーフティの最低基準を適用する必要があります(AdCP はこの仕様を規定しません)。

Error Response

{
  "errors": [
    {
      "code": "STANDARDS_NOT_FOUND",
      "message": "No standards found with ID 'invalid_id'"
    }
  ]
}