Helicone · Schema
PromptInputRecord
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| inputs | object | |
| dataset_row_id | string | |
| source_request | string | |
| prompt_version | string | |
| created_at | string | |
| response_body | string | |
| request_body | string | |
| auto_prompt_inputs | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PromptInputRecord",
"title": "PromptInputRecord",
"properties": {
"id": {
"type": "string"
},
"inputs": {
"$ref": "#/components/schemas/Record_string.string_"
},
"dataset_row_id": {
"type": "string"
},
"source_request": {
"type": "string"
},
"prompt_version": {
"type": "string"
},
"created_at": {
"type": "string"
},
"response_body": {
"type": "string"
},
"request_body": {
"type": "string"
},
"auto_prompt_inputs": {
"items": {},
"type": "array"
}
},
"required": [
"id",
"inputs",
"source_request",
"prompt_version",
"created_at",
"auto_prompt_inputs"
],
"type": "object",
"additionalProperties": false
}