Pinecone · Schema

ModelInfoSupportedParameter

Describes a parameter supported by the model, including parameter value constraints.

Vector DatabasesArtificial IntelligenceEmbeddingsRAG

Properties

Name Type Description
parameter string The name of the parameter.
type string The parameter type e.g. 'one_of', 'numeric_range', or 'any'. If the type is 'one_of', then 'allowed_values' will be set, and the value specified must be one of the allowed values. 'one_of' is only com
value_type string The type of value the parameter accepts, e.g. 'string', 'integer', 'float', or 'boolean'.
required boolean Whether the parameter is required (true) or optional (false).
allowed_values array The allowed parameter values when the type is 'one_of'.
min number The minimum allowed value (inclusive) when the type is 'numeric_range'.
max number The maximum allowed value (inclusive) when the type is 'numeric_range'.
default object The default value for the parameter when a parameter is optional.
View JSON Schema on GitHub

JSON Schema

pinecone-modelinfosupportedparameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelInfoSupportedParameter",
  "title": "ModelInfoSupportedParameter",
  "description": "Describes a parameter supported by the model, including parameter value constraints.",
  "type": "object",
  "properties": {
    "parameter": {
      "example": "input_type",
      "description": "The name of the parameter.",
      "type": "string"
    },
    "type": {
      "example": "one_of",
      "description": "The parameter type e.g. 'one_of', 'numeric_range', or 'any'.\n\nIf the type is 'one_of', then 'allowed_values' will be set, and the value specified must be one of the allowed values. 'one_of' is only compatible with value_type 'string' or 'integer'.\n\nIf 'numeric_range', then 'min' and 'max' will be set, then the value specified must adhere to the value_type and must fall within the `[min, max]` range (inclusive).\n\nIf 'any' then any value is allowed, as long as it adheres to the value_type.",
      "type": "string"
    },
    "value_type": {
      "example": "string",
      "description": "The type of value the parameter accepts, e.g. 'string', 'integer', 'float', or 'boolean'.",
      "type": "string"
    },
    "required": {
      "example": true,
      "description": "Whether the parameter is required (true) or optional (false).",
      "type": "boolean"
    },
    "allowed_values": {
      "description": "The allowed parameter values when the type is 'one_of'.",
      "type": "array",
      "items": {
        "anyOf": [
          {
            "type": "string"
          },
          {
            "type": "integer"
          }
        ]
      }
    },
    "min": {
      "example": 1,
      "description": "The minimum allowed value (inclusive) when the type is 'numeric_range'.",
      "type": "number"
    },
    "max": {
      "example": 1,
      "description": "The maximum allowed value (inclusive) when the type is 'numeric_range'.",
      "type": "number"
    },
    "default": {
      "example": "END",
      "description": "The default value for the parameter when a parameter is optional.",
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer",
          "format": "int32"
        },
        {
          "type": "number",
          "format": "float"
        },
        {
          "type": "boolean"
        }
      ]
    }
  },
  "required": [
    "parameter",
    "type",
    "value_type",
    "required"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/pinecone-modelinfosupportedparameter"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.