{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PublicVendor", "title": "PublicVendor", "type": "object", "properties": { "vendor": { "type": "string" }, "name": { "type": "string" }, "models": { "type": "array", "items": { "type": "string" } }, "supports_zdr": { "type": "boolean" }, "supports_byok": { "type": "boolean" }, "availability_status": { "$ref": "#/components/schemas/PublicVendorAvailabilityStatus" } }, "required": [ "vendor", "name", "models", "supports_zdr", "supports_byok", "availability_status" ], "description": "An execution host that Merge Gateway can route to (e.g. `openai`, `bedrock`, `azure`). Lists the model IDs the vendor can serve plus its ZDR and BYOK support." }