Merge · Schema

PublicVendorsListResponse

Paginated response wrapper for `GET /v1/vendors`. Use the `next_cursor` field to page through results when `has_more` is true.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
object string
data array
has_more boolean
next_cursor stringnull
View JSON Schema on GitHub

JSON Schema

merge-publicvendorslistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicVendorsListResponse",
  "title": "PublicVendorsListResponse",
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "list"
      ]
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PublicVendor"
      }
    },
    "has_more": {
      "type": "boolean",
      "default": false
    },
    "next_cursor": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "data"
  ],
  "description": "Paginated response wrapper for `GET /v1/vendors`. Use the `next_cursor` field to page through results when `has_more` is true."
}