Helicone · Schema
ExperimentTableSimplified
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| experimentId | string | |
| createdAt | string | |
| metadata | object | |
| columns | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExperimentTableSimplified",
"title": "ExperimentTableSimplified",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"experimentId": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"metadata": {},
"columns": {
"items": {
"properties": {
"columnType": {
"type": "string"
},
"columnName": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"columnType",
"columnName",
"id"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"id",
"name",
"experimentId",
"createdAt",
"columns"
],
"type": "object",
"additionalProperties": false
}