Merge · Schema

PublicVendor

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.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
vendor string
name string
models array
supports_zdr boolean
supports_byok boolean
availability_status object
View JSON Schema on GitHub

JSON Schema

merge-publicvendor-schema.json Raw ↑
{
  "$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."
}