Note
| Field | Type | Behavior | Description |
|---|---|---|---|
name |
string | OUTPUT_ONLY | Resource name (notes/{id}) |
display_name |
string | Human-readable name for the note | |
notes |
string | Free-form note content | |
description |
string | Additional description or summary | |
tool_name |
string | Name of the tool that produced this note | |
tool_args |
object | Arguments passed to the tool (JSON object) | |
create_time |
timestamp | OUTPUT_ONLY | When the note was created |
update_time |
timestamp | OUTPUT_ONLY | When the note was last modified |
delete_time |
timestamp | OUTPUT_ONLY | When the note was soft-deleted (null if active) |
Example
{
"name": "notes/c858d27932ef",
"displayName": "Check CLS Threshold Violations",
"description": "Query to detect CLS values exceeding the 0.1 threshold in the last hour from browser logs.",
"toolName": "query",
"toolArgs": {
"sql": "SELECT time, attributes.page.path as page_path, CAST(attributes.web_vital.value AS DOUBLE) as cls_score FROM \"opentelemetry/logs/browser\" WHERE time >= CURRENT_TIMESTAMP - INTERVAL '1 hour' AND attributes.web_vital.name = 'CLS' AND attributes.web_vital.value IS NOT NULL"
},
"createTime": "2025-12-02T19:26:03.311886Z",
"updateTime": "2026-01-21T23:24:41.583126Z"
}