Helicone · Schema
Prompt2025Version
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| model | string | |
| prompt_id | string | |
| major_version | number | |
| minor_version | number | |
| commit_message | string | |
| environments | array | |
| created_at | string | |
| s3_url | string | |
| prompt_body | object | The full prompt body including messages. Only included when explicitly requested via the `includePromptBody` parameter to avoid unnecessary data transfer. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Prompt2025Version",
"title": "Prompt2025Version",
"properties": {
"id": {
"type": "string"
},
"model": {
"type": "string"
},
"prompt_id": {
"type": "string"
},
"major_version": {
"type": "number",
"format": "double"
},
"minor_version": {
"type": "number",
"format": "double"
},
"commit_message": {
"type": "string"
},
"environments": {
"items": {
"type": "string"
},
"type": "array"
},
"created_at": {
"type": "string"
},
"s3_url": {
"type": "string"
},
"prompt_body": {
"$ref": "#/components/schemas/Prompt2025VersionPromptBody",
"description": "The full prompt body including messages. Only included when explicitly requested\nvia the `includePromptBody` parameter to avoid unnecessary data transfer."
}
},
"required": [
"id",
"model",
"prompt_id",
"major_version",
"minor_version",
"commit_message",
"created_at"
],
"type": "object",
"additionalProperties": false
}