|
218 | 218 | "name": "Example Third-Party Sales Agent" |
219 | 219 | }, |
220 | 220 | "last_updated": "2025-01-10T17:00:00Z" |
| 221 | + }, |
| 222 | + { |
| 223 | + "$schema": "/schemas/2.6.0/adagents.json", |
| 224 | + "authorized_agents": [ |
| 225 | + { |
| 226 | + "authorization_type": "property_tags", |
| 227 | + "authorized_for": "All news properties", |
| 228 | + "property_tags": [ |
| 229 | + "news" |
| 230 | + ], |
| 231 | + "url": "https://sales.news.example.com" |
| 232 | + } |
| 233 | + ], |
| 234 | + "contact": { |
| 235 | + "domain": "news.example.com", |
| 236 | + "email": "adops@news.example.com", |
| 237 | + "name": "Premium News Publisher" |
| 238 | + }, |
| 239 | + "last_updated": "2025-01-10T18:00:00Z", |
| 240 | + "properties": [ |
| 241 | + { |
| 242 | + "identifiers": [ |
| 243 | + { |
| 244 | + "type": "domain", |
| 245 | + "value": "news.example.com" |
| 246 | + } |
| 247 | + ], |
| 248 | + "name": "News Example", |
| 249 | + "property_type": "website", |
| 250 | + "publisher_domain": "news.example.com", |
| 251 | + "tags": [ |
| 252 | + "premium", |
| 253 | + "news" |
| 254 | + ] |
| 255 | + } |
| 256 | + ], |
| 257 | + "property_features": [ |
| 258 | + { |
| 259 | + "features": [ |
| 260 | + "carbon_score", |
| 261 | + "sustainability_grade" |
| 262 | + ], |
| 263 | + "name": "Scope3", |
| 264 | + "publisher_id": "pub_news_12345", |
| 265 | + "url": "https://api.scope3.com" |
| 266 | + }, |
| 267 | + { |
| 268 | + "features": [ |
| 269 | + "tag_certified_against_fraud", |
| 270 | + "tag_brand_safety_certified" |
| 271 | + ], |
| 272 | + "name": "TAG", |
| 273 | + "url": "https://api.tagtoday.net" |
| 274 | + }, |
| 275 | + { |
| 276 | + "features": [ |
| 277 | + "gdpr_compliant", |
| 278 | + "tcf_registered", |
| 279 | + "ccpa_compliant" |
| 280 | + ], |
| 281 | + "name": "OneTrust", |
| 282 | + "publisher_id": "ot_news_67890", |
| 283 | + "url": "https://api.onetrust.com" |
| 284 | + } |
| 285 | + ], |
| 286 | + "tags": { |
| 287 | + "news": { |
| 288 | + "description": "News and journalism content", |
| 289 | + "name": "News Properties" |
| 290 | + }, |
| 291 | + "premium": { |
| 292 | + "description": "High-quality, brand-safe properties", |
| 293 | + "name": "Premium Properties" |
| 294 | + } |
| 295 | + } |
221 | 296 | } |
222 | 297 | ], |
223 | 298 | "oneOf": [ |
|
460 | 535 | "minItems": 1, |
461 | 536 | "type": "array" |
462 | 537 | }, |
| 538 | + "property_features": { |
| 539 | + "description": "[AdCP 3.0] Optional list of agents that provide property feature data (certifications, scores, compliance status). Used for discovery - actual data comes from querying the agent's get_property_features task.", |
| 540 | + "items": { |
| 541 | + "additionalProperties": true, |
| 542 | + "properties": { |
| 543 | + "features": { |
| 544 | + "description": "Feature IDs this agent provides (e.g., 'carbon_score', 'tag_certified_against_fraud'). Use list_property_features on the agent for full definitions.", |
| 545 | + "items": { |
| 546 | + "type": "string" |
| 547 | + }, |
| 548 | + "minItems": 1, |
| 549 | + "type": "array" |
| 550 | + }, |
| 551 | + "name": { |
| 552 | + "description": "Human-readable name of the vendor/agent (e.g., 'Scope3', 'TAG', 'OneTrust')", |
| 553 | + "type": "string" |
| 554 | + }, |
| 555 | + "publisher_id": { |
| 556 | + "description": "Optional publisher identifier at this agent (for lookup)", |
| 557 | + "type": "string" |
| 558 | + }, |
| 559 | + "url": { |
| 560 | + "description": "The agent's API endpoint URL (must implement get_property_features)", |
| 561 | + "format": "uri", |
| 562 | + "type": "string" |
| 563 | + } |
| 564 | + }, |
| 565 | + "required": [ |
| 566 | + "url", |
| 567 | + "name", |
| 568 | + "features" |
| 569 | + ], |
| 570 | + "type": "object" |
| 571 | + }, |
| 572 | + "type": "array" |
| 573 | + }, |
463 | 574 | "tags": { |
464 | 575 | "additionalProperties": { |
465 | 576 | "additionalProperties": true, |
|
0 commit comments