From 9a5a7302c5c05d744de4d1642c729375b375bbe2 Mon Sep 17 00:00:00 2001 From: Brian O'Kelley Date: Sat, 20 Sep 2025 06:51:39 -0400 Subject: [PATCH] fix: add missing property and list_authorized_properties schemas to registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add property core schema to schema index - Add list-authorized-properties task schemas to media-buy section - Ensures all existing schemas are discoverable through the registry 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- static/schemas/v1/index.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/static/schemas/v1/index.json b/static/schemas/v1/index.json index 5ad07d8ad6..e64591132a 100644 --- a/static/schemas/v1/index.json +++ b/static/schemas/v1/index.json @@ -74,6 +74,10 @@ "creative-library-item": { "$ref": "/schemas/v1/core/creative-library-item.json", "description": "Creative asset as it appears in the centralized library" + }, + "property": { + "$ref": "/schemas/v1/core/property.json", + "description": "An advertising property that can be validated via adagents.json" } } }, @@ -186,6 +190,16 @@ "$ref": "/schemas/v1/media-buy/get-media-buy-delivery-response.json", "description": "Response payload for get_media_buy_delivery task" } + }, + "list-authorized-properties": { + "request": { + "$ref": "/schemas/v1/media-buy/list-authorized-properties-request.json", + "description": "Request parameters for discovering all properties this agent is authorized to represent" + }, + "response": { + "$ref": "/schemas/v1/media-buy/list-authorized-properties-response.json", + "description": "Response payload for list_authorized_properties task" + } } } },