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.
Property Governance タスク
AdCP 3.0 Proposal - These tasks are under development for AdCP 3.0.
Discovery
| Task | Purpose | Response Time |
|---|---|---|
| get_adcp_capabilities | エージェント機能の取得 | ~200ms |
get_adcp_capabilities で取得します。property_features 配列の詳細は governance セクション を参照。
Property List Management
| Task | Purpose | Response Time |
|---|---|---|
| create_property_list | プロパティリスト新規作成 | ~500ms |
| update_property_list | 既存リストの更新 | ~500ms |
| get_property_list | 解決済みリストの取得 | ~2-5s |
| list_property_lists | 全リストの列挙 | ~500ms |
| delete_property_list | リスト削除 | ~200ms |
Validation
| Task | Purpose | Response Time |
|---|---|---|
| validate_property_delivery | 配信記録をリストに照らして検証 | ~1-5s |
Task Selection Guide
プロパティリストを作成
create_property_list をフィルターとブランド参照で使います:
countries_all は列挙したすべての国でデータを持つプロパティに絞り込み、channels_any は列挙したいずれかのチャネルをサポートするプロパティに絞り込みます。フィルターを省略するとその次元での絞り込みは行いません。
Base properties: An array of property sources to evaluate. Each entry is a discriminated union with selection_type:
publisher_tags:{ "selection_type": "publisher_tags", "publisher_domain": "...", "tags": [...] }publisher_ids:{ "selection_type": "publisher_ids", "publisher_domain": "...", "property_ids": [...] }identifiers:{ "selection_type": "identifiers", "identifiers": [...] }- Omitted: Query the agent’s entire property database
countries_all: Property must have feature data for ALL listed countrieschannels_any: Property must support ANY of the listed channelsfeature_requirements: Property must pass ALL requirements (AND)
countries_all, channels_any) plus feature_requirements which reference features the agent provides (discovered via get_adcp_capabilities). For quantitative features, use min_value/max_value. For binary or categorical features, use allowed_values.
Getting Resolved Properties
Useget_property_list to retrieve the list with resolved identifiers:
auth_token for sharing with sellers is returned at creation time (from create_property_list). Store it securely - it’s only returned once.