Helicone · Schema

ModelRegistryResponse

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
models array
total number
filters object
View JSON Schema on GitHub

JSON Schema

helicone-modelregistryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelRegistryResponse",
  "title": "ModelRegistryResponse",
  "properties": {
    "models": {
      "items": {
        "$ref": "#/components/schemas/ModelRegistryItem"
      },
      "type": "array"
    },
    "total": {
      "type": "number",
      "format": "double"
    },
    "filters": {
      "properties": {
        "capabilities": {
          "items": {
            "$ref": "#/components/schemas/ModelCapability"
          },
          "type": "array"
        },
        "authors": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "providers": {
          "items": {
            "properties": {
              "displayName": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            },
            "required": [
              "displayName",
              "name"
            ],
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "capabilities",
        "authors",
        "providers"
      ],
      "type": "object"
    }
  },
  "required": [
    "models",
    "total",
    "filters"
  ],
  "type": "object",
  "additionalProperties": false
}