SerenAI

Pay Per Call Agentic Commerce

PublisherSuggestion

A publisher suggestion with match score and reason

Properties

PropertyTypeRequiredDescription
capabilities Array<string> Yes Publisher-declared capabilities
description string,null No
match_reason string Yes Why this publisher was suggested
name string Yes
pricing any No
score number Yes Match score (0.0 to 1.0)
slug string Yes
View JSON Schema
{
  "type": "object",
  "description": "A publisher suggestion with match score and reason",
  "required": [
    "slug",
    "name",
    "match_reason",
    "score",
    "capabilities"
  ],
  "properties": {
    "capabilities": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Publisher-declared capabilities"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "match_reason": {
      "type": "string",
      "description": "Why this publisher was suggested"
    },
    "name": {
      "type": "string"
    },
    "pricing": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/PricingSummary",
          "description": "Pricing info"
        }
      ]
    },
    "score": {
      "type": "number",
      "format": "double",
      "description": "Match score (0.0 to 1.0)"
    },
    "slug": {
      "type": "string"
    }
  }
}