Helicone · Schema
PromptVersionResult
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| minor_version | number | |
| major_version | number | |
| prompt_v2 | string | |
| model | string | |
| helicone_template | string | |
| created_at | string | |
| metadata | object | |
| parent_prompt_version | string | |
| experiment_id | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PromptVersionResult",
"title": "PromptVersionResult",
"properties": {
"id": {
"type": "string"
},
"minor_version": {
"type": "number",
"format": "double"
},
"major_version": {
"type": "number",
"format": "double"
},
"prompt_v2": {
"type": "string"
},
"model": {
"type": "string"
},
"helicone_template": {
"type": "string"
},
"created_at": {
"type": "string"
},
"metadata": {
"$ref": "#/components/schemas/Record_string.any_"
},
"parent_prompt_version": {
"type": "string",
"nullable": true
},
"experiment_id": {
"type": "string",
"nullable": true
},
"updated_at": {
"type": "string"
}
},
"required": [
"id",
"minor_version",
"major_version",
"prompt_v2",
"model",
"helicone_template",
"created_at",
"metadata"
],
"type": "object",
"additionalProperties": false
}