Helicone · Schema

CountryData

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
country string
total_requests number
View JSON Schema on GitHub

JSON Schema

helicone-countrydata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CountryData",
  "title": "CountryData",
  "properties": {
    "country": {
      "type": "string"
    },
    "total_requests": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "country",
    "total_requests"
  ],
  "type": "object",
  "additionalProperties": false
}