Helicone · Schema

OAIModel

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
id string
object string
created number
owned_by string
View JSON Schema on GitHub

JSON Schema

helicone-oaimodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OAIModel",
  "title": "OAIModel",
  "properties": {
    "id": {
      "type": "string"
    },
    "object": {
      "type": "string",
      "enum": [
        "model"
      ],
      "nullable": false
    },
    "created": {
      "type": "number",
      "format": "double"
    },
    "owned_by": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "object",
    "created",
    "owned_by"
  ],
  "type": "object",
  "additionalProperties": false
}