Helicone · Schema

HeliconeDataset

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
created_at string
dataset_type string
id string
meta object
name string
organization string
requests_count number
View JSON Schema on GitHub

JSON Schema

helicone-heliconedataset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HeliconeDataset",
  "title": "HeliconeDataset",
  "properties": {
    "created_at": {
      "type": "string",
      "nullable": true
    },
    "dataset_type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "meta": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Json"
        }
      ],
      "nullable": true
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "organization": {
      "type": "string"
    },
    "requests_count": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "created_at",
    "dataset_type",
    "id",
    "meta",
    "name",
    "organization",
    "requests_count"
  ],
  "type": "object",
  "additionalProperties": false
}