← Templates

Create Template

Create a reusable column template

Cancel

Template Information

Column Configuration

JSON format

💡 Tip: Use the Column Editor in a dataset to configure your column visually, then copy the generated config here.

📝 For OpenAI Responses templates, include the manifest and output_mapping fields.

Show example configurations

Simple input column:

{
  "version": 3,
  "column_type": "input",
  "data_type": "string"
}

OpenAI Responses enrichment:

{
  "version": 3,
  "column_type": "enrichment",
  "data_type": "json",
  "manifest": [
    {
      "id": "openai_call",
      "type": "openai_responses",
      "config": {
        "prompt_id": "pmpt_xxxxx",
        "variables": {
          "user": "{{company_name}}"
        },
        "text_format": {
          "type": "json_schema",
          "name": "response",
          "strict": true,
          "schema": {}
        }
      }
    }
  ],
  "output_mapping": {
    "output.summary": "summary"
  },
  "secrets": {}
}