append_insight
Add business insights and analysis notes to database memos with optional tags and connection associations for better data documentation.
Instructions
Add a business insight or analysis note to the memo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connection | No | Optional connection ID to associate with this insight | |
insight | Yes | The business insight or analysis note to store | |
tags | No | Optional tags to categorize the insight |
Input Schema (JSON Schema)
{
"properties": {
"connection": {
"description": "Optional connection ID to associate with this insight",
"type": "string"
},
"insight": {
"description": "The business insight or analysis note to store",
"type": "string"
},
"tags": {
"description": "Optional tags to categorize the insight",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"insight"
],
"type": "object"
}