Helicone · Schema

Json

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
View JSON Schema on GitHub

JSON Schema

helicone-json-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Json",
  "title": "Json",
  "anyOf": [
    {
      "type": "string"
    },
    {
      "type": "number",
      "format": "double"
    },
    {
      "type": "boolean"
    },
    {
      "properties": {},
      "additionalProperties": {
        "$ref": "#/components/schemas/Json"
      },
      "type": "object"
    },
    {
      "items": {
        "$ref": "#/components/schemas/Json"
      },
      "type": "array"
    }
  ],
  "nullable": true
}