From d33c4b3b548b86d56fcfcad52ebfd772baf387a3 Mon Sep 17 00:00:00 2001 From: Steve Calvert Date: Mon, 6 Apr 2026 09:20:46 -0700 Subject: [PATCH] feat: improve search response cleansing with expanded allowlists and snapshot tests - Expand metadata allowlist: owner, assignedTo, updatedBy, status, priority, container, datasourceId - Fix snippet field: use "text" instead of deprecated "snippet" key - Trim person allowlist: drop "email" (not present in API responses) - Filter empty snippets: remove snippets with blank/missing text - Add snapshot tests with real-world fixtures (people, jira, github, mixed queries) and structural validation Co-Authored-By: Claude Opus 4.6 (1M context) --- internal/output/cleanse.go | 47 +- internal/output/cleanse_snapshot_test.go | 135 + internal/output/cleanse_test.go | 130 +- internal/output/testdata/cleansed_github.json | 194 + internal/output/testdata/cleansed_jira.json | 114 + internal/output/testdata/cleansed_mixed.json | 82 + internal/output/testdata/cleansed_people.json | 107 + internal/output/testdata/raw_github.json | 2791 ++++++++++++ internal/output/testdata/raw_jira.json | 3945 +++++++++++++++++ internal/output/testdata/raw_mixed.json | 2915 ++++++++++++ internal/output/testdata/raw_people.json | 1722 +++++++ 11 files changed, 12162 insertions(+), 20 deletions(-) create mode 100644 internal/output/cleanse_snapshot_test.go create mode 100644 internal/output/testdata/cleansed_github.json create mode 100644 internal/output/testdata/cleansed_jira.json create mode 100644 internal/output/testdata/cleansed_mixed.json create mode 100644 internal/output/testdata/cleansed_people.json create mode 100644 internal/output/testdata/raw_github.json create mode 100644 internal/output/testdata/raw_jira.json create mode 100644 internal/output/testdata/raw_mixed.json create mode 100644 internal/output/testdata/raw_people.json diff --git a/internal/output/cleanse.go b/internal/output/cleanse.go index 44edeb3..266bc7e 100644 --- a/internal/output/cleanse.go +++ b/internal/output/cleanse.go @@ -27,6 +27,16 @@ func CleanseSearchResponse(resp any) (any, error) { if results, ok := result["results"].([]any); ok { result["results"] = filterEmptyResults(results) + for _, r := range result["results"].([]any) { + if m, ok := r.(map[string]any); ok { + if snippets, ok := m["snippets"].([]any); ok { + m["snippets"] = filterEmptySnippets(snippets) + if len(m["snippets"].([]any)) == 0 { + delete(m, "snippets") + } + } + } + } } return result, nil @@ -57,20 +67,26 @@ var documentAllowlist = allowlist{ } var metadataAllowlist = allowlist{ - "datasource": nil, - "objectType": nil, - "author": personAllowlist, - "updateTime": nil, - "createTime": nil, + "datasource": nil, + "objectType": nil, + "author": personAllowlist, + "owner": personAllowlist, + "assignedTo": personAllowlist, + "updatedBy": personAllowlist, + "updateTime": nil, + "createTime": nil, + "status": nil, + "priority": nil, + "container": nil, + "datasourceId": nil, } var personAllowlist = allowlist{ - "name": nil, - "email": nil, + "name": nil, } var snippetAllowlist = allowlist{ - "snippet": nil, + "text": nil, "mimeType": nil, } @@ -171,6 +187,21 @@ func filterEmptyResults(results []any) []any { return out } +// filterEmptySnippets removes snippets where the text field is empty or missing. +func filterEmptySnippets(snippets []any) []any { + out := make([]any, 0, len(snippets)) + for _, s := range snippets { + m, ok := s.(map[string]any) + if !ok { + continue + } + if text, ok := m["text"].(string); ok && text != "" { + out = append(out, s) + } + } + return out +} + // filterSlice applies the allowlist to each element in a slice. func filterSlice(s []any, al allowlist) []any { out := make([]any, len(s)) diff --git a/internal/output/cleanse_snapshot_test.go b/internal/output/cleanse_snapshot_test.go new file mode 100644 index 0000000..dc5b3c5 --- /dev/null +++ b/internal/output/cleanse_snapshot_test.go @@ -0,0 +1,135 @@ +package output + +import ( + "encoding/json" + "os" + "path/filepath" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestCleanseSearchResponse_Snapshots(t *testing.T) { + fixtures := []struct { + name string + rawFile string + wantFile string + }{ + {"people query", "raw_people.json", "cleansed_people.json"}, + {"jira query", "raw_jira.json", "cleansed_jira.json"}, + {"github query", "raw_github.json", "cleansed_github.json"}, + {"mixed query", "raw_mixed.json", "cleansed_mixed.json"}, + } + + for _, tt := range fixtures { + t.Run(tt.name, func(t *testing.T) { + rawBytes, err := os.ReadFile(filepath.Join("testdata", tt.rawFile)) + require.NoError(t, err) + + wantBytes, err := os.ReadFile(filepath.Join("testdata", tt.wantFile)) + require.NoError(t, err) + + var rawInput map[string]any + require.NoError(t, json.Unmarshal(rawBytes, &rawInput)) + + got, err := CleanseSearchResponse(rawInput) + require.NoError(t, err) + + gotBytes, err := json.MarshalIndent(got, "", " ") + require.NoError(t, err) + + var want any + require.NoError(t, json.Unmarshal(wantBytes, &want)) + wantNorm, err := json.MarshalIndent(want, "", " ") + require.NoError(t, err) + + if !assert.JSONEq(t, string(wantNorm), string(gotBytes)) { + // On failure, write the actual output for easy diffing + actualPath := filepath.Join("testdata", "actual_"+tt.wantFile) + _ = os.WriteFile(actualPath, append(gotBytes, '\n'), 0600) + t.Logf("Actual output written to %s for diffing", actualPath) + } + }) + } +} + +func TestCleanseSearchResponse_SnapshotStructure(t *testing.T) { + allowedResponse := map[string]bool{"results": true, "cursor": true, "hasMoreResults": true, "requestID": true} + allowedResult := map[string]bool{"title": true, "url": true, "snippets": true, "document": true} + allowedDocument := map[string]bool{"title": true, "url": true, "datasource": true, "docType": true, "metadata": true} + allowedMetadata := map[string]bool{ + "datasource": true, "objectType": true, "author": true, "owner": true, + "assignedTo": true, "updatedBy": true, "updateTime": true, "createTime": true, + "status": true, "priority": true, "container": true, "datasourceId": true, + } + allowedPerson := map[string]bool{"name": true} + allowedSnippet := map[string]bool{"text": true, "mimeType": true} + + fixtures := []string{"raw_people.json", "raw_jira.json", "raw_github.json", "raw_mixed.json"} + + for _, fixture := range fixtures { + t.Run(fixture, func(t *testing.T) { + rawBytes, err := os.ReadFile(filepath.Join("testdata", fixture)) + require.NoError(t, err) + + var rawInput map[string]any + require.NoError(t, json.Unmarshal(rawBytes, &rawInput)) + + got, err := CleanseSearchResponse(rawInput) + require.NoError(t, err) + + m := got.(map[string]any) + + // Response level + for k := range m { + assert.True(t, allowedResponse[k], "disallowed response key: %s", k) + } + + results, _ := m["results"].([]any) + for i, r := range results { + rm := r.(map[string]any) + + // Result level + for k := range rm { + assert.True(t, allowedResult[k], "result[%d] disallowed key: %s", i, k) + } + + // Document level + if doc, ok := rm["document"].(map[string]any); ok { + for k := range doc { + assert.True(t, allowedDocument[k], "result[%d].document disallowed key: %s", i, k) + } + + // Metadata level + if meta, ok := doc["metadata"].(map[string]any); ok { + for k := range meta { + assert.True(t, allowedMetadata[k], "result[%d].metadata disallowed key: %s", i, k) + } + + // Person fields + for _, pf := range []string{"author", "owner", "assignedTo", "updatedBy"} { + if p, ok := meta[pf].(map[string]any); ok { + for k := range p { + assert.True(t, allowedPerson[k], "result[%d].metadata.%s disallowed key: %s", i, pf, k) + } + } + } + } + } + + // Snippet level + if snippets, ok := rm["snippets"].([]any); ok { + for j, s := range snippets { + sm := s.(map[string]any) + for k := range sm { + assert.True(t, allowedSnippet[k], "result[%d].snippets[%d] disallowed key: %s", i, j, k) + } + text, _ := sm["text"].(string) + assert.NotEmpty(t, text, "result[%d].snippets[%d] has empty text", i, j) + } + } + } + }) + } +} diff --git a/internal/output/cleanse_test.go b/internal/output/cleanse_test.go index 6c44a56..3e51f39 100644 --- a/internal/output/cleanse_test.go +++ b/internal/output/cleanse_test.go @@ -48,9 +48,15 @@ func TestCleanseSearchResponse_StripsUIFields(t *testing.T) { "url": "https://example.com/doc", "snippets": []any{ map[string]any{ - "snippet": "The platform team will focus on...", + "text": "The platform team will focus on...", + "snippet": "deprecated snippet value", + "mimeType": "text/plain", + "snippetTextOrdering": float64(1), + "ranges": []any{map[string]any{"start": float64(0), "end": float64(5)}}, + }, + map[string]any{ + "text": "", "mimeType": "text/plain", - "ranges": []any{map[string]any{"start": float64(0), "end": float64(5)}}, }, }, "document": map[string]any{ @@ -69,15 +75,33 @@ func TestCleanseSearchResponse_StripsUIFields(t *testing.T) { "objectType": "page", "author": map[string]any{ "name": "Steve", - "email": "steve@co.com", "obfuscatedId": "ABC123", "metadata": map[string]any{"loggingId": "XYZ"}, }, + "owner": map[string]any{ + "name": "Jane", + "obfuscatedId": "DEF456", + "metadata": map[string]any{"loggingId": "UVW"}, + }, + "assignedTo": map[string]any{ + "name": "Bob", + "obfuscatedId": "GHI789", + }, + "updatedBy": map[string]any{ + "name": "Alice", + "obfuscatedId": "JKL012", + }, "updateTime": "2026-03-28T14:30:00Z", "createTime": "2026-01-15T09:00:00Z", + "status": "In Progress", + "priority": "P1", "container": "Engineering Space", + "datasourceId": "JIRA-123", "interactions": map[string]any{"numViews": float64(42)}, "documentCategory": "PUBLISHED_CONTENT", + "loggingId": "log_abc", + "documentId": "did_123", + "visibility": map[string]any{"level": "PUBLIC"}, "pins": []any{}, "collections": []any{}, }, @@ -131,13 +155,15 @@ func TestCleanseSearchResponse_StripsUIFields(t *testing.T) { assert.NotContains(t, r, "attachments") assert.NotContains(t, r, "clusterType") - // Snippets: only snippet and mimeType + // Snippets: only text and mimeType, empty snippets filtered out snippets := r["snippets"].([]any) - require.Len(t, snippets, 1) + require.Len(t, snippets, 1, "empty snippet should be filtered out") snip := snippets[0].(map[string]any) - assert.Contains(t, snip, "snippet") + assert.Contains(t, snip, "text") assert.Contains(t, snip, "mimeType") + assert.NotContains(t, snip, "snippet", "deprecated snippet field should be stripped") assert.NotContains(t, snip, "ranges") + assert.NotContains(t, snip, "snippetTextOrdering") // Document: only allowed keys doc := r["document"].(map[string]any) @@ -153,25 +179,47 @@ func TestCleanseSearchResponse_StripsUIFields(t *testing.T) { assert.NotContains(t, doc, "parentDocument") assert.NotContains(t, doc, "sections") - // Document metadata: only allowed keys + // Document metadata: allowed keys kept, noise stripped meta := doc["metadata"].(map[string]any) assert.Contains(t, meta, "datasource") assert.Contains(t, meta, "objectType") assert.Contains(t, meta, "author") + assert.Contains(t, meta, "owner") + assert.Contains(t, meta, "assignedTo") + assert.Contains(t, meta, "updatedBy") assert.Contains(t, meta, "updateTime") assert.Contains(t, meta, "createTime") - assert.NotContains(t, meta, "container") + assert.Contains(t, meta, "status") + assert.Contains(t, meta, "priority") + assert.Contains(t, meta, "container") + assert.Contains(t, meta, "datasourceId") assert.NotContains(t, meta, "interactions") assert.NotContains(t, meta, "documentCategory") + assert.NotContains(t, meta, "loggingId") + assert.NotContains(t, meta, "documentId") + assert.NotContains(t, meta, "visibility") assert.NotContains(t, meta, "pins") assert.NotContains(t, meta, "collections") - // Author filtered to name and email only + // Author filtered to name only (email doesn't exist in API responses) author := meta["author"].(map[string]any) assert.Equal(t, "Steve", author["name"]) - assert.Equal(t, "steve@co.com", author["email"]) - assert.NotContains(t, author, "metadata") assert.NotContains(t, author, "obfuscatedId") + assert.NotContains(t, author, "metadata") + + // Other person fields also filtered to name only + owner := meta["owner"].(map[string]any) + assert.Equal(t, "Jane", owner["name"]) + assert.NotContains(t, owner, "obfuscatedId") + assert.NotContains(t, owner, "metadata") + + assignedTo := meta["assignedTo"].(map[string]any) + assert.Equal(t, "Bob", assignedTo["name"]) + assert.NotContains(t, assignedTo, "obfuscatedId") + + updatedBy := meta["updatedBy"].(map[string]any) + assert.Equal(t, "Alice", updatedBy["name"]) + assert.NotContains(t, updatedBy, "obfuscatedId") } func TestCleanseSearchResponse_EmptyResults(t *testing.T) { @@ -294,7 +342,7 @@ func TestCleanseSearchResponse_SDKStruct(t *testing.T) { } func TestWarnStrippedFields_AllowedFields(t *testing.T) { - stripped := WarnStrippedFields("results.title,results.url,results.document.datasource") + stripped := WarnStrippedFields("results.title,results.url,results.document.datasource,results.document.metadata.status,results.document.metadata.owner.name") assert.Empty(t, stripped) } @@ -323,6 +371,64 @@ func TestWarnStrippedFields_Empty(t *testing.T) { assert.Nil(t, stripped) } +func TestCleanseSearchResponse_FiltersEmptySnippets(t *testing.T) { + input := map[string]any{ + "results": []any{ + map[string]any{ + "title": "Doc With Snippets", + "url": "https://example.com", + "document": map[string]any{ + "title": "Doc", + "datasource": "gdrive", + }, + "snippets": []any{ + map[string]any{"text": "real content", "mimeType": "text/plain"}, + map[string]any{"text": "", "mimeType": "text/plain"}, + map[string]any{"mimeType": "text/plain"}, + map[string]any{"text": "another real one", "mimeType": "text/html"}, + }, + }, + }, + } + + result, err := CleanseSearchResponse(input) + require.NoError(t, err) + + m := result.(map[string]any) + results := m["results"].([]any) + r := results[0].(map[string]any) + snippets := r["snippets"].([]any) + require.Len(t, snippets, 2, "should keep only snippets with non-empty text") + assert.Equal(t, "real content", snippets[0].(map[string]any)["text"]) + assert.Equal(t, "another real one", snippets[1].(map[string]any)["text"]) +} + +func TestCleanseSearchResponse_AllSnippetsEmptyRemovesKey(t *testing.T) { + input := map[string]any{ + "results": []any{ + map[string]any{ + "title": "Doc", + "url": "https://example.com", + "document": map[string]any{ + "title": "Doc", + "datasource": "gdrive", + }, + "snippets": []any{ + map[string]any{"text": "", "mimeType": "text/plain"}, + map[string]any{"text": "", "mimeType": "text/plain"}, + }, + }, + }, + } + + result, err := CleanseSearchResponse(input) + require.NoError(t, err) + + m := result.(map[string]any) + r := m["results"].([]any)[0].(map[string]any) + assert.NotContains(t, r, "snippets", "snippets key should be removed when all snippets are empty") +} + func TestCleanseSearchResponse_RoundTripsToJSON(t *testing.T) { input := map[string]any{ "results": []any{ diff --git a/internal/output/testdata/cleansed_github.json b/internal/output/testdata/cleansed_github.json new file mode 100644 index 0000000..7f938f2 --- /dev/null +++ b/internal/output/testdata/cleansed_github.json @@ -0,0 +1,194 @@ +{ + "results": [ + { + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md", + "snippets": [ + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# :bug: Bug Fix", + "mimeType": "text/plain" + } + ], + "document": { + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md", + "datasource": "github", + "docType": "file", + "metadata": { + "datasource": "github", + "objectType": "file", + "author": { + "name": "Steve Calvert" + }, + "owner": { + "name": "Steve Calvert" + }, + "assignedTo": { + "name": "Steve Calvert" + }, + "updatedBy": { + "name": "Chris Freeman" + }, + "updateTime": "2026-03-05T18:33:49Z", + "createTime": "2025-08-18T16:52:41Z", + "container": "/" + } + } + }, + { + "title": "chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373", + "snippets": [ + { + "text": "# \ud83d\udc1b Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# \ud83d\udc1b Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "# \ud83d\udc1b Bug Fix", + "mimeType": "text/plain" + }, + { + "text": "fix(theme): use import type for plugin type imports (#1292)", + "mimeType": "text/plain" + }, + { + "text": "fix: render inline enum values in anyOf schemas (#1286)", + "mimeType": "text/plain" + }, + { + "text": "fix: generate correct examples for different request content types (#1284)", + "mimeType": "text/plain" + } + ], + "document": { + "title": "chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373", + "datasource": "github", + "docType": "pull", + "metadata": { + "datasource": "github", + "objectType": "pull", + "author": { + "name": "dependabot[bot]" + }, + "owner": { + "name": "dependabot[bot]" + }, + "assignedTo": { + "name": "dependabot[bot]" + }, + "updateTime": "2026-03-23T16:50:51Z", + "createTime": "2026-03-01T05:03:12Z", + "status": "merged", + "container": "gleanwork/glean-developer-site", + "datasourceId": "373" + } + } + }, + { + "title": "chore(deps): bump marked from 16.4.1 to 17.0.1", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374", + "snippets": [ + { + "text": "# Bug Fixes", + "mimeType": "text/plain" + }, + { + "text": "# Bug Fixes", + "mimeType": "text/plain" + }, + { + "text": "# Bug Fixes", + "mimeType": "text/plain" + }, + { + "text": "fix block elements in task item (#3828) (921ee22)", + "mimeType": "text/plain" + }, + { + "text": "921ee22 fix: fix block elements in task item (#3828)", + "mimeType": "text/plain" + }, + { + "text": "Bumps marked from 16.4.1 to 17.0.1.", + "mimeType": "text/plain" + }, + { + "text": "Release notes", + "mimeType": "text/plain" + } + ], + "document": { + "title": "chore(deps): bump marked from 16.4.1 to 17.0.1", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374", + "datasource": "github", + "docType": "pull", + "metadata": { + "datasource": "github", + "objectType": "pull", + "author": { + "name": "dependabot[bot]" + }, + "owner": { + "name": "dependabot[bot]" + }, + "assignedTo": { + "name": "dependabot[bot]" + }, + "updateTime": "2026-03-22T22:28:35Z", + "createTime": "2026-03-01T05:03:41Z", + "status": "merged", + "container": "gleanwork/glean-developer-site", + "datasourceId": "374" + } + } + } + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MywiUmFuZG9tQ2FjaGVLZXkiOiIxODExNzYyMTI4MzIwNTQ2ODAiLCJQYWdlRHVwZU1ldGFkYXRhIjp7IlBhZ2VJZCI6MSwiUmVzdWx0VG9rZW5zIjpudWxsfX0=", + "hasMoreResults": true, + "requestID": "07847821980a125b7215e961bbdbb7f9" +} diff --git a/internal/output/testdata/cleansed_jira.json b/internal/output/testdata/cleansed_jira.json new file mode 100644 index 0000000..4049d05 --- /dev/null +++ b/internal/output/testdata/cleansed_jira.json @@ -0,0 +1,114 @@ +{ + "results": [ + { + "title": " Can someone help me review Servicenow issues for FB? they are having issues pulling incidents/problems/service requests which are not appearing searchable or providing any metrics. or returning part...", + "url": "https://askscio.atlassian.net/browse/EE-19304", + "snippets": [ + { + "text": "\"Expecting basic queries like number of incidents reported in a time bound or number of P1/P2 reported in a timebound are important for us as metric query. ", + "mimeType": "text/plain" + }, + { + "text": "May be reporting is also a need for us. ", + "mimeType": "text/plain" + }, + { + "text": ".service-now.com/incident?", + "mimeType": "text/plain" + } + ], + "document": { + "title": " Can someone help me review Servicenow issues for FB? they are having issues pulling incidents/problems/service requests which are not appearing searchable or providing any metrics. or returning part...", + "url": "https://askscio.atlassian.net/browse/EE-19304", + "datasource": "jira", + "docType": "Escalation", + "metadata": { + "datasource": "jira", + "objectType": "Escalation", + "author": { + "name": "OnCall Scio" + }, + "owner": { + "name": "Iliana Portugal" + }, + "assignedTo": { + "name": "Iliana Portugal" + }, + "updateTime": "2026-02-11T21:03:11Z", + "createTime": "2025-12-04T23:32:13Z", + "status": "Done", + "priority": "Medium", + "container": "Eng Escalations", + "datasourceId": "EE-19304" + } + } + }, + { + "title": " Hi Team, `Linkedin` has reported that for specifi...", + "url": "https://askscio.atlassian.net/browse/EN-305579", + "snippets": [ + { + "text": "\"title\": \"Incident Report\", \"type\": \"object\", \"properties\": { \"incident_id\": { \"type\": \"string\", \"description\": \"Unique identifier for the incident\", \"examples\": \"incident-1816\" }, \"title\": { \"type\": \"string\", \"description\": \"Title of the incident\"", + "mimeType": "text/plain" + } + ], + "document": { + "title": " Hi Team, `Linkedin` has reported that for specifi...", + "url": "https://askscio.atlassian.net/browse/EN-305579", + "datasource": "jira", + "docType": "Task", + "metadata": { + "datasource": "jira", + "objectType": "Task", + "author": { + "name": "Eddie Zhou" + }, + "updateTime": "2024-11-04T17:00:38Z", + "createTime": "2024-10-22T09:16:20Z", + "status": "Debugged", + "priority": "Medium", + "container": "Engineering", + "datasourceId": "EN-305579" + } + } + }, + { + "title": "GleanChatError [project_id: glean-snowflake, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1495473", + "snippets": [ + { + "text": "Investigated the GleanChatError (pyagents_StreamingConnectionError) alert for project `glean-snowflake` around 2026-03-03 01:31Z; the alert shows ~11 chat errors just above the 10-error threshold, with no separate incident reported for this tenant.", + "mimeType": "text/plain" + } + ], + "document": { + "title": "GleanChatError [project_id: glean-snowflake, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1495473", + "datasource": "jira", + "docType": "Bug", + "metadata": { + "datasource": "jira", + "objectType": "Bug", + "author": { + "name": "OnCall Scio" + }, + "owner": { + "name": "Nick Wang" + }, + "assignedTo": { + "name": "Nick Wang" + }, + "updateTime": "2026-03-04T03:33:45Z", + "createTime": "2026-03-03T01:31:05Z", + "status": "Closed", + "priority": "Low", + "container": "Engineering", + "datasourceId": "EN-1495473" + } + } + } + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MywiUmFuZG9tQ2FjaGVLZXkiOiI0MTMwODM5MzUyNDM5MTQ5NzU4IiwiUGFnZUR1cGVNZXRhZGF0YSI6eyJQYWdlSWQiOjEsIlJlc3VsdFRva2VucyI6bnVsbH0sIkN1cnNvckNhY2hlS2V5IjoiNTY4MmUxZmYtNTdiMi00ZDBiLWE1OTEtYjhkZGU3YjY0NzhiIn0=", + "hasMoreResults": true, + "requestID": "95eb7a9ab21eb00bfd512c62f0b55357" +} diff --git a/internal/output/testdata/cleansed_mixed.json b/internal/output/testdata/cleansed_mixed.json new file mode 100644 index 0000000..5ac017e --- /dev/null +++ b/internal/output/testdata/cleansed_mixed.json @@ -0,0 +1,82 @@ +{ + "results": [ + { + "title": "R&D Execution Plan for FY26 Q4 (Nov/Dec/Jan)", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A", + "snippets": [ + { + "text": "Q4 is where we turn bold bets into business results\u2014where we land the users, hit the KPI targets in our FY26 plan. Q4 is also the quarter where we set ourselves up for an even better FY27 to take Glean to the next level. ", + "mimeType": "text/plain" + } + ], + "document": { + "title": "R&D Execution Plan for FY26 Q4 (Nov/Dec/Jan)", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A", + "datasource": "gdrive", + "docType": "Document", + "metadata": { + "datasource": "gdrive", + "objectType": "Document", + "author": { + "name": "Jen Zagofsky" + }, + "owner": { + "name": "Jen Zagofsky" + }, + "assignedTo": { + "name": "Jen Zagofsky" + }, + "updatedBy": { + "name": "Onder Polat" + }, + "updateTime": "2026-01-17T00:50:21Z", + "createTime": "2025-11-03T02:27:32Z", + "datasourceId": "1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A" + } + } + }, + { + "title": "Thread between Escalations, Wayne, and 2 others", + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252236153429?thread_ts=1775252236.153429&cid=C0ADKNJER1N", + "document": { + "title": "Thread between Escalations, Wayne, and 2 others", + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252236153429?thread_ts=1775252236.153429&cid=C0ADKNJER1N", + "datasource": "slack", + "docType": "Conversation", + "metadata": { + "datasource": "slack", + "objectType": "Conversation", + "author": { + "name": "chris.\u200bfreeman" + }, + "updateTime": "1970-01-01T00:00:00Z", + "createTime": "2026-04-03T21:37:16Z", + "container": "help-mcp-server" + } + } + }, + { + "title": "Sharad", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081523150139?thread_ts=1775081523.150139&cid=C0A74DX9Q8N", + "document": { + "title": "Sharad", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081523150139?thread_ts=1775081523.150139&cid=C0A74DX9Q8N", + "datasource": "slack", + "docType": "Conversation", + "metadata": { + "datasource": "slack", + "objectType": "Conversation", + "author": { + "name": "Sharad Jain" + }, + "updateTime": "1970-01-01T00:00:00Z", + "createTime": "2026-04-01T22:12:03Z", + "container": "team-pact" + } + } + } + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MzEsIlJhbmRvbUNhY2hlS2V5IjoiNTU2MTEyODU3ODkzMjk1NzA5NyIsIlBhZ2VEdXBlTWV0YWRhdGEiOnsiUGFnZUlkIjoxLCJSZXN1bHRUb2tlbnMiOm51bGx9LCJDdXJzb3JDYWNoZUtleSI6ImIxY2QyMzA3LTVmNmQtNDViZC04YTM0LWMxMTI5ZWQ4NDM1YyJ9", + "hasMoreResults": true, + "requestID": "59a6ec2006d88492956ab9c42480d885" +} diff --git a/internal/output/testdata/cleansed_people.json b/internal/output/testdata/cleansed_people.json new file mode 100644 index 0000000..d1272ba --- /dev/null +++ b/internal/output/testdata/cleansed_people.json @@ -0,0 +1,107 @@ +{ + "results": [ + { + "title": "Glean Platform: Primitives", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw", + "snippets": [ + { + "text": "Author: Aryaman GulatiSteve Calvert", + "mimeType": "text/plain" + }, + { + "text": "# Platform Primitives", + "mimeType": "text/plain" + }, + { + "text": "# Glean Platform: Primitives", + "mimeType": "text/plain" + }, + { + "text": "Status: Draft", + "mimeType": "text/plain" + }, + { + "text": "Last updated: Mar 30, 2026", + "mimeType": "text/plain" + }, + { + "text": "# A Note to Readers", + "mimeType": "text/plain" + }, + { + "text": "This document is structured for two reading speeds. Sections 1 through 4 (roughly 6 pages)", + "mimeType": "text/plain" + } + ], + "document": { + "title": "Glean Platform: Primitives", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw", + "datasource": "gdrive", + "docType": "Document", + "metadata": { + "datasource": "gdrive", + "objectType": "Document", + "author": { + "name": "Steve Calvert" + }, + "owner": { + "name": "Steve Calvert" + }, + "assignedTo": { + "name": "Steve Calvert" + }, + "updatedBy": { + "name": "Richard Chao" + }, + "updateTime": "2026-04-04T20:16:04Z", + "createTime": "2026-02-15T20:07:07Z", + "container": "Glean Platform", + "datasourceId": "1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw" + } + } + }, + { + "title": "Thread between Harshi and Steve", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775149112810579?thread_ts=1775149112.810579&cid=C0A74DX9Q8N", + "document": { + "title": "Thread between Harshi and Steve", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775149112810579?thread_ts=1775149112.810579&cid=C0A74DX9Q8N", + "datasource": "slack", + "docType": "Conversation", + "metadata": { + "datasource": "slack", + "objectType": "Conversation", + "author": { + "name": "Harshi Murthy" + }, + "updateTime": "1970-01-01T00:00:00Z", + "createTime": "2026-04-02T16:58:32Z", + "container": "team-pact" + } + } + }, + { + "title": "Thread between Sharad and Steve", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1774477110213549?thread_ts=1774477110.213549&cid=C0A74DX9Q8N", + "document": { + "title": "Thread between Sharad and Steve", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1774477110213549?thread_ts=1774477110.213549&cid=C0A74DX9Q8N", + "datasource": "slack", + "docType": "Conversation", + "metadata": { + "datasource": "slack", + "objectType": "Conversation", + "author": { + "name": "Sharad Jain" + }, + "updateTime": "1970-01-01T00:00:00Z", + "createTime": "2026-03-25T22:18:30Z", + "container": "team-pact" + } + } + } + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MSwiUmFuZG9tQ2FjaGVLZXkiOiIyMzk4NDcyMDUyOTIzMjIzMDE2IiwiUGFnZUR1cGVNZXRhZGF0YSI6eyJQYWdlSWQiOjEsIlJlc3VsdFRva2VucyI6bnVsbH0sIkN1cnNvckNhY2hlS2V5IjoiYWU1ZWJiMDUtOWFmZC00ZjhiLWI1MWQtY2Y4ODk5Njk2Y2RiIiwiTnVtTm9uQW5zd2VyU3RydWN0dXJlZFJlc3VsdHNTaG93biI6MX0=", + "hasMoreResults": true, + "requestID": "0b4a02b33963921d3613d0906ceb5d1d" +} diff --git a/internal/output/testdata/raw_github.json b/internal/output/testdata/raw_github.json new file mode 100644 index 0000000..05e9715 --- /dev/null +++ b/internal/output/testdata/raw_github.json @@ -0,0 +1,2791 @@ +{ + "trackingToken": "PV4ns4Xu4eKYsC89", + "sessionInfo": { + "lastQuery": "bug fix", + "lastSeen": "2026-04-06T15:33:04.038798669Z", + "sessionTrackingToken": "NvNzxhDf07dHxkDk", + "tabId": "2DWZpbi8uNDooFxv" + }, + "results": [ + { + "allClusteredResults": [ + { + "clusterType": "TITLE", + "clusteredResults": [ + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_9185412113421778106", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_13744570996844310216", + "createTime": "2025-03-13T19:59:19Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_9185412113421778106", + "interactions": {}, + "loggingId": "E1D59B3B41AEE97ADB164819E20B2300", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "updateTime": "2026-03-06T21:29:01Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "2B5733A8EBED0D376CE1C88878E678CD" + }, + "name": "github-actions[bot]", + "obfuscatedId": "2B5733A8EBED0D376CE1C88878E678CD" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_13744570996844310216", + "title": "gleanwork/mcp-server", + "url": "https://github.com/gleanwork/mcp-server/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-server/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmYKEFBWNG5zNFh1NGVLWXNDODkQARonR0lUSFVCX1dISlFGT0VfZmlsZV85MTg1NDEyMTEzNDIxNzc4MTA2IgZnaXRodWIqBmdpdGh1YjIEZmlsZToPQ09ERV9SRVBPU0lUT1JZSAE=", + "url": "https://github.com/gleanwork/mcp-server/blob/main/CHANGELOG.md" + }, + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_15285284456353613836", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_9005665199494677741", + "createTime": "2025-11-27T03:57:10Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_15285284456353613836", + "interactions": {}, + "loggingId": "86075FC661F5DB507B0C795E4F4F035D", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "updateTime": "2026-03-18T04:12:23Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "25E0E1ADAF85F1FDC81654935A8AA505" + }, + "name": "Nathaniel Furniss", + "obfuscatedId": "25E0E1ADAF85F1FDC81654935A8AA505" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_9005665199494677741", + "title": "gleanwork/mcp-server-tester", + "url": "https://github.com/gleanwork/mcp-server-tester/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-server-tester/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmcKEFBWNG5zNFh1NGVLWXNDODkQAhooR0lUSFVCX1dISlFGT0VfZmlsZV8xNTI4NTI4NDQ1NjM1MzYxMzgzNiIGZ2l0aHViKgZnaXRodWIyBGZpbGU6D0NPREVfUkVQT1NJVE9SWUgC", + "url": "https://github.com/gleanwork/mcp-server-tester/blob/main/CHANGELOG.md" + }, + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_file_6371341403856976898", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_file_9475819907560579220", + "createTime": "2026-02-06T20:47:40Z", + "datasource": "github", + "datasourceInstance": "github", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_file_6371341403856976898", + "interactions": {}, + "loggingId": "65DD6467B3B67D9D3BB07E7D36BB203A", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "updateTime": "2026-04-02T19:12:31Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "C737E23B6710C7FAB3A2B6A8FE64F8F9" + }, + "name": "github-actions[bot]", + "obfuscatedId": "C737E23B6710C7FAB3A2B6A8FE64F8F9" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_file_9475819907560579220", + "title": "askscio/claude-plugins-pact", + "url": "https://github.com/askscio/claude-plugins-pact/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/askscio/claude-plugins-pact/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,Cl4KEFBWNG5zNFh1NGVLWXNDODkQAxofR0lUSFVCX2ZpbGVfNjM3MTM0MTQwMzg1Njk3Njg5OCIGZ2l0aHViKgZnaXRodWIyBGZpbGU6D0NPREVfUkVQT1NJVE9SWUgD", + "url": "https://github.com/askscio/claude-plugins-pact/blob/main/CHANGELOG.md" + }, + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_17868761158975332940", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "name": "Travis Hoover", + "obfuscatedId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "name": "Travis Hoover", + "obfuscatedId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_17945622628423269026", + "createTime": "2025-12-10T19:43:37Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_17868761158975332940", + "interactions": {}, + "loggingId": "C934A3F21C7AB2AAF363BF948AEA4994", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "name": "Travis Hoover", + "obfuscatedId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "path": "/", + "updateTime": "2026-02-23T18:31:05Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_17945622628423269026", + "title": "gleanwork/claude-plugins", + "url": "https://github.com/gleanwork/claude-plugins/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/claude-plugins/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmcKEFBWNG5zNFh1NGVLWXNDODkQBBooR0lUSFVCX1dISlFGT0VfZmlsZV8xNzg2ODc2MTE1ODk3NTMzMjk0MCIGZ2l0aHViKgZnaXRodWIyBGZpbGU6D0NPREVfUkVQT1NJVE9SWUgE", + "url": "https://github.com/gleanwork/claude-plugins/blob/main/CHANGELOG.md" + } + ], + "visibleCountHint": 3 + } + ], + "clusterType": "SIMILAR", + "clusteredResults": [ + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_9185412113421778106", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_13744570996844310216", + "createTime": "2025-03-13T19:59:19Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_9185412113421778106", + "interactions": {}, + "loggingId": "E1D59B3B41AEE97ADB164819E20B2300", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "updateTime": "2026-03-06T21:29:01Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "2B5733A8EBED0D376CE1C88878E678CD" + }, + "name": "github-actions[bot]", + "obfuscatedId": "2B5733A8EBED0D376CE1C88878E678CD" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_13744570996844310216", + "title": "gleanwork/mcp-server", + "url": "https://github.com/gleanwork/mcp-server/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-server/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmYKEFBWNG5zNFh1NGVLWXNDODkQARonR0lUSFVCX1dISlFGT0VfZmlsZV85MTg1NDEyMTEzNDIxNzc4MTA2IgZnaXRodWIqBmdpdGh1YjIEZmlsZToPQ09ERV9SRVBPU0lUT1JZSAE=", + "url": "https://github.com/gleanwork/mcp-server/blob/main/CHANGELOG.md" + }, + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_15285284456353613836", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_9005665199494677741", + "createTime": "2025-11-27T03:57:10Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_15285284456353613836", + "interactions": {}, + "loggingId": "86075FC661F5DB507B0C795E4F4F035D", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "updateTime": "2026-03-18T04:12:23Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "25E0E1ADAF85F1FDC81654935A8AA505" + }, + "name": "Nathaniel Furniss", + "obfuscatedId": "25E0E1ADAF85F1FDC81654935A8AA505" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_9005665199494677741", + "title": "gleanwork/mcp-server-tester", + "url": "https://github.com/gleanwork/mcp-server-tester/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-server-tester/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmcKEFBWNG5zNFh1NGVLWXNDODkQAhooR0lUSFVCX1dISlFGT0VfZmlsZV8xNTI4NTI4NDQ1NjM1MzYxMzgzNiIGZ2l0aHViKgZnaXRodWIyBGZpbGU6D0NPREVfUkVQT1NJVE9SWUgC", + "url": "https://github.com/gleanwork/mcp-server-tester/blob/main/CHANGELOG.md" + }, + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_file_6371341403856976898", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_file_9475819907560579220", + "createTime": "2026-02-06T20:47:40Z", + "datasource": "github", + "datasourceInstance": "github", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_file_6371341403856976898", + "interactions": {}, + "loggingId": "65DD6467B3B67D9D3BB07E7D36BB203A", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "updateTime": "2026-04-02T19:12:31Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "C737E23B6710C7FAB3A2B6A8FE64F8F9" + }, + "name": "github-actions[bot]", + "obfuscatedId": "C737E23B6710C7FAB3A2B6A8FE64F8F9" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_file_9475819907560579220", + "title": "askscio/claude-plugins-pact", + "url": "https://github.com/askscio/claude-plugins-pact/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/askscio/claude-plugins-pact/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,Cl4KEFBWNG5zNFh1NGVLWXNDODkQAxofR0lUSFVCX2ZpbGVfNjM3MTM0MTQwMzg1Njk3Njg5OCIGZ2l0aHViKgZnaXRodWIyBGZpbGU6D0NPREVfUkVQT1NJVE9SWUgD", + "url": "https://github.com/askscio/claude-plugins-pact/blob/main/CHANGELOG.md" + }, + { + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_17868761158975332940", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "name": "Travis Hoover", + "obfuscatedId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "name": "Travis Hoover", + "obfuscatedId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_17945622628423269026", + "createTime": "2025-12-10T19:43:37Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_17868761158975332940", + "interactions": {}, + "loggingId": "C934A3F21C7AB2AAF363BF948AEA4994", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "name": "Travis Hoover", + "obfuscatedId": "0CD189F7687EFCFECD9AAE99A3A5949F" + }, + "path": "/", + "updateTime": "2026-02-23T18:31:05Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_17945622628423269026", + "title": "gleanwork/claude-plugins", + "url": "https://github.com/gleanwork/claude-plugins/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/claude-plugins/blob/main/CHANGELOG.md" + }, + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmcKEFBWNG5zNFh1NGVLWXNDODkQBBooR0lUSFVCX1dISlFGT0VfZmlsZV8xNzg2ODc2MTE1ODk3NTMzMjk0MCIGZ2l0aHViKgZnaXRodWIyBGZpbGU6D0NPREVfUkVQT1NJVE9SWUgE", + "url": "https://github.com/gleanwork/claude-plugins/blob/main/CHANGELOG.md" + } + ], + "document": { + "datasource": "github", + "docType": "file", + "id": "GITHUB_WHJQFOE_file_13251854672845143194", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "/", + "containerId": "GITHUB_WHJQFOE_file_17941497905013434290", + "createTime": "2025-08-18T16:52:41Z", + "datasource": "github", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CODE_REPOSITORY", + "documentId": "GITHUB_WHJQFOE_file_13251854672845143194", + "interactions": {}, + "loggingId": "443F63E9AE4E27C2F517D1564CD641E8", + "mimeType": "file", + "objectType": "file", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "path": "/", + "superContainerId": "GITHUB_WHJQFOE_repo_52043B0DE6B9B63232B5FE1159C0FD25", + "updateTime": "2026-03-05T18:33:49Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "AE7935F5BA9A79CA8FD7799359D23E54" + }, + "name": "Chris Freeman", + "obfuscatedId": "AE7935F5BA9A79CA8FD7799359D23E54" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "dir", + "id": "GITHUB_WHJQFOE_file_17941497905013434290", + "title": "gleanwork/mcp-config", + "url": "https://github.com/gleanwork/mcp-config/tree/main/" + }, + "title": "CHANGELOG.md", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 1, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 3, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 4, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 5, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 6, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 7, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 8, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 9, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 3, + "type": "BOLD" + }, + { + "endIndex": 15, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 10, + "text": "# :bug: Bug Fix", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md#:~:text=%23%20:bug:%20Bug%20Fix" + } + ], + "title": "CHANGELOG.md", + "trackingToken": "PV4ns4Xu4eKYsC89,CmMKEFBWNG5zNFh1NGVLWXNDODkaKEdJVEhVQl9XSEpRRk9FX2ZpbGVfMTMyNTE4NTQ2NzI4NDUxNDMxOTQiBmdpdGh1YioGZ2l0aHViMgRmaWxlOg9DT0RFX1JFUE9TSVRPUlk=", + "url": "https://github.com/gleanwork/mcp-config/blob/main/CHANGELOG.md" + }, + { + "allClusteredResults": [ + { + "clusterType": "AUTHOR_PREFIX", + "clusteredResults": [ + { + "document": { + "datasource": "github", + "docType": "pull", + "id": "GITHUB_WHJQFOE_pull_18282062522657379483", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "container": "gleanwork/glean-developer-site", + "containerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "createTime": "2026-04-01T05:12:32Z", + "customData": { + "COMMIT_HASH": { + "stringValue": "a3f35fabbf20d9442d59b13ac9800fef469025dc" + }, + "srcBranch": { + "stringValue": "dependabot/npm_and_yarn/docusaurus-plugin-mcp-server-0.11.0" + } + }, + "datasource": "github", + "datasourceId": "451", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CHANGE_MANAGEMENT", + "documentId": "GITHUB_WHJQFOE_pull_18282062522657379483", + "interactions": {}, + "loggingId": "2D0963240626D4FBC3A2D72B471B4D46", + "mimeType": "pull", + "objectType": "pull", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "status": "open", + "superContainerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "updateTime": "2026-04-01T18:27:15Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "repo", + "id": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "title": "gleanwork/glean-developer-site", + "url": "https://github.com/gleanwork/glean-developer-site" + }, + "title": "chore(deps): bump docusaurus-plugin-mcp-server from 0.10.2 to 0.11.0", + "url": "https://github.com/gleanwork/glean-developer-site/pull/451" + }, + "title": "chore(deps): bump docusaurus-plugin-mcp-server from 0.10.2 to 0.11.0", + "trackingToken": "PV4ns4Xu4eKYsC89,CmsKEFBWNG5zNFh1NGVLWXNDODkQAhooR0lUSFVCX1dISlFGT0VfcHVsbF8xODI4MjA2MjUyMjY1NzM3OTQ4MyIGZ2l0aHViKgZnaXRodWIyBHB1bGw6EUNIQU5HRV9NQU5BR0VNRU5UQAFIAQ==", + "url": "https://github.com/gleanwork/glean-developer-site/pull/451" + } + ], + "visibleCountHint": 3 + } + ], + "clusterType": "SIMILAR", + "clusteredResults": [ + { + "document": { + "datasource": "github", + "docType": "pull", + "id": "GITHUB_WHJQFOE_pull_18282062522657379483", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "container": "gleanwork/glean-developer-site", + "containerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "createTime": "2026-04-01T05:12:32Z", + "customData": { + "COMMIT_HASH": { + "stringValue": "a3f35fabbf20d9442d59b13ac9800fef469025dc" + }, + "srcBranch": { + "stringValue": "dependabot/npm_and_yarn/docusaurus-plugin-mcp-server-0.11.0" + } + }, + "datasource": "github", + "datasourceId": "451", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CHANGE_MANAGEMENT", + "documentId": "GITHUB_WHJQFOE_pull_18282062522657379483", + "interactions": {}, + "loggingId": "2D0963240626D4FBC3A2D72B471B4D46", + "mimeType": "pull", + "objectType": "pull", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "status": "open", + "superContainerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "updateTime": "2026-04-01T18:27:15Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "repo", + "id": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "title": "gleanwork/glean-developer-site", + "url": "https://github.com/gleanwork/glean-developer-site" + }, + "title": "chore(deps): bump docusaurus-plugin-mcp-server from 0.10.2 to 0.11.0", + "url": "https://github.com/gleanwork/glean-developer-site/pull/451" + }, + "title": "chore(deps): bump docusaurus-plugin-mcp-server from 0.10.2 to 0.11.0", + "trackingToken": "PV4ns4Xu4eKYsC89,CmsKEFBWNG5zNFh1NGVLWXNDODkQAhooR0lUSFVCX1dISlFGT0VfcHVsbF8xODI4MjA2MjUyMjY1NzM3OTQ4MyIGZ2l0aHViKgZnaXRodWIyBHB1bGw6EUNIQU5HRV9NQU5BR0VNRU5UQAFIAQ==", + "url": "https://github.com/gleanwork/glean-developer-site/pull/451" + } + ], + "document": { + "datasource": "github", + "docType": "pull", + "id": "GITHUB_WHJQFOE_pull_50095087981686731", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "container": "gleanwork/glean-developer-site", + "containerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "createTime": "2026-03-01T05:03:12Z", + "customData": { + "COMMIT_HASH": { + "stringValue": "f9ad2e7b2e6981bedb210e0ea1836f648f8b93f5" + }, + "srcBranch": { + "stringValue": "dependabot/npm_and_yarn/docusaurus-plugin-openapi-docs-4.7.1" + } + }, + "datasource": "github", + "datasourceId": "373", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CHANGE_MANAGEMENT", + "documentId": "GITHUB_WHJQFOE_pull_50095087981686731", + "interactions": {}, + "loggingId": "9F43906B205B8025C18074F106E81C1B", + "mimeType": "pull", + "objectType": "pull", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "status": "merged", + "superContainerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "updateTime": "2026-03-23T16:50:51Z", + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "repo", + "id": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "title": "gleanwork/glean-developer-site", + "url": "https://github.com/gleanwork/glean-developer-site" + }, + "title": "chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 12, + "startIndex": 5, + "type": "BOLD" + } + ], + "snippet": "", + "text": "# 🐛 Bug Fix", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373#:~:text=%23%20%F0%9F%90%9B%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 12, + "startIndex": 5, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 4, + "text": "# 🐛 Bug Fix", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373#:~:text=%23%20%F0%9F%90%9B%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 12, + "startIndex": 5, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 5, + "text": "# 🐛 Bug Fix", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373#:~:text=%23%20%F0%9F%90%9B%20Bug%20Fix" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 3, + "startIndex": 0, + "type": "BOLD" + }, + { + "endIndex": 58, + "startIndex": 53, + "type": "LINK", + "url": "https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1292" + } + ], + "snippet": "", + "snippetTextOrdering": 1, + "text": "fix(theme): use import type for plugin type imports (#1292)", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373#:~:text=fix%28theme%29:%20use%20import%20type%20for%20plugin%20type%20imports%20%28%231292%29" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 3, + "startIndex": 0, + "type": "BOLD" + }, + { + "endIndex": 54, + "startIndex": 49, + "type": "LINK", + "url": "https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1286" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "fix: render inline enum values in anyOf schemas (#1286)", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373#:~:text=fix:%20render%20inline%20enum%20values%20in%20anyOf%20schemas%20%28%231286%29" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 3, + "startIndex": 0, + "type": "BOLD" + }, + { + "endIndex": 73, + "startIndex": 68, + "type": "LINK", + "url": "https://redirect.github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/1284" + } + ], + "snippet": "", + "snippetTextOrdering": 3, + "text": "fix: generate correct examples for different request content types (#1284)", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373#:~:text=fix:%20generate%20correct%20examples%20for%20different%20request%20content%20types%20%28%231284%29" + } + ], + "title": "chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1", + "trackingToken": "PV4ns4Xu4eKYsC89,CmYKEFBWNG5zNFh1NGVLWXNDODkQARolR0lUSFVCX1dISlFGT0VfcHVsbF81MDA5NTA4Nzk4MTY4NjczMSIGZ2l0aHViKgZnaXRodWIyBHB1bGw6EUNIQU5HRV9NQU5BR0VNRU5UQAE=", + "url": "https://github.com/gleanwork/glean-developer-site/pull/373" + }, + { + "document": { + "datasource": "github", + "docType": "pull", + "id": "GITHUB_WHJQFOE_pull_4816578243244382755", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "container": "gleanwork/glean-developer-site", + "containerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "createTime": "2026-03-01T05:03:41Z", + "customData": { + "COMMIT_HASH": { + "stringValue": "63e299645136130fb8b6d83e43fc67c703de2220" + }, + "srcBranch": { + "stringValue": "dependabot/npm_and_yarn/marked-17.0.1" + } + }, + "datasource": "github", + "datasourceId": "374", + "datasourceInstance": "github_whjqfoe", + "documentCategory": "CHANGE_MANAGEMENT", + "documentId": "GITHUB_WHJQFOE_pull_4816578243244382755", + "interactions": {}, + "loggingId": "30C479CFBC37CAC3DD9240DC756F92A9", + "mimeType": "pull", + "objectType": "pull", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "name": "dependabot[bot]", + "obfuscatedId": "9C1AB9C520EA870C342468759A4AEFCA" + }, + "status": "merged", + "superContainerId": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "updateTime": "2026-03-22T22:28:35Z", + "visibility": "PUBLIC_VISIBLE" + }, + "parentDocument": { + "datasource": "github", + "docType": "repo", + "id": "GITHUB_WHJQFOE_repo_A0F3044CF5F4A0D428527E74CE0AD641", + "title": "gleanwork/glean-developer-site", + "url": "https://github.com/gleanwork/glean-developer-site" + }, + "title": "chore(deps): bump marked from 16.4.1 to 17.0.1", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 11, + "startIndex": 2, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "# Bug Fixes", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=%23%20Bug%20Fixes" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 11, + "startIndex": 2, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 4, + "text": "# Bug Fixes", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=%23%20Bug%20Fixes" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 11, + "startIndex": 2, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 5, + "text": "# Bug Fixes", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=%23%20Bug%20Fixes" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 3, + "startIndex": 0, + "type": "BOLD" + }, + { + "endIndex": 38, + "startIndex": 33, + "type": "LINK", + "url": "https://redirect.github.com/markedjs/marked/issues/3828" + }, + { + "endIndex": 48, + "startIndex": 41, + "type": "LINK", + "url": "https://github.com/markedjs/marked/commit/921ee22102a4aa9c19286afd61610d1952ffca8e" + } + ], + "snippet": "", + "snippetTextOrdering": 3, + "text": "fix block elements in task item (#3828) (921ee22)", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=fix%20block%20elements%20in%20task%20item%20%28%233828%29%20%28921ee22%29" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 11, + "startIndex": 8, + "type": "BOLD" + }, + { + "endIndex": 16, + "startIndex": 13, + "type": "BOLD" + }, + { + "endIndex": 7, + "startIndex": 0, + "type": "LINK", + "url": "https://github.com/markedjs/marked/commit/921ee22102a4aa9c19286afd61610d1952ffca8e" + }, + { + "endIndex": 51, + "startIndex": 46, + "type": "LINK", + "url": "https://redirect.github.com/markedjs/marked/issues/3828" + } + ], + "snippet": "", + "snippetTextOrdering": 6, + "text": "921ee22 fix: fix block elements in task item (#3828)", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=921ee22%20fix:%20fix%20block%20elements%20in%20task%20item%20%28%233828%29" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 12, + "startIndex": 6, + "type": "LINK", + "url": "https://github.com/markedjs/marked" + } + ], + "snippet": "", + "text": "Bumps marked from 16.4.1 to 17.0.1.", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=Bumps%20marked%20from%2016.4.1%20to%2017.0.1." + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Release notes", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374#:~:text=Release%20notes" + } + ], + "title": "chore(deps): bump marked from 16.4.1 to 17.0.1", + "trackingToken": "PV4ns4Xu4eKYsC89,CmgKEFBWNG5zNFh1NGVLWXNDODkQAhonR0lUSFVCX1dISlFGT0VfcHVsbF80ODE2NTc4MjQzMjQ0MzgyNzU1IgZnaXRodWIqBmdpdGh1YjIEcHVsbDoRQ0hBTkdFX01BTkFHRU1FTlRAAg==", + "url": "https://github.com/gleanwork/glean-developer-site/pull/374" + } + ], + "errorInfo": {}, + "requestID": "07847821980a125b7215e961bbdbb7f9", + "backendTimeMillis": 866, + "experimentIds": [ + 222769, + 222770, + 196740, + 196741, + 169432, + 169433, + 223191, + 223192, + 223197, + 223198, + 221861, + 221863, + 1000, + 1001, + 71945, + 71946, + 220791, + 220792 + ], + "metadata": { + "rewrittenQuery": "bug fix", + "searchedQuery": "bug fix", + "searchedQueryWithoutNegation": "", + "originalQuery": "bug fix" + }, + "facetResults": [ + { + "sourceName": "last_updated_at", + "operatorName": "SelectSingle", + "buckets": [ + { + "count": 242426, + "value": { + "stringValue": "all", + "iconConfig": {} + } + }, + { + "count": 622, + "value": { + "stringValue": "past_day", + "iconConfig": {} + } + }, + { + "count": 20054, + "value": { + "stringValue": "past_month", + "iconConfig": {} + } + }, + { + "count": 8068, + "value": { + "stringValue": "past_week", + "iconConfig": {} + } + }, + { + "count": 120749, + "value": { + "stringValue": "past_year", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "from", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 37, + "value": { + "stringValue": "A. Stoewer", + "displayLabel": "A. Stoewer", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "AB", + "displayLabel": "AB", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "AJ Ka", + "displayLabel": "AJ Ka", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 14, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "isaiah.white@glean.com", + "displayLabel": "Isaiah White", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-11-10/9912333291584_3ccb886886c3cd05ff32_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "jeremy.patoc@glean.com", + "displayLabel": "Jeremy Patoc", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-01-05/10230066047267_f1d117b64ee1739e9d36_192.png" + } + } + }, + { + "count": 1054, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 57, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 1259, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 82, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 2568, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 2600, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 83, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "type", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 242168, + "value": { + "stringValue": "code", + "iconConfig": {} + } + }, + { + "count": 6799, + "value": { + "stringValue": "code_repository", + "iconConfig": {} + } + }, + { + "count": 73266, + "value": { + "stringValue": "commit", + "iconConfig": {} + } + }, + { + "count": 26, + "value": { + "stringValue": "dir", + "iconConfig": {} + } + }, + { + "count": 6773, + "value": { + "stringValue": "file", + "iconConfig": {} + } + }, + { + "count": 72, + "value": { + "stringValue": "issue", + "iconConfig": {} + } + }, + { + "count": 162129, + "value": { + "stringValue": "pull", + "iconConfig": {} + } + }, + { + "count": 160, + "value": { + "stringValue": "readme", + "iconConfig": {} + } + }, + { + "count": 72, + "value": { + "stringValue": "ticket", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "collection", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 5, + "value": { + "stringValue": "3p", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Accelerate \u0026 Adopt – role resources", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Coby Blair Onboarding", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "CollectionA", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Connector briefs", + "iconConfig": {} + } + }, + { + "count": 11, + "value": { + "stringValue": "Content based scheduled triggers", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Easter Eggs", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Eng \u0026 IT Day In The Life", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Github collection", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Intelligence Pipelines Karma", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "JamesKim Test collection", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 10, + "value": { + "stringValue": "Go Links", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "assignee", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 10, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 5, + "value": { + "stringValue": "abhijith@glean.com", + "displayLabel": "Abhijith Shankar", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2021-08-31/2423139596103_02e426d1d855dcf5f374_192.jpg" + } + } + }, + { + "count": 2, + "value": { + "stringValue": "Abhishek Garg", + "displayLabel": "Abhishek Garg", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "additya.popli@glean.com", + "displayLabel": "Additya Popli", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-03-28/8674291038594_7f4c8af5bbab836a690a_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 14, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 18, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 15, + "value": { + "stringValue": "sagar.vare@glean.com", + "displayLabel": "Sagar Vare", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2022-06-28/3744049286881_800c5099cf74ed6c8cbc_192.jpg" + } + } + }, + { + "count": 9, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 35, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "author", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "Aaditya Gururaj", + "displayLabel": "Aaditya Gururaj", + "iconConfig": {} + } + }, + { + "count": 36, + "value": { + "stringValue": "Aaheli Chattopadhyay", + "displayLabel": "Aaheli Chattopadhyay", + "iconConfig": {} + } + }, + { + "count": 1039, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 8, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "david.ross@glean.com", + "displayLabel": "David Ross", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-03-30/10812294091586_d1c39fd49a45b985c511_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "isaiah.white@glean.com", + "displayLabel": "Isaiah White", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-11-10/9912333291584_3ccb886886c3cd05ff32_192.jpg" + } + } + }, + { + "count": 514, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 57, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 854, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 28, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 1808, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 637, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 75, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "commenter", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "Aaditya Gururaj", + "displayLabel": "Aaditya Gururaj", + "iconConfig": {} + } + }, + { + "count": 25, + "value": { + "stringValue": "Aaheli Chattopadhyay", + "displayLabel": "Aaheli Chattopadhyay", + "iconConfig": {} + } + }, + { + "count": 1292, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 10, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "david.ross@glean.com", + "displayLabel": "David Ross", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-03-30/10812294091586_d1c39fd49a45b985c511_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "jeremy.patoc@glean.com", + "displayLabel": "Jeremy Patoc", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-01-05/10230066047267_f1d117b64ee1739e9d36_192.png" + } + } + }, + { + "count": 782, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 720, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 65, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 1227, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 2123, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 42, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "datasource", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "announcements", + "iconConfig": {} + } + }, + { + "count": 68, + "value": { + "stringValue": "answers", + "iconConfig": {} + } + }, + { + "count": 9, + "value": { + "stringValue": "collections", + "iconConfig": {} + } + }, + { + "count": 352, + "value": { + "stringValue": "confluence", + "displayLabel": "Confluence - Cloud", + "iconConfig": {} + } + }, + { + "count": 11, + "value": { + "stringValue": "debugendpoints", + "displayLabel": "DebugEndpoints", + "iconConfig": {} + } + }, + { + "count": 10, + "value": { + "stringValue": "developers", + "displayLabel": "Developers", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "figma", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "klue", + "displayLabel": "Klue", + "iconConfig": {} + } + }, + { + "count": 20, + "value": { + "stringValue": "rootly", + "displayLabel": "Rootly Integration", + "iconConfig": {} + } + }, + { + "count": 11, + "value": { + "stringValue": "spinnaker", + "displayLabel": "Spinnaker pipelines", + "iconConfig": {} + } + }, + { + "count": 1603, + "value": { + "stringValue": "wiz", + "displayLabel": "Wiz", + "iconConfig": {} + } + }, + { + "count": 242426, + "value": { + "stringValue": "github", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "label", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 2, + "value": { + "stringValue": "agent-update-from-zendesk", + "iconConfig": {} + } + }, + { + "count": 6, + "value": { + "stringValue": "agentic-migration-from-glean-docs", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "agentic-migration-from-glean-docs-old", + "iconConfig": {} + } + }, + { + "count": 406, + "value": { + "stringValue": "auto-approved-personal-experimental", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "AutoFix", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "automated", + "iconConfig": {} + } + }, + { + "count": 2006, + "value": { + "stringValue": "automated-pr", + "iconConfig": {} + } + }, + { + "count": 26, + "value": { + "stringValue": "Brave", + "iconConfig": {} + } + }, + { + "count": 23, + "value": { + "stringValue": "Exa Web Crawler", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "MVD-review", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Wiz-remediation", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "mentions", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 6, + "value": { + "stringValue": "Aaheli Chattopadhyay", + "displayLabel": "Aaheli Chattopadhyay", + "iconConfig": {} + } + }, + { + "count": 154, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 43, + "value": { + "stringValue": "Aasneh Prasad", + "displayLabel": "Aasneh Prasad", + "iconConfig": {} + } + }, + { + "count": 149, + "value": { + "stringValue": "abhijith@glean.com", + "displayLabel": "Abhijith Shankar", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2021-08-31/2423139596103_02e426d1d855dcf5f374_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 66, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 160, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 39, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 239, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 84, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "repository", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "askscio/aadi-SUM-Proxy", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "askscio/actionpackapiserver", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "askscio/adlc", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "askscio/aem-c2", + "iconConfig": {} + } + }, + { + "count": 9, + "value": { + "stringValue": "askscio/agents-claude-workspaces", + "iconConfig": {} + } + }, + { + "count": 93, + "value": { + "stringValue": "askscio/CSG-Demo-External-Search", + "iconConfig": {} + } + }, + { + "count": 197, + "value": { + "stringValue": "askscio/OpenSearch", + "iconConfig": {} + } + }, + { + "count": 33, + "value": { + "stringValue": "askscio/QuestionMonitor", + "iconConfig": {} + } + }, + { + "count": 6, + "value": { + "stringValue": "askscio/SQL-IDE-extension", + "iconConfig": {} + } + }, + { + "count": 17, + "value": { + "stringValue": "askscio/Support_Interview", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "askscio/VideoEditorPro", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "reviewer", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 2, + "value": { + "stringValue": "Aaditya Gururaj", + "displayLabel": "Aaditya Gururaj", + "iconConfig": {} + } + }, + { + "count": 59, + "value": { + "stringValue": "Aaheli Chattopadhyay", + "displayLabel": "Aaheli Chattopadhyay", + "iconConfig": {} + } + }, + { + "count": 1686, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 7, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 2, + "value": { + "stringValue": "benjamin.sowell@glean.com", + "displayLabel": "Benjamin Sowell", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-03-02/10614369682678_c8e720013982ac76423c_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "jeremy.patoc@glean.com", + "displayLabel": "Jeremy Patoc", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-01-05/10230066047267_f1d117b64ee1739e9d36_192.png" + } + } + }, + { + "count": 1356, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 863, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 25, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 1868, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 3167, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 10, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "status", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 20297, + "value": { + "stringValue": "closed", + "iconConfig": {} + } + }, + { + "count": 1872, + "value": { + "stringValue": "draft", + "iconConfig": {} + } + }, + { + "count": 138947, + "value": { + "stringValue": "merged", + "iconConfig": {} + } + }, + { + "count": 1085, + "value": { + "stringValue": "open", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "my history", + "iconConfig": {} + } + } + ] + } + ], + "resultTabs": [ + { + "count": 244513, + "id": "all" + }, + { + "count": 242426, + "datasource": "github", + "id": "github" + }, + { + "count": 10, + "datasource": "developers", + "datasourceInstance": "developers", + "id": "developers" + }, + { + "count": 352, + "datasource": "confluence", + "id": "confluence" + }, + { + "count": 1, + "datasource": "announcements", + "datasourceInstance": "announcements", + "id": "announcements" + }, + { + "count": 68, + "datasource": "answers", + "datasourceInstance": "answers", + "id": "answers" + }, + { + "count": 9, + "datasource": "collections", + "datasourceInstance": "collections", + "id": "collections" + }, + { + "count": 11, + "datasource": "debugendpoints", + "datasourceInstance": "debugendpoints", + "id": "debugendpoints" + }, + { + "count": 1, + "datasource": "figma", + "datasourceInstance": "figma", + "id": "figma" + }, + { + "count": 1, + "datasource": "klue", + "datasourceInstance": "klue", + "id": "klue" + }, + { + "count": 20, + "datasource": "rootly", + "datasourceInstance": "rootly", + "id": "rootly" + }, + { + "count": 11, + "datasource": "spinnaker", + "datasourceInstance": "spinnaker", + "id": "spinnaker" + }, + { + "count": 1603, + "datasource": "wiz", + "datasourceInstance": "wiz", + "id": "wiz" + } + ], + "resultTabIds": [ + "github" + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MywiUmFuZG9tQ2FjaGVLZXkiOiIxODExNzYyMTI4MzIwNTQ2ODAiLCJQYWdlRHVwZU1ldGFkYXRhIjp7IlBhZ2VJZCI6MSwiUmVzdWx0VG9rZW5zIjpudWxsfX0=", + "hasMoreResults": true +} diff --git a/internal/output/testdata/raw_jira.json b/internal/output/testdata/raw_jira.json new file mode 100644 index 0000000..a86c7af --- /dev/null +++ b/internal/output/testdata/raw_jira.json @@ -0,0 +1,3945 @@ +{ + "trackingToken": "P9ogzed2I2wfTDRG", + "sessionInfo": { + "lastQuery": "incident report", + "lastSeen": "2026-04-06T15:33:01.586651682Z", + "sessionTrackingToken": "FaTCDcBHidXMCHRZ", + "tabId": "NfkCNfcZeJjKqKSC" + }, + "results": [ + { + "backlinkResults": [ + { + "document": { + "datasource": "slack", + "docType": "message", + "id": "SLACK2_Message_TGLEMJFFG_C08R36LS9QT_1764891134.702529", + "metadata": { + "assignedTo": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "author": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "container": "proj-dem-sa-better-together", + "createTime": "2025-12-04T23:32:14Z", + "customData": { + "parentConversationId": { + "stringValue": "SLACK2__TGLEMJFFG\\_C08R36LS9QT_1764891133.569649_0__Conversation" + }, + "showChannelInMetadata": { + "booleanValue": true + } + }, + "datasource": "slack", + "datasourceInstance": "slack", + "documentCategory": "MESSAGING", + "documentId": "SLACK2_Message_TGLEMJFFG_C08R36LS9QT_1764891134.702529", + "interactions": {}, + "loggingId": "8B67901A9173D16415F9C46D33D14AAF", + "mimeType": "conversation", + "objectType": "message", + "owner": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "updateTime": "2025-12-12T18:32:34Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "title": "proj-dem-sa-better-together" + }, + "title": "Conversation", + "url": "https://askscio.slack.com/archives/C08R36LS9QT/p1764891134702529?thread_ts=1764891133.569649\u0026cid=C08R36LS9QT" + }, + "fullText": "Escalation raised by Amy Vu\nDescription : Can someone help me review Servicenow issues for FB?\nthey are having issues pulling incidents/problems/service requests which are not appearing searchable or providing any metrics. or returning partial data\ndocument verification found:\nhttps://fivebelow.service-now.com/incident?\u0004sys_id=d0c10a79931d32108dfcfda74dba1092\nhttps://fivebelow.service-now.com/incident?\u0004sys_id=c8ba1be9932d3a50cfbbf10b6aba10da\ndocument verification not found:\nhttps://fivebelow.service-now.com/incident?\u0004sys_id=ffad4d1e93e1fe50cfbbf10b6aba10a5\n\"Expecting basic queries like number of incidents reported in a time bound or number of P1/P2 reported in a timebound are important for us as metric query. \u0004May be reporting is also a need for us. \u0004Please look into this asap and help us further.\"\nthey likely will want to hop on a call on this.\nInvestigation details : when i use docfinder, im unable to see any of the links be indexed?\nasking them to downvote some searches for us to investigate further.\nCustomer\n", + "nativeAppUrl": "slack://channel?id=C08R36LS9QT\u0026message=1764891133.569649\u0026team=TGLEMJFFG\u0026thread_ts=1764891133.569649", + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "document": { + "id": "JIRA_EE-19304", + "url": "https://askscio.atlassian.net/browse/EE-19304" + }, + "endIndex": 24, + "startIndex": 20, + "type": "LINK" + } + ], + "snippet": "", + "text": "Created a tracking JIRA" + } + ], + "title": "Conversation", + "trackingToken": "P9ogzed2I2wfTDRG,CsgBChBQOW9nemVkMkkyd2ZURFJHEAEaNlNMQUNLMl9NZXNzYWdlX1RHTEVNSkZGR19DMDhSMzZMUzlRVF8xNzY0ODkxMTM0LjcwMjUyOSIFc2xhY2sqBGppcmEyDENvbnZlcnNhdGlvbjoJTUVTU0FHSU5HSAFSUjozU0xBQ0syX19UR0xFTUpGRkdcX0MwOFIzNkxTOVFUXzE3NjQ4OTExMzMuNTY5NjQ5XzBfEhsKEkpJUkFfcHJvamVjdF8xMDA1MBDIiNbdrjM=", + "url": "https://askscio.slack.com/archives/C08R36LS9QT/p1764891134702529?thread_ts=1764891133.569649\u0026cid=C08R36LS9QT" + } + ], + "document": { + "datasource": "jira", + "docType": "Escalation", + "id": "JIRA_EE-19304", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD4E7E7AC0309B4189C400D7C18B602" + }, + "name": "Iliana Portugal", + "obfuscatedId": "0CD4E7E7AC0309B4189C400D7C18B602" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "container": "Eng Escalations", + "containerId": "JIRA_project_10050", + "createTime": "2025-12-04T23:32:13Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"fivebelow\"]" + }, + "customField_10148:URL": { + "stringValue": "https://askscio.slack.com/archives/C08R36LS9QT/p1764891133569649" + }, + "customField_10149:Root Cause Summary": { + "stringValue": "customer having issue using agent to retrieve servicenow results even though they are indexed" + }, + "issueTypeId": { + "stringValue": "10102" + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "3" + }, + "projectId": { + "stringValue": "10050" + }, + "projectName": { + "stringValue": "Eng Escalations" + } + }, + "datasource": "jira", + "datasourceId": "EE-19304", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EE-19304", + "interactions": {}, + "loggingId": "5C606357A679C1B7A626A9D4B83674F1", + "mimeType": "escalation", + "objectType": "Escalation", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "0CD4E7E7AC0309B4189C400D7C18B602" + }, + "name": "Iliana Portugal", + "obfuscatedId": "0CD4E7E7AC0309B4189C400D7C18B602" + }, + "priority": "Medium", + "status": "Done", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10050", + "updateTime": "2026-02-11T21:03:11Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10050", + "title": "Eng Escalations", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EE/issues" + }, + "title": " Can someone help me review Servicenow issues for FB? they are having issues pulling incidents/problems/service requests which are not appearing searchable or providing any metrics. or returning part...", + "url": "https://askscio.atlassian.net/browse/EE-19304" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 58, + "startIndex": 40, + "type": "BOLD" + }, + { + "endIndex": 102, + "startIndex": 94, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 1, + "text": "\"Expecting basic queries like number of incidents reported in a time bound or number of P1/P2 reported in a timebound are important for us as metric query. ", + "url": "https://askscio.atlassian.net/browse/EE-19304#:~:text=%22Expecting%20basic%20queries%20like%20number%20of%20incidents%20reported%20in%20a%20time%20bound%20or%20number%20of%20P1%2FP2%20reported%20in%20a%20timebound%20are%20important%20for%20us%20as%20metric%20query.%20" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 16, + "startIndex": 7, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "May be reporting is also a need for us. ", + "url": "https://askscio.atlassian.net/browse/EE-19304#:~:text=May%20be%20reporting%20is%20also%20a%20need%20for%20us.%20" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 25, + "startIndex": 17, + "type": "BOLD" + } + ], + "snippet": "", + "text": ".service-now.com/incident?", + "url": "https://askscio.atlassian.net/browse/EE-19304#:~:text=.service%2Dnow.com%2Fincident%3F" + } + ], + "title": " Can someone help me review Servicenow issues for FB? they are having issues pulling incidents/problems/service requests which are not appearing searchable or providing any metrics. or returning part...", + "trackingToken": "P9ogzed2I2wfTDRG,CkIKEFA5b2d6ZWQySTJ3ZlREUkcaDUpJUkFfRUUtMTkzMDQiBGppcmEqBGppcmEyCmVzY2FsYXRpb246B1RJQ0tFVFM=", + "url": "https://askscio.atlassian.net/browse/EE-19304" + }, + { + "backlinkResults": [ + { + "document": { + "datasource": "zendesk", + "docType": "ticket", + "id": "ZENDESK_Ticket_3674", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "5B82A2EE3A7EC2450FAB6FB709C81527" + }, + "name": "Isha Mehta", + "obfuscatedId": "5B82A2EE3A7EC2450FAB6FB709C81527" + }, + "author": { + "name": "Customer", + "obfuscatedId": "" + }, + "container": "SentinelOne", + "createTime": "2024-09-30T02:32:39Z", + "datasource": "zendesk", + "datasourceId": "#3674", + "datasourceInstance": "zendesk", + "documentCategory": "TICKETS", + "documentId": "ZENDESK_Ticket_3674", + "interactions": { + "numComments": 15 + }, + "loggingId": "AAF9584BD1FB7AE637ACB4FFD2D83435", + "mimeType": "ticket", + "objectType": "ticket", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "5B82A2EE3A7EC2450FAB6FB709C81527" + }, + "name": "Isha Mehta", + "obfuscatedId": "5B82A2EE3A7EC2450FAB6FB709C81527" + }, + "priority": "normal", + "status": "closed", + "updateTime": "2024-11-22T02:02:00Z", + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "SentinelOne" + }, + "title": "Gleans' response errors out when there are too many questions", + "url": "https://gleanwork.zendesk.com/agent/tickets/3674" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "document": { + "id": "JIRA_EN-305579", + "url": "https://askscio.atlassian.net/browse/EN-305579" + }, + "endIndex": 46, + "startIndex": 0, + "type": "LINK" + } + ], + "snippet": "", + "text": "https://askscio.atlassian.net/browse/EN-305579" + } + ], + "title": "Gleans' response errors out when there are too many questions", + "trackingToken": "P9ogzed2I2wfTDRG,Ck0KEFA5b2d6ZWQySTJ3ZlREUkcQAhoTWkVOREVTS19UaWNrZXRfMzY3NCIHemVuZGVzayoEamlyYTIGdGlja2V0OgdUSUNLRVRTQAFIAQ==", + "url": "https://gleanwork.zendesk.com/agent/tickets/3674" + }, + { + "document": { + "datasource": "jira", + "docType": "Task", + "id": "JIRA_EN-312236", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "57B4A60E8ED7814E496F06D7E8947B8B" + }, + "name": "Eddie Zhou", + "obfuscatedId": "57B4A60E8ED7814E496F06D7E8947B8B" + }, + "components": [ + "GleanChat Help" + ], + "container": "Engineering", + "createTime": "2024-11-04T10:56:28Z", + "customData": { + "issueTypeId": { + "stringValue": "10002" + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "3" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-312236", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-312236", + "interactions": { + "numComments": 1 + }, + "loggingId": "3C71F7C4C3E8311981378DA465DAB428", + "mimeType": "task", + "objectType": "Task", + "priority": "Medium", + "status": "Closed", + "statusCategory": "Done", + "updateTime": "2024-11-04T17:16:16Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "title": "Engineering" + }, + "title": "When asking questions using an spreadsheet with so...", + "url": "https://askscio.atlassian.net/browse/EN-312236" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "document": { + "id": "JIRA_EN-305579", + "url": "https://askscio.atlassian.net/browse/EN-305579" + }, + "endIndex": 63, + "startIndex": 51, + "type": "LINK" + } + ], + "snippet": "", + "text": "i left a comment about this issue at the bottom of this comment. we don’t support Q\u0026A over hundreds of questions in one prompt very well today. i would not recommend the user does or" + } + ], + "title": "When asking questions using an spreadsheet with so...", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQAxoOSklSQV9FTi0zMTIyMzYiBGppcmEqBGppcmEyBHRhc2s6B1RJQ0tFVFNAAUgC", + "url": "https://askscio.atlassian.net/browse/EN-312236" + } + ], + "document": { + "datasource": "jira", + "docType": "Task", + "id": "JIRA_EN-305579", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "57B4A60E8ED7814E496F06D7E8947B8B" + }, + "name": "Eddie Zhou", + "obfuscatedId": "57B4A60E8ED7814E496F06D7E8947B8B" + }, + "components": [ + "GleanChat Quality Help" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2024-10-22T09:16:20Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"SentinelOne\"]" + }, + "issueTypeId": { + "stringValue": "10002" + }, + "labels": { + "stringListValue": [ + "jira_escalated" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "3" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-305579", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-305579", + "interactions": { + "numComments": 14 + }, + "loggingId": "6D378E6308907C24D595964E98C47629", + "mimeType": "task", + "objectType": "Task", + "priority": "Medium", + "status": "Debugged", + "statusCategory": "In Progress", + "superContainerId": "JIRA_project_10000", + "updateTime": "2024-11-04T17:00:38Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": " Hi Team, `Linkedin` has reported that for specifi...", + "url": "https://askscio.atlassian.net/browse/EN-305579" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 25, + "startIndex": 10, + "type": "BOLD" + }, + { + "endIndex": 71, + "startIndex": 63, + "type": "BOLD" + }, + { + "endIndex": 147, + "startIndex": 139, + "type": "BOLD" + }, + { + "endIndex": 171, + "startIndex": 163, + "type": "BOLD" + }, + { + "endIndex": 247, + "startIndex": 239, + "type": "BOLD" + }, + { + "endIndex": 177, + "startIndex": 162, + "type": "LINK", + "url": "https://askscio.atlassian.net/%22incident-1816%22" + } + ], + "snippet": "", + "text": "\"title\": \"Incident Report\", \"type\": \"object\", \"properties\": { \"incident_id\": { \"type\": \"string\", \"description\": \"Unique identifier for the incident\", \"examples\": \"incident-1816\" }, \"title\": { \"type\": \"string\", \"description\": \"Title of the incident\"", + "url": "https://askscio.atlassian.net/browse/EN-305579#:~:text=%22title%22:%20%22Incident%20Report%22%2C%20%22type%22:%20%22object%22%2C%20%22properties%22:%20%7B%20%22incident_id%22:%20%7B%20%22type%22:%20%22string%22%2C%20%22description%22:%20%22Unique%20identifier%20for%20the%20incident%22%2C%20%22examples%22:%20%22incident%2D1816%22%20%7D%2C%20%22title%22:%20%7B%20%22type%22:%20%22string%22%2C%20%22description%22:%20%22Title%20of%20the%20incident%22" + } + ], + "title": " Hi Team, `Linkedin` has reported that for specifi...", + "trackingToken": "P9ogzed2I2wfTDRG,CkEKEFA5b2d6ZWQySTJ3ZlREUkcQARoOSklSQV9FTi0zMDU1NzkiBGppcmEqBGppcmEyBHRhc2s6B1RJQ0tFVFNAAQ==", + "url": "https://askscio.atlassian.net/browse/EN-305579" + }, + { + "allClusteredResults": [ + { + "clusterType": "AUTHOR_PREFIX", + "clusteredResults": [ + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1479983", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-02-25T14:59:47Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-general-motors\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "502.0", + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1479983", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1479983", + "interactions": { + "numComments": 3 + }, + "loggingId": "5FB7CB60310FD7916D8EC039388DF064", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "priority": "Low", + "status": "Done", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-04T02:19:33Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-general-motors, type: pyagents_RemoteProtocolError] ", + "url": "https://askscio.atlassian.net/browse/EN-1479983" + }, + "title": "GleanChatError [project_id: glean-general-motors, type: pyagents_RemoteProtocolError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQAxoPSklSQV9FTi0xNDc5OTgzIgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgB", + "url": "https://askscio.atlassian.net/browse/EN-1479983" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1600178", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-30T18:03:41Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"unifiedhome-scio-databricks\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1600178", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1600178", + "interactions": { + "numComments": 6 + }, + "loggingId": "75CA7CCBD36E1413446F81DF4651BE00", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "priority": "Low", + "status": "Closed", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-30T21:41:33Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: unifiedhome-scio-databricks, type: pyagent_request_error] ", + "url": "https://askscio.atlassian.net/browse/EN-1600178" + }, + "title": "GleanChatError [project_id: unifiedhome-scio-databricks, type: pyagent_request_error] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBBoPSklSQV9FTi0xNjAwMTc4IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgC", + "url": "https://askscio.atlassian.net/browse/EN-1600178" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1602288", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-31T06:27:29Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-connector-seek\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1602288", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1602288", + "interactions": { + "numComments": 5 + }, + "loggingId": "8701AF048DD65C46F211032100701F81", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-31T06:33:55Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-connector-seek, type: sql_error_status_code_mysql_1045] ", + "url": "https://askscio.atlassian.net/browse/EN-1602288" + }, + "title": "GleanChatError [project_id: glean-connector-seek, type: sql_error_status_code_mysql_1045] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBRoPSklSQV9FTi0xNjAyMjg4IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgD", + "url": "https://askscio.atlassian.net/browse/EN-1602288" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1491009", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-01T10:22:11Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-connector-rivianvwtech\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1491009", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1491009", + "interactions": { + "numComments": 3 + }, + "loggingId": "7B07C01D3FEAD7AE849190DB35DC0A79", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-25T21:09:05Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-connector-rivianvwtech, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1491009" + }, + "title": "GleanChatError [project_id: glean-connector-rivianvwtech, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBhoPSklSQV9FTi0xNDkxMDA5IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgE", + "url": "https://askscio.atlassian.net/browse/EN-1491009" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1495466", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B56A4AE772FD640204935178093C8B5F" + }, + "name": "Nick Wang", + "obfuscatedId": "B56A4AE772FD640204935178093C8B5F" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-03T01:30:30Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"scio-prod\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-3" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1495466", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1495466", + "interactions": { + "numComments": 3 + }, + "loggingId": "8B1254FC7B26121AD6D7921821B4F57B", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B56A4AE772FD640204935178093C8B5F" + }, + "name": "Nick Wang", + "obfuscatedId": "B56A4AE772FD640204935178093C8B5F" + }, + "priority": "Low", + "status": "Closed", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-04T01:59:30Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: scio-prod, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1495466" + }, + "title": "GleanChatError [project_id: scio-prod, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBxoPSklSQV9FTi0xNDk1NDY2IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgF", + "url": "https://askscio.atlassian.net/browse/EN-1495466" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1598339", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-30T10:15:55Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-dell-aws-poc-2\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1598339", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1598339", + "interactions": { + "numComments": 4 + }, + "loggingId": "A0C7C8BA960A0E0DABD48F162B96E047", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "priority": "Low", + "status": "Needs Triage", + "statusCategory": "To Do", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-31T09:20:18Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-dell-aws-poc-2, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1598339" + }, + "title": "GleanChatError [project_id: glean-dell-aws-poc-2, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQCBoPSklSQV9FTi0xNTk4MzM5IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgG", + "url": "https://askscio.atlassian.net/browse/EN-1598339" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1590959", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "name": "Shree Mohan", + "obfuscatedId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-28T15:12:47Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-pinterest\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1590959", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1590959", + "interactions": { + "numComments": 5 + }, + "loggingId": "2FD8F9A93AE1E7AC31267C122FC1A2CB", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "name": "Shree Mohan", + "obfuscatedId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-30T20:49:23Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-pinterest, type: pyagent_calling_streaming_response_error] ", + "url": "https://askscio.atlassian.net/browse/EN-1590959" + }, + "title": "GleanChatError [project_id: glean-pinterest, type: pyagent_calling_streaming_response_error] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQCRoPSklSQV9FTi0xNTkwOTU5IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgH", + "url": "https://askscio.atlassian.net/browse/EN-1590959" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1540446", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "name": "Vikram Agrawal", + "obfuscatedId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-16T10:08:26Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"itp-ent-askscio\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-2" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1540446", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1540446", + "interactions": { + "numComments": 4 + }, + "loggingId": "70C8C738C37E22490D37CA8CD1107E41", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "name": "Vikram Agrawal", + "obfuscatedId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "priority": "Low", + "status": "Needs Triage", + "statusCategory": "To Do", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-25T21:06:48Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: itp-ent-askscio, type: pyagents_ReadTimeout] ", + "url": "https://askscio.atlassian.net/browse/EN-1540446" + }, + "title": "GleanChatError [project_id: itp-ent-askscio, type: pyagents_ReadTimeout] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQChoPSklSQV9FTi0xNTQwNDQ2IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgI", + "url": "https://askscio.atlassian.net/browse/EN-1540446" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1491015", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-01T10:26:53Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-purestorage\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1491015", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1491015", + "interactions": { + "numComments": 4 + }, + "loggingId": "40B864396F859A8F41C0D03C48560382", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-25T21:09:31Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-purestorage, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1491015" + }, + "title": "GleanChatError [project_id: glean-purestorage, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQCxoPSklSQV9FTi0xNDkxMDE1IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgJ", + "url": "https://askscio.atlassian.net/browse/EN-1491015" + } + ], + "visibleCountHint": 3 + } + ], + "clusterType": "SIMILAR", + "clusteredResults": [ + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1479983", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-02-25T14:59:47Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-general-motors\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "502.0", + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1479983", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1479983", + "interactions": { + "numComments": 3 + }, + "loggingId": "5FB7CB60310FD7916D8EC039388DF064", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "priority": "Low", + "status": "Done", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-04T02:19:33Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-general-motors, type: pyagents_RemoteProtocolError] ", + "url": "https://askscio.atlassian.net/browse/EN-1479983" + }, + "title": "GleanChatError [project_id: glean-general-motors, type: pyagents_RemoteProtocolError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQAxoPSklSQV9FTi0xNDc5OTgzIgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgB", + "url": "https://askscio.atlassian.net/browse/EN-1479983" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1600178", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-30T18:03:41Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"unifiedhome-scio-databricks\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1600178", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1600178", + "interactions": { + "numComments": 6 + }, + "loggingId": "75CA7CCBD36E1413446F81DF4651BE00", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "priority": "Low", + "status": "Closed", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-30T21:41:33Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: unifiedhome-scio-databricks, type: pyagent_request_error] ", + "url": "https://askscio.atlassian.net/browse/EN-1600178" + }, + "title": "GleanChatError [project_id: unifiedhome-scio-databricks, type: pyagent_request_error] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBBoPSklSQV9FTi0xNjAwMTc4IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgC", + "url": "https://askscio.atlassian.net/browse/EN-1600178" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1602288", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-31T06:27:29Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-connector-seek\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1602288", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1602288", + "interactions": { + "numComments": 5 + }, + "loggingId": "8701AF048DD65C46F211032100701F81", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-31T06:33:55Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-connector-seek, type: sql_error_status_code_mysql_1045] ", + "url": "https://askscio.atlassian.net/browse/EN-1602288" + }, + "title": "GleanChatError [project_id: glean-connector-seek, type: sql_error_status_code_mysql_1045] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBRoPSklSQV9FTi0xNjAyMjg4IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgD", + "url": "https://askscio.atlassian.net/browse/EN-1602288" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1491009", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-01T10:22:11Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-connector-rivianvwtech\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1491009", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1491009", + "interactions": { + "numComments": 3 + }, + "loggingId": "7B07C01D3FEAD7AE849190DB35DC0A79", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-25T21:09:05Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-connector-rivianvwtech, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1491009" + }, + "title": "GleanChatError [project_id: glean-connector-rivianvwtech, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBhoPSklSQV9FTi0xNDkxMDA5IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgE", + "url": "https://askscio.atlassian.net/browse/EN-1491009" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1495466", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B56A4AE772FD640204935178093C8B5F" + }, + "name": "Nick Wang", + "obfuscatedId": "B56A4AE772FD640204935178093C8B5F" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-03T01:30:30Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"scio-prod\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-3" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1495466", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1495466", + "interactions": { + "numComments": 3 + }, + "loggingId": "8B1254FC7B26121AD6D7921821B4F57B", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B56A4AE772FD640204935178093C8B5F" + }, + "name": "Nick Wang", + "obfuscatedId": "B56A4AE772FD640204935178093C8B5F" + }, + "priority": "Low", + "status": "Closed", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-04T01:59:30Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: scio-prod, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1495466" + }, + "title": "GleanChatError [project_id: scio-prod, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQBxoPSklSQV9FTi0xNDk1NDY2IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgF", + "url": "https://askscio.atlassian.net/browse/EN-1495466" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1598339", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-30T10:15:55Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-dell-aws-poc-2\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1598339", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1598339", + "interactions": { + "numComments": 4 + }, + "loggingId": "A0C7C8BA960A0E0DABD48F162B96E047", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "name": "Omar Khan", + "obfuscatedId": "7EEC9E567635484884EAB07E3482B3A1" + }, + "priority": "Low", + "status": "Needs Triage", + "statusCategory": "To Do", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-31T09:20:18Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-dell-aws-poc-2, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1598339" + }, + "title": "GleanChatError [project_id: glean-dell-aws-poc-2, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQCBoPSklSQV9FTi0xNTk4MzM5IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgG", + "url": "https://askscio.atlassian.net/browse/EN-1598339" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1590959", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "name": "Shree Mohan", + "obfuscatedId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-28T15:12:47Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-pinterest\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1590959", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1590959", + "interactions": { + "numComments": 5 + }, + "loggingId": "2FD8F9A93AE1E7AC31267C122FC1A2CB", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "name": "Shree Mohan", + "obfuscatedId": "AC287634DDED5DBADEE657BA02D4736D" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-30T20:49:23Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-pinterest, type: pyagent_calling_streaming_response_error] ", + "url": "https://askscio.atlassian.net/browse/EN-1590959" + }, + "title": "GleanChatError [project_id: glean-pinterest, type: pyagent_calling_streaming_response_error] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQCRoPSklSQV9FTi0xNTkwOTU5IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgH", + "url": "https://askscio.atlassian.net/browse/EN-1590959" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1540446", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "name": "Vikram Agrawal", + "obfuscatedId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-16T10:08:26Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"itp-ent-askscio\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-2" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1540446", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1540446", + "interactions": { + "numComments": 4 + }, + "loggingId": "70C8C738C37E22490D37CA8CD1107E41", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "name": "Vikram Agrawal", + "obfuscatedId": "1EC3CB9D5CC69687DDA110B796C058F4" + }, + "priority": "Low", + "status": "Needs Triage", + "statusCategory": "To Do", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-25T21:06:48Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: itp-ent-askscio, type: pyagents_ReadTimeout] ", + "url": "https://askscio.atlassian.net/browse/EN-1540446" + }, + "title": "GleanChatError [project_id: itp-ent-askscio, type: pyagents_ReadTimeout] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQChoPSklSQV9FTi0xNTQwNDQ2IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgI", + "url": "https://askscio.atlassian.net/browse/EN-1540446" + }, + { + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1491015", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-01T10:26:53Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-purestorage\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1491015", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1491015", + "interactions": { + "numComments": 4 + }, + "loggingId": "40B864396F859A8F41C0D03C48560382", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B9A5D4B06032F2B2D025122251793D33" + }, + "name": "Chinmay Goyal", + "obfuscatedId": "B9A5D4B06032F2B2D025122251793D33" + }, + "priority": "Low", + "status": "Closed As Noise", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-25T21:09:31Z", + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-purestorage, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1491015" + }, + "title": "GleanChatError [project_id: glean-purestorage, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkMKEFA5b2d6ZWQySTJ3ZlREUkcQCxoPSklSQV9FTi0xNDkxMDE1IgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAkgJ", + "url": "https://askscio.atlassian.net/browse/EN-1491015" + } + ], + "document": { + "datasource": "jira", + "docType": "Bug", + "id": "JIRA_EN-1495473", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B56A4AE772FD640204935178093C8B5F" + }, + "name": "Nick Wang", + "obfuscatedId": "B56A4AE772FD640204935178093C8B5F" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8834EC29D2A12F4B32248069787F3E39" + }, + "name": "OnCall Scio", + "obfuscatedId": "8834EC29D2A12F4B32248069787F3E39" + }, + "components": [ + "GleanChat Alerts" + ], + "container": "Engineering", + "containerId": "JIRA_project_10000", + "createTime": "2026-03-03T01:31:05Z", + "customData": { + "customField_10045:Interested Customers": { + "stringValue": "[\"glean-snowflake\"]" + }, + "issueTypeId": { + "stringValue": "10004" + }, + "labels": { + "stringListValue": [ + "ProductionIssue", + "automated-ticket", + "tier-1" + ] + }, + "linkedIssues": { + "stringValue": "[]" + }, + "priorityId": { + "stringValue": "4" + }, + "projectId": { + "stringValue": "10000" + }, + "projectName": { + "stringValue": "Engineering" + } + }, + "datasource": "jira", + "datasourceId": "EN-1495473", + "datasourceInstance": "jira", + "documentCategory": "TICKETS", + "documentId": "JIRA_EN-1495473", + "interactions": { + "numComments": 2 + }, + "loggingId": "B3DA24EDF7273E640C61674DAEBA7F7B", + "mimeType": "bug", + "objectType": "Bug", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "B56A4AE772FD640204935178093C8B5F" + }, + "name": "Nick Wang", + "obfuscatedId": "B56A4AE772FD640204935178093C8B5F" + }, + "priority": "Low", + "status": "Closed", + "statusCategory": "Done", + "superContainerId": "JIRA_project_10000", + "updateTime": "2026-03-04T03:33:45Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "datasource": "jira", + "docType": "project", + "id": "JIRA_project_10000", + "title": "Engineering", + "url": "https://askscio.atlassian.net/jira/software/c/projects/EN/issues" + }, + "title": "GleanChatError [project_id: glean-snowflake, type: pyagents_StreamingConnectionError] ", + "url": "https://askscio.atlassian.net/browse/EN-1495473" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 231, + "startIndex": 214, + "type": "BOLD" + } + ], + "snippet": "", + "text": "Investigated the GleanChatError (pyagents_StreamingConnectionError) alert for project `glean-snowflake` around 2026-03-03 01:31Z; the alert shows ~11 chat errors just above the 10-error threshold, with no separate incident reported for this tenant.", + "url": "https://askscio.atlassian.net/browse/EN-1495473#:~:text=Investigated%20the%20GleanChatError%20%28pyagents_StreamingConnectionError%29%20alert%20for%20project%20%60glean%2Dsnowflake%60%20around%202026%2D03%2D03%2001:31Z%3B%20the%20alert%20shows%20~11%20chat%20errors%20just%20above%20the%2010%2Derror%20threshold%2C%20with%20no%20separate%20incident%20reported%20for%20this%20tenant." + } + ], + "title": "GleanChatError [project_id: glean-snowflake, type: pyagents_StreamingConnectionError] ", + "trackingToken": "P9ogzed2I2wfTDRG,CkEKEFA5b2d6ZWQySTJ3ZlREUkcQAhoPSklSQV9FTi0xNDk1NDczIgRqaXJhKgRqaXJhMgNidWc6B1RJQ0tFVFNAAg==", + "url": "https://askscio.atlassian.net/browse/EN-1495473" + } + ], + "errorInfo": {}, + "requestID": "95eb7a9ab21eb00bfd512c62f0b55357", + "backendTimeMillis": 606, + "experimentIds": [ + 196740, + 196741, + 1000, + 1001, + 222769, + 222770, + 223197, + 223198, + 221861, + 221863, + 169432, + 169433, + 71945, + 71946, + 220791, + 220792, + 223191, + 223192 + ], + "metadata": { + "rewrittenQuery": "incident report", + "searchedQuery": "incident report", + "searchedQueryWithoutNegation": "", + "originalQuery": "incident report" + }, + "facetResults": [ + { + "sourceName": "last_updated_at", + "operatorName": "SelectSingle", + "buckets": [ + { + "count": 38362, + "value": { + "stringValue": "all", + "iconConfig": {} + } + }, + { + "count": 53, + "value": { + "stringValue": "past_day", + "iconConfig": {} + } + }, + { + "count": 1098, + "value": { + "stringValue": "past_month", + "iconConfig": {} + } + }, + { + "count": 330, + "value": { + "stringValue": "past_week", + "iconConfig": {} + } + }, + { + "count": 7730, + "value": { + "stringValue": "past_year", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "from", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "Aaditya Gururaj", + "displayLabel": "Aaditya Gururaj", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Aaheli Chattopadhyay", + "displayLabel": "Aaheli Chattopadhyay", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "Aaron Fawzy", + "displayLabel": "Aaron Fawzy", + "iconConfig": {} + } + }, + { + "count": 64, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 20, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "dan@glean.com", + "displayLabel": "Dan Fergusson", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2023-11-01/6126955309330_bf4d92b5b3c679812105_192.png" + } + } + }, + { + "count": 5, + "value": { + "stringValue": "isaiah.white@glean.com", + "displayLabel": "Isaiah White", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-11-10/9912333291584_3ccb886886c3cd05ff32_192.jpg" + } + } + }, + { + "count": 16, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 55, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 46, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 45, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 1836, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "type", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 30508, + "value": { + "stringValue": "bug", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "component", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "connector escalation", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "customer implementation", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "dashboard", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "deployments", + "iconConfig": {} + } + }, + { + "count": 5, + "value": { + "stringValue": "doc bug", + "iconConfig": {} + } + }, + { + "count": 428, + "value": { + "stringValue": "epic", + "iconConfig": {} + } + }, + { + "count": 2424, + "value": { + "stringValue": "escalation", + "iconConfig": {} + } + }, + { + "count": 29, + "value": { + "stringValue": "filter", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "headlines", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "collection", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "2024 Pentest", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Alix Onboarding", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "FY27 Planning", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "General Mills - Cornerstone", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Insights Magazine", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Moloco", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Org Chart", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "Personalization", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Planning for Pilots 2024", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "Prism", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Prompt Permissions", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 4, + "value": { + "stringValue": "Go Links", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "assignee", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 215, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Aasneh Prasad", + "displayLabel": "Aasneh Prasad", + "iconConfig": {} + } + }, + { + "count": 30, + "value": { + "stringValue": "Abhi Samantapudi", + "displayLabel": "Abhi Samantapudi", + "iconConfig": {} + } + }, + { + "count": 21, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 6, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "dan@glean.com", + "displayLabel": "Dan Fergusson", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2023-11-01/6126955309330_bf4d92b5b3c679812105_192.png" + } + } + }, + { + "count": 2, + "value": { + "stringValue": "jeremy.patoc@glean.com", + "displayLabel": "Jeremy Patoc", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-01-05/10230066047267_f1d117b64ee1739e9d36_192.png" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 44, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 23, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 33, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 1794, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 2, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "commenter", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 4, + "value": { + "stringValue": "Aaron Fawzy", + "displayLabel": "Aaron Fawzy", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Aaron Groh", + "displayLabel": "Aaron Groh", + "iconConfig": {} + } + }, + { + "count": 86, + "value": { + "stringValue": "Aaryan Srivastava", + "displayLabel": "Aaryan Srivastava", + "iconConfig": {} + } + }, + { + "count": 27, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "dan@glean.com", + "displayLabel": "Dan Fergusson", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2023-11-01/6126955309330_bf4d92b5b3c679812105_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "isaiah.white@glean.com", + "displayLabel": "Isaiah White", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-11-10/9912333291584_3ccb886886c3cd05ff32_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 9, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 9, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 25, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 216, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "component", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 12, + "value": { + "stringValue": "Accessibility", + "iconConfig": {} + } + }, + { + "count": 44, + "value": { + "stringValue": "Actions", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Activity", + "iconConfig": {} + } + }, + { + "count": 136, + "value": { + "stringValue": "AI Answers Bad Queries", + "iconConfig": {} + } + }, + { + "count": 11, + "value": { + "stringValue": "AI App builder", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "AI App Help", + "iconConfig": {} + } + }, + { + "count": 14, + "value": { + "stringValue": "AI Chat", + "iconConfig": {} + } + }, + { + "count": 6, + "value": { + "stringValue": "AI Platform", + "iconConfig": {} + } + }, + { + "count": 11, + "value": { + "stringValue": "AI Tools ", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "AIActions", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "datasource", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 4, + "value": { + "stringValue": "announcements", + "iconConfig": {} + } + }, + { + "count": 128, + "value": { + "stringValue": "answers", + "iconConfig": {} + } + }, + { + "count": 164, + "value": { + "stringValue": "collections", + "iconConfig": {} + } + }, + { + "count": 473, + "value": { + "stringValue": "confluence", + "displayLabel": "Confluence - Cloud", + "iconConfig": {} + } + }, + { + "count": 16, + "value": { + "stringValue": "debugendpoints", + "displayLabel": "DebugEndpoints", + "iconConfig": {} + } + }, + { + "count": 198, + "value": { + "stringValue": "developers", + "displayLabel": "Developers", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "gcp", + "iconConfig": {} + } + }, + { + "count": 8, + "value": { + "stringValue": "klue", + "displayLabel": "Klue", + "iconConfig": {} + } + }, + { + "count": 53, + "value": { + "stringValue": "rootly", + "displayLabel": "Rootly Integration", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "spinnaker", + "displayLabel": "Spinnaker pipelines", + "iconConfig": {} + } + }, + { + "count": 23432, + "value": { + "stringValue": "wiz", + "displayLabel": "Wiz", + "iconConfig": {} + } + }, + { + "count": 38362, + "value": { + "stringValue": "jira", + "displayLabel": "Jira (Cloud)", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "label", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "\"bed-demand\"", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "\"bed-demand-analysis\"", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "\"bed_demand\"", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "\"bug\"]", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "\"certificate-of-need\"", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "\"ChristianaCare\"]", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "\"IoC-forecasts\"", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "\"Sg2\"", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "\"Siemens\"", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "\"SOW\"", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "mentions", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "Aaditya Gururaj", + "displayLabel": "Aaditya Gururaj", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "Aaron Fawzy", + "displayLabel": "Aaron Fawzy", + "iconConfig": {} + } + }, + { + "count": 6, + "value": { + "stringValue": "Aaron Groh", + "displayLabel": "Aaron Groh", + "iconConfig": {} + } + }, + { + "count": 37, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 2, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "dan@glean.com", + "displayLabel": "Dan Fergusson", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2023-11-01/6126955309330_bf4d92b5b3c679812105_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "isaiah.white@glean.com", + "displayLabel": "Isaiah White", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-11-10/9912333291584_3ccb886886c3cd05ff32_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 18, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 32, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 67, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "priority", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 8331, + "value": { + "stringValue": "High", + "iconConfig": {} + } + }, + { + "count": 672, + "value": { + "stringValue": "Highest", + "iconConfig": {} + } + }, + { + "count": 2557, + "value": { + "stringValue": "Low", + "iconConfig": {} + } + }, + { + "count": 35, + "value": { + "stringValue": "Lowest", + "iconConfig": {} + } + }, + { + "count": 26717, + "value": { + "stringValue": "Medium", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "project", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 4, + "value": { + "stringValue": "AWS Intake", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "Customer Success", + "iconConfig": {} + } + }, + { + "count": 36, + "value": { + "stringValue": "Data ", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Deployments", + "iconConfig": {} + } + }, + { + "count": 17, + "value": { + "stringValue": "Developer Platform", + "iconConfig": {} + } + }, + { + "count": 2425, + "value": { + "stringValue": "Eng Escalations", + "iconConfig": {} + } + }, + { + "count": 32567, + "value": { + "stringValue": "Engineering", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "Engineering - Consulting Services (Solution Arch)", + "iconConfig": {} + } + }, + { + "count": 364, + "value": { + "stringValue": "Field Feature Requests", + "iconConfig": {} + } + }, + { + "count": 26, + "value": { + "stringValue": "Glean Documentation", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "GTM-Enablement", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "reporter", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "Aaheli Chattopadhyay", + "displayLabel": "Aaheli Chattopadhyay", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Aaron Fawzy", + "displayLabel": "Aaron Fawzy", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Aaron Trockman", + "displayLabel": "Aaron Trockman", + "iconConfig": {} + } + }, + { + "count": 10, + "value": { + "stringValue": "abhijith@glean.com", + "displayLabel": "Abhijith Shankar", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2021-08-31/2423139596103_02e426d1d855dcf5f374_192.jpg" + } + } + }, + { + "count": 6, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 13, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 8, + "value": { + "stringValue": "jeremy.patoc@glean.com", + "displayLabel": "Jeremy Patoc", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-01-05/10230066047267_f1d117b64ee1739e9d36_192.png" + } + } + }, + { + "count": 10, + "value": { + "stringValue": "prabhav.patil@glean.com", + "displayLabel": "Prabhav Sunil Patil", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-17/9709457144339_54d558d23c50aabf0a39_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 22, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 5, + "value": { + "stringValue": "stanley.hong@glean.com", + "displayLabel": "Stanley Hong", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-24/9763772431557_eb49d68385e076ba309b_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "vidyashree.shetty@glean.com", + "displayLabel": "Vidyashree Shetty", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-09-23/9563763991331_13ae695a89db1fa0b578_192.jpg" + } + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "sprint", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 13, + "value": { + "stringValue": "2024 Q2 M1 Sprint 2", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2024 Q2 M1 Sprint 3", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2024 Q2 M2 Sprint 1", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "2024 Q2 M2 Sprint 4", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2024 Q3 M1 Sprint 3", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2024 Q3 M2 Sprint 1", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "2024 Q4 M1 Sprint 2", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2024 Q4 M2 Sprint 3", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2025 Q1 M1 Sprint 3", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2025 Q1 M2 Sprint 1", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2025 Q2 M1 Sprint 3", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "status", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 20, + "value": { + "stringValue": "Abonded", + "iconConfig": {} + } + }, + { + "count": 8, + "value": { + "stringValue": "ACCEPTED via linked ROADmap \u0026 Release item", + "iconConfig": {} + } + }, + { + "count": 21, + "value": { + "stringValue": "Approved", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Awaiting approval", + "iconConfig": {} + } + }, + { + "count": 180, + "value": { + "stringValue": "Backlog", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Backlogs", + "iconConfig": {} + } + }, + { + "count": 5, + "value": { + "stringValue": "Beta", + "iconConfig": {} + } + }, + { + "count": 41, + "value": { + "stringValue": "BLOCKED", + "iconConfig": {} + } + }, + { + "count": 5, + "value": { + "stringValue": "Blocked on Eng", + "iconConfig": {} + } + }, + { + "count": 33, + "value": { + "stringValue": "Canceled", + "iconConfig": {} + } + }, + { + "count": 10902, + "value": { + "stringValue": "Closed", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "statuscategory", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 32989, + "value": { + "stringValue": "Done", + "iconConfig": {} + } + }, + { + "count": 1080, + "value": { + "stringValue": "In Progress", + "iconConfig": {} + } + }, + { + "count": 4259, + "value": { + "stringValue": "To Do", + "iconConfig": {} + } + } + ] + } + ], + "resultTabs": [ + { + "count": 62841, + "id": "all" + }, + { + "count": 198, + "datasource": "developers", + "datasourceInstance": "developers", + "id": "developers" + }, + { + "count": 38362, + "datasource": "jira", + "datasourceInstance": "jira", + "id": "jira" + }, + { + "count": 473, + "datasource": "confluence", + "id": "confluence" + }, + { + "count": 4, + "datasource": "announcements", + "datasourceInstance": "announcements", + "id": "announcements" + }, + { + "count": 128, + "datasource": "answers", + "datasourceInstance": "answers", + "id": "answers" + }, + { + "count": 164, + "datasource": "collections", + "datasourceInstance": "collections", + "id": "collections" + }, + { + "count": 16, + "datasource": "debugendpoints", + "datasourceInstance": "debugendpoints", + "id": "debugendpoints" + }, + { + "count": 1, + "datasource": "gcp", + "datasourceInstance": "gcp", + "id": "gcp" + }, + { + "count": 8, + "datasource": "klue", + "datasourceInstance": "klue", + "id": "klue" + }, + { + "count": 53, + "datasource": "rootly", + "datasourceInstance": "rootly", + "id": "rootly" + }, + { + "count": 2, + "datasource": "spinnaker", + "datasourceInstance": "spinnaker", + "id": "spinnaker" + }, + { + "count": 23432, + "datasource": "wiz", + "datasourceInstance": "wiz", + "id": "wiz" + } + ], + "resultTabIds": [ + "jira" + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MywiUmFuZG9tQ2FjaGVLZXkiOiI0MTMwODM5MzUyNDM5MTQ5NzU4IiwiUGFnZUR1cGVNZXRhZGF0YSI6eyJQYWdlSWQiOjEsIlJlc3VsdFRva2VucyI6bnVsbH0sIkN1cnNvckNhY2hlS2V5IjoiNTY4MmUxZmYtNTdiMi00ZDBiLWE1OTEtYjhkZGU3YjY0NzhiIn0=", + "hasMoreResults": true +} diff --git a/internal/output/testdata/raw_mixed.json b/internal/output/testdata/raw_mixed.json new file mode 100644 index 0000000..4e45cdb --- /dev/null +++ b/internal/output/testdata/raw_mixed.json @@ -0,0 +1,2915 @@ +{ + "trackingToken": "cECla84C8x3dDFYp", + "sessionInfo": { + "lastQuery": "quarterly planning", + "lastSeen": "2026-04-06T15:33:06.509775156Z", + "sessionTrackingToken": "lu6eqddoyUcNZr3n", + "tabId": "oigbpJmpp7UxnVr2" + }, + "results": [ + { + "allClusteredResults": [ + { + "clusterType": "FRESHNESS", + "clusteredResults": [ + { + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "name": "Emrecan Dogan", + "obfuscatedId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "name": "Emrecan Dogan", + "obfuscatedId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "createTime": "2025-08-06T00:09:25Z", + "datasource": "gdrive", + "datasourceId": "1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw", + "interactions": {}, + "loggingId": "30ED6912A34D6822F87F2C9FC84E557C", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "name": "Emrecan Dogan", + "obfuscatedId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "updateTime": "2025-11-17T02:04:11Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "90626173EE5666BB891147D9B1F40378" + }, + "name": "Onder Polat", + "obfuscatedId": "90626173EE5666BB891147D9B1F40378" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "id": "GDRIVE_0ABEA3vq51xS3Uk9PVA" + }, + "title": "R\u0026D Execution Plan for FY26 Q3 (Aug / Sep / Oct)", + "url": "https://docs.google.com/document/d/1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw" + }, + "title": "R\u0026D Execution Plan for FY26 Q3 (Aug / Sep / Oct)", + "trackingToken": "cECla84C8x3dDFYp,CnkKEGNFQ2xhODRDOHgzZERGWXAQARozR0RSSVZFXzFaQVcxYlAwNml0Ti0tNHY3RFVPTlp3Vk5Ua016TWxISU9CMHgwbXZWakx3IgZnZHJpdmUqA2FsbDIIRG9jdW1lbnQ6FUNPTExBQk9SQVRJVkVfQ09OVEVOVEgB", + "url": "https://docs.google.com/document/d/1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw" + } + ], + "visibleCountHint": 3 + } + ], + "attachmentCount": 12, + "attachments": [ + { + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-12-05T20:04:32Z", + "datasource": "gdrive", + "datasourceId": "10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI", + "interactions": {}, + "loggingId": "432B45FF78B069B58E6451DAC283EBF7", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-12-05T21:04:57Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/12/05 13:23 CST - Notes by Gemini", + "url": "https://docs.google.com/document/d/10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 122, + "startIndex": 118, + "type": "BOLD" + } + ], + "snippet": "", + "text": "· Image Generation Launch and Billing Integration Someone in 404 | Sixglean Candles (Glean HQ, 4th Fl) reiterated the plan to ship the more expensive nano banana pro model for image gen and emphasized the need for full billing integration before GA.", + "url": "https://docs.google.com/document/d/10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI?tab=t.kflbqvun150f#heading=h.lfgshwczp7uj" + } + ], + "title": "RND Weekly Projects Check-In - 2025/12/05 13:23 CST - Notes by Gemini", + "trackingToken": "cECla84C8x3dDFYp,CtkBChBjRUNsYTg0Qzh4M2RERllwEAEaM0dEUklWRV8xMHJ4RGZIb0xkVHpOVzRFaW4wRDczNmhWMElGVU5MbmctT3JFaHBaaDZmSSIGZ2RyaXZlKgNhbGwyCERvY3VtZW50OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRIAVJeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://docs.google.com/document/d/10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Text", + "id": "GDRIVE_11mDSflL2AWu9Xplh9ixGS_DpzhuCRcS3", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-12-05T20:59:30Z", + "datasource": "gdrive", + "datasourceId": "11mDSflL2AWu9Xplh9ixGS_DpzhuCRcS3", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_11mDSflL2AWu9Xplh9ixGS_DpzhuCRcS3", + "interactions": {}, + "loggingId": "40D3B762AAE5C9CC8D438A79D2559B99", + "mimeType": "text/plain", + "objectType": "Text", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-12-05T20:59:30Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/12/05 13:23 CST - Chat", + "url": "https://drive.google.com/file/d/11mDSflL2AWu9Xplh9ixGS_DpzhuCRcS3" + }, + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "00:14:42.401,00:14:45.401" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Chaitanya Asawa: You can send to all Glean users with signup timestamp (but this doesn't get users who have never tried)" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 2, + "text": "00:15:01.538,00:15:04.538" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "Chaitanya Asawa: It's a bit harder to determine product access, Eric An can" + } + ], + "title": "RND Weekly Projects Check-In - 2025/12/05 13:23 CST - Chat", + "trackingToken": "cECla84C8x3dDFYp,CsoBChBjRUNsYTg0Qzh4M2RERllwEAIaKEdEUklWRV8xMW1EU2ZsTDJBV3U5WHBsaDlpeEdTX0Rwemh1Q1JjUzMiBmdkcml2ZSoDYWxsMgRUZXh0OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRIAlJeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://drive.google.com/file/d/11mDSflL2AWu9Xplh9ixGS_DpzhuCRcS3" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Video", + "id": "GDRIVE_1cU2nxhV_I9X9fAGBZN7taHLG_T7cQAA7", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-12-05T20:59:30Z", + "datasource": "gdrive", + "datasourceId": "1cU2nxhV_I9X9fAGBZN7taHLG_T7cQAA7", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1cU2nxhV_I9X9fAGBZN7taHLG_T7cQAA7", + "interactions": {}, + "loggingId": "CEA9D8415EAA37A3B85B27C71251CA7A", + "mimeType": "video/mp4", + "objectType": "Video", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-12-05T20:59:30Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/12/05 13:23 CST - Recording", + "url": "https://drive.google.com/file/d/1cU2nxhV_I9X9fAGBZN7taHLG_T7cQAA7" + }, + "snippets": [ + { + "snippet": "" + } + ], + "title": "RND Weekly Projects Check-In - 2025/12/05 13:23 CST - Recording", + "trackingToken": "cECla84C8x3dDFYp,CssBChBjRUNsYTg0Qzh4M2RERllwEAQaKEdEUklWRV8xY1UybnhoVl9JOVg5ZkFHQlpON3RhSExHX1Q3Y1FBQTciBmdkcml2ZSoDYWxsMgVWaWRlbzoVQ09MTEFCT1JBVElWRV9DT05URU5USARSXhozR0RSSVZFXzFQRGl6aWNEaWhrYTdzMVZndUpVMUxKcHRBT3pGTEFpSFN2QzZRbHljVjZBIgZnZHJpdmUqCERvY3VtZW50MhVDT0xMQUJPUkFUSVZFX0NPTlRFTlQ=", + "url": "https://drive.google.com/file/d/1cU2nxhV_I9X9fAGBZN7taHLG_T7cQAA7" + }, + { + "document": { + "datasource": "googlecalendar", + "docType": "event", + "id": "GOOGLECALENDAR_Event_2A85F4097AB50892B8C2CF1D9AC79CD1", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "createTime": "2025-12-05T19:30:00Z", + "customData": { + "attachmentUrls": { + "stringValue": "https://drive.google.com/file/d/1cU2nxhV_I9X9fAGBZN7taHLG_T7cQAA7/view?usp=drive_web\nhttps://drive.google.com/file/d/11mDSflL2AWu9Xplh9ixGS_DpzhuCRcS3/view?usp=drive_web\nhttps://docs.google.com/document/d/10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI/edit?usp=meet_tnfm_calendar\nhttps://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?usp=sharing" + }, + "attendeeDetails": { + "stringValue": "[{\"name\":\"Emrecan Dogan\",\"responseStatus\":\"accepted\"},{\"name\":\"Steve Calvert\",\"responseStatus\":\"accepted\"},{\"name\":\"Rohan Vora\",\"responseStatus\":\"accepted\"},{\"name\":\"akash.sagar@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"Jassim Latif\",\"responseStatus\":\"needsAction\"},{\"name\":\"Shishir Agrawal\",\"responseStatus\":\"accepted\"},{\"name\":\"Tony Gentilcore\",\"responseStatus\":\"accepted\"},{\"name\":\"Allan Livingston\",\"responseStatus\":\"accepted\"},{\"name\":\"cynthia.castro@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"James Pratama\",\"responseStatus\":\"accepted\"},{\"name\":\"Thai Tran\",\"responseStatus\":\"accepted\"},{\"name\":\"Mayank Malhotra\",\"responseStatus\":\"accepted\"},{\"name\":\"Christian Ervin\",\"responseStatus\":\"needsAction\"},{\"name\":\"Meera Shah\",\"responseStatus\":\"accepted\"},{\"name\":\"Onder Polat\",\"responseStatus\":\"accepted\"},{\"name\":\"Arpit Agrawal\",\"responseStatus\":\"accepted\"},{\"name\":\"Seema Jethani\",\"responseStatus\":\"needsAction\"},{\"name\":\"Vardhman Singh\",\"responseStatus\":\"needsAction\"},{\"name\":\"Vishwanath T R\",\"responseStatus\":\"accepted\"},{\"name\":\"Jen Zagofsky\",\"responseStatus\":\"accepted\"},{\"name\":\"alice@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"benjamin.mcmahan@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"cathy.chen@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"chaitanya@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"devansh.dwivedi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"kiran.bondalapati@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"kumar@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"max.comolli@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"naveen.vardhi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"nilesh.dalvi@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"pradnya.karbhari@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"roshan.dheram@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"sneha.chaudhari@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"tao.zhou@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"veraj.paruthi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"arjun@glean.com\",\"responseStatus\":\"declined\"},{\"name\":\"abhi.samantapudi@glean.com\",\"responseStatus\":\"accepted\"}]" + }, + "conferenceProvider": { + "stringValue": "Google Meet" + }, + "conferenceUri": { + "stringValue": "https://meet.google.com/edp-wcng-rok" + }, + "created": { + "stringValue": "2025-10-17T23:29:53.000Z" + }, + "creatorName": { + "stringValue": "Cynthia Castro" + }, + "eventEndTime": { + "stringValue": "2025-12-05T14:00:00.000-06:00" + }, + "eventStartTime": { + "stringValue": "2025-12-05T13:30:00.000-06:00" + }, + "eventStatus": { + "stringValue": "confirmed" + }, + "eventType": { + "stringValue": "default" + }, + "guestsCanSeeOtherGuests": { + "stringValue": "true" + }, + "location": { + "stringValue": "Glean-SF-2nd Fl-SF-213 - Mr. Glean Side (5) [VC], Glean-PA-4th Fl-PA-404 - Sixglean Candles (10) [VC]" + }, + "meetUrl": { + "stringValue": "https://meet.google.com/edp-wcng-rok" + }, + "meetingParticipants": { + "stringListValue": [ + "c_188d279uf7gr4gqfif8vu64n3m7u6@resource.calendar.google.com", + "c_18804dq8ecbc8ga9mc6tpt3hmlnb0@resource.calendar.google.com", + "Emrecan Dogan", + "Steve Calvert", + "Rohan Vora", + "akash.sagar@glean.com", + "jassim.latif@glean.com", + "Shishir Agrawal", + "Tony Gentilcore", + "Allan Livingston", + "Cynthia Castro", + "James Pratama", + "Thai Tran", + "mayank.malhotra@glean.com", + "Christian Ervin", + "Meera Shah", + "Onder Polat", + "Arpit Agrawal", + "seema.jethani@glean.com", + "Vardhman Singh", + "Vish T R", + "Jen Zagofsky", + "Alice Wang", + "Ben McMahan", + "Cathy Chen", + "chaitanya@glean.com", + "Devansh Dwivedi", + "Kiran Bondalapati", + "Kumar Rangarajan", + "Max Comolli", + "Naveen Vardhi", + "Nilesh Dalvi", + "Pradnya Karbhari", + "Roshan Dheram", + "Sneha Chaudhari", + "Tao Zhou", + "Veraj Paruthi", + "Arjun Landes", + "Abhi Samantapudi" + ] + }, + "organizer": { + "stringListValue": [ + "8DB453CB59486720055706DC97E1A1E4" + ] + }, + "participants": { + "stringListValue": [ + "036E68EA2481588509A35D5BB80A30E9", + "0E8091AA5555CED306C5DD72C8021556", + "131E114578E20436A13A8A94584BC341", + "1C6D65D6601F40C7D8F378787210E821", + "22BF514F54A49F971EBF5F4A7786B240", + "2A5862FE5C36C6FA62EEE6CE6719E1F2", + "307E12B67CDE05441BB8CA690C5FDED1", + "34359DA304DF814EE238146E9C2B2589", + "36E60AA20CDFB2C33900A27DF9C1AA28", + "3BFE3D6190B9682B1A438729AACC9D51", + "410B15D507B1E77B0EB41EE50A33C166", + "4966E24E2C62B64000F0109EB4FEE5DA", + "4AA84BDDA6E70D0965CE45560DD1CD44", + "4F2A8867F57E2D3DD2575A09AC9832EC", + "582122941BDC99987291C2C075BB5201", + "5C29180F1E54B7CEF2296EC57E8CF1DD", + "5C441E2269720C069DC294814ACCF853", + "71E4BC9473BC36BB7E84E811C964C29A", + "78EF1448F0382566A25C8A5D6C795682", + "7B31A6206C218450C84C7C7E1AEE19D3", + "8DB453CB59486720055706DC97E1A1E4", + "90626173EE5666BB891147D9B1F40378", + "9D3ADD79909166094DB6ABBBDD65E1DE", + "A128BE9D255F61AD6787E3C35CB7CE4B", + "A73EAB1297F1C054549133D2C36C12D1", + "A7AC9B8E756572F9A5541538DE67F626", + "B3166CEF3548AA7E9343EA5F27D29736", + "B5D66443909C32C5925E45FD8B01F581", + "C5461EF5DE63DEE6447F3B507A0E7145", + "DB3969C214D7A3BB6BD544357A452344", + "F6B7F706CA221AE93BB3632F63CF10DC", + "F7090F3C9486EB6E2A2EA2F166F5A4D7" + ] + }, + "recurrenceId": { + "stringValue": "2oqkmhqkdc43ou57nc1kbedlip_R20251121T193000" + }, + "responseStatus": { + "stringValue": "accepted" + }, + "transcriptUrl": { + "stringValue": "https://docs.google.com/document/d/10rxDfHoLdTzNW4Ein0D736hV0IFUNLng-OrEhpZh6fI/edit?usp=meet_tnfm_calendar" + } + }, + "datasource": "googlecalendar", + "datasourceId": "2A85F4097AB50892B8C2CF1D9AC79CD1", + "datasourceInstance": "googlecalendar", + "documentCategory": "CALENDAR", + "documentId": "GOOGLECALENDAR_Event_2A85F4097AB50892B8C2CF1D9AC79CD1", + "interactions": {}, + "loggingId": "CCBFEC4F1FC75E2370518334592679A4", + "mimeType": "event", + "objectType": "event", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-12-05T19:30:00Z", + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "title": "RND Weekly Projects Check-In", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=Mm9xa21ocWtkYzQzb3U1N25jMWtiZWRsaXBfMjAyNTEyMDVUMTkzMDAwWiA%3D" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 36, + "startIndex": 29, + "type": "BOLD" + }, + { + "endIndex": 52, + "startIndex": 37, + "type": "LINK", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?usp=sharing" + } + ], + "snippet": "", + "text": "You are a DRI for one of our Monthly Q4 Top projects:" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Please review the status update, make proposed changes" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 2, + "text": "If your status is green/ontrack to current exit goal, you can skip" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "If your status is yellow/red, come prepare to share what you need to get" + } + ], + "title": "RND Weekly Projects Check-In", + "trackingToken": "cECla84C8x3dDFYp,CtMBChBjRUNsYTg0Qzh4M2RERllwEAUaNUdPT0dMRUNBTEVOREFSX0V2ZW50XzJBODVGNDA5N0FCNTA4OTJCOEMyQ0YxRDlBQzc5Q0QxIg5nb29nbGVjYWxlbmRhcioDYWxsMgVldmVudDoIQ0FMRU5EQVJIBVJeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=Mm9xa21ocWtkYzQzb3U1N25jMWtiZWRsaXBfMjAyNTEyMDVUMTkzMDAwWiA%3D" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-11-21T20:03:42Z", + "datasource": "gdrive", + "datasourceId": "1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg", + "interactions": {}, + "loggingId": "7F19EC39C179E9D6844B21E90E785C5A", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-21T20:34:12Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/11/21 13:25 CST - Notes by Gemini", + "url": "https://docs.google.com/document/d/1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 60, + "startIndex": 53, + "type": "BOLD" + }, + { + "endIndex": 85, + "startIndex": 80, + "type": "BOLD" + }, + { + "endIndex": 117, + "startIndex": 113, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 1, + "text": "The beta for Composer to go to Assistant, originally planned for the end of the month, will now likely slip by a week to early December. ", + "url": "https://docs.google.com/document/d/1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg?tab=t.1otpc38608hx#heading=h.muy5kxxs3vua" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 4, + "startIndex": 0, + "type": "BOLD" + } + ], + "snippet": "", + "text": "Plan Someone in 404 | Sixglean Candles (Glean HQ, 4th Fl) provided updates on Chat search unification, noting that", + "url": "https://docs.google.com/document/d/1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg?tab=t.1otpc38608hx#heading=h.muy5kxxs3vua" + } + ], + "title": "RND Weekly Projects Check-In - 2025/11/21 13:25 CST - Notes by Gemini", + "trackingToken": "cECla84C8x3dDFYp,CtkBChBjRUNsYTg0Qzh4M2RERllwEAYaM0dEUklWRV8xLWJyWF95Nm0zelp4TlJPSVJfeEY5bnFRaE54YUVsUjRrZlkzZ2tPb2VaZyIGZ2RyaXZlKgNhbGwyCERvY3VtZW50OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRIBlJeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://docs.google.com/document/d/1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Text", + "id": "GDRIVE_1NGaojbq9Dx-iQDJVLXv4iChADecSATdt", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-11-21T20:28:27Z", + "datasource": "gdrive", + "datasourceId": "1NGaojbq9Dx-iQDJVLXv4iChADecSATdt", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1NGaojbq9Dx-iQDJVLXv4iChADecSATdt", + "interactions": {}, + "loggingId": "501E4567A68B259E2DD56A0F8B42C567", + "mimeType": "text/plain", + "objectType": "Text", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-21T20:28:28Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/11/21 13:25 CST - Chat", + "url": "https://drive.google.com/file/d/1NGaojbq9Dx-iQDJVLXv4iChADecSATdt" + }, + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "00:29:20.803,00:29:23.803" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Christian Ervin: Callout to Steve / any DRIs: if you ever find yourselves blocked by design please reach out to me" + } + ], + "title": "RND Weekly Projects Check-In - 2025/11/21 13:25 CST - Chat", + "trackingToken": "cECla84C8x3dDFYp,CsoBChBjRUNsYTg0Qzh4M2RERllwEAcaKEdEUklWRV8xTkdhb2picTlEeC1pUURKVkxYdjRpQ2hBRGVjU0FUZHQiBmdkcml2ZSoDYWxsMgRUZXh0OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRIB1JeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://drive.google.com/file/d/1NGaojbq9Dx-iQDJVLXv4iChADecSATdt" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Video", + "id": "GDRIVE_1xLwW_dXMA4x3IPADjyKUXbK63uW1a-54", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-11-21T20:28:27Z", + "datasource": "gdrive", + "datasourceId": "1xLwW_dXMA4x3IPADjyKUXbK63uW1a-54", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1xLwW_dXMA4x3IPADjyKUXbK63uW1a-54", + "interactions": {}, + "loggingId": "5A54E2CF78E0E611AA2CE029D421566A", + "mimeType": "video/mp4", + "objectType": "Video", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-21T20:28:28Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/11/21 13:25 CST - Recording", + "url": "https://drive.google.com/file/d/1xLwW_dXMA4x3IPADjyKUXbK63uW1a-54" + }, + "snippets": [ + { + "snippet": "" + } + ], + "title": "RND Weekly Projects Check-In - 2025/11/21 13:25 CST - Recording", + "trackingToken": "cECla84C8x3dDFYp,CssBChBjRUNsYTg0Qzh4M2RERllwEAkaKEdEUklWRV8xeEx3V19kWE1BNHgzSVBBRGp5S1VYYks2M3VXMWEtNTQiBmdkcml2ZSoDYWxsMgVWaWRlbzoVQ09MTEFCT1JBVElWRV9DT05URU5USAlSXhozR0RSSVZFXzFQRGl6aWNEaWhrYTdzMVZndUpVMUxKcHRBT3pGTEFpSFN2QzZRbHljVjZBIgZnZHJpdmUqCERvY3VtZW50MhVDT0xMQUJPUkFUSVZFX0NPTlRFTlQ=", + "url": "https://drive.google.com/file/d/1xLwW_dXMA4x3IPADjyKUXbK63uW1a-54" + }, + { + "document": { + "datasource": "googlecalendar", + "docType": "event", + "id": "GOOGLECALENDAR_Event_B0FD5DEE91CEEB96A43E4100D5978DBF", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "createTime": "2025-11-21T19:30:00Z", + "customData": { + "attachmentUrls": { + "stringValue": "https://drive.google.com/file/d/1xLwW_dXMA4x3IPADjyKUXbK63uW1a-54/view?usp=drive_web\nhttps://drive.google.com/file/d/1NGaojbq9Dx-iQDJVLXv4iChADecSATdt/view?usp=drive_web\nhttps://docs.google.com/document/d/1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg/edit?usp=meet_tnfm_calendar\nhttps://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?usp=sharing" + }, + "attendeeDetails": { + "stringValue": "[{\"name\":\"Emrecan Dogan\",\"responseStatus\":\"accepted\"},{\"name\":\"Steve Calvert\",\"responseStatus\":\"accepted\"},{\"name\":\"Rohan Vora\",\"responseStatus\":\"tentative\"},{\"name\":\"akash.sagar@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"Jassim Latif\",\"responseStatus\":\"needsAction\"},{\"name\":\"Shishir Agrawal\",\"responseStatus\":\"accepted\"},{\"name\":\"Tony Gentilcore\",\"responseStatus\":\"accepted\"},{\"name\":\"Allan Livingston\",\"responseStatus\":\"accepted\"},{\"name\":\"cynthia.castro@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"James Pratama\",\"responseStatus\":\"accepted\"},{\"name\":\"Thai Tran\",\"responseStatus\":\"accepted\"},{\"name\":\"Mayank Malhotra\",\"responseStatus\":\"accepted\"},{\"name\":\"Christian Ervin\",\"responseStatus\":\"needsAction\"},{\"name\":\"Meera Shah\",\"responseStatus\":\"accepted\"},{\"name\":\"Onder Polat\",\"responseStatus\":\"accepted\"},{\"name\":\"Arpit Agrawal\",\"responseStatus\":\"declined\"},{\"name\":\"Seema Jethani\",\"responseStatus\":\"accepted\"},{\"name\":\"Vardhman Singh\",\"responseStatus\":\"needsAction\"},{\"name\":\"Vishwanath T R\",\"responseStatus\":\"accepted\"},{\"name\":\"Jen Zagofsky\",\"responseStatus\":\"accepted\"},{\"name\":\"alice@glean.com\",\"responseStatus\":\"declined\"},{\"name\":\"benjamin.mcmahan@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"cathy.chen@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"chaitanya@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"devansh.dwivedi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"kiran.bondalapati@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"kumar@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"max.comolli@glean.com\",\"responseStatus\":\"declined\"},{\"name\":\"naveen.vardhi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"nilesh.dalvi@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"pradnya.karbhari@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"roshan.dheram@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"sneha.chaudhari@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"tao.zhou@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"veraj.paruthi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"arjun@glean.com\",\"responseStatus\":\"declined\"},{\"name\":\"abhi.samantapudi@glean.com\",\"responseStatus\":\"accepted\"}]" + }, + "conferenceProvider": { + "stringValue": "Google Meet" + }, + "conferenceUri": { + "stringValue": "https://meet.google.com/edp-wcng-rok" + }, + "created": { + "stringValue": "2025-10-17T23:29:53.000Z" + }, + "creatorName": { + "stringValue": "Cynthia Castro" + }, + "eventEndTime": { + "stringValue": "2025-11-21T14:00:00.000-06:00" + }, + "eventStartTime": { + "stringValue": "2025-11-21T13:30:00.000-06:00" + }, + "eventStatus": { + "stringValue": "confirmed" + }, + "eventType": { + "stringValue": "default" + }, + "guestsCanSeeOtherGuests": { + "stringValue": "true" + }, + "location": { + "stringValue": "Glean-SF-2nd Fl-SF-213 - Mr. Glean Side (5) [VC], Glean-PA-4th Fl-PA-404 - Sixglean Candles (10) [VC]" + }, + "meetUrl": { + "stringValue": "https://meet.google.com/edp-wcng-rok" + }, + "meetingParticipants": { + "stringListValue": [ + "c_188d279uf7gr4gqfif8vu64n3m7u6@resource.calendar.google.com", + "c_18804dq8ecbc8ga9mc6tpt3hmlnb0@resource.calendar.google.com", + "Emrecan Dogan", + "Steve Calvert", + "Rohan Vora", + "akash.sagar@glean.com", + "jassim.latif@glean.com", + "Shishir Agrawal", + "Tony Gentilcore", + "Allan Livingston", + "Cynthia Castro", + "James Pratama", + "Thai Tran", + "mayank.malhotra@glean.com", + "Christian Ervin", + "Meera Shah", + "Onder Polat", + "Arpit Agrawal", + "seema.jethani@glean.com", + "Vardhman Singh", + "Vish T R", + "Jen Zagofsky", + "Alice Wang", + "Ben McMahan", + "Cathy Chen", + "chaitanya@glean.com", + "Devansh Dwivedi", + "Kiran Bondalapati", + "Kumar Rangarajan", + "Max Comolli", + "Naveen Vardhi", + "Nilesh Dalvi", + "Pradnya Karbhari", + "Roshan Dheram", + "Sneha Chaudhari", + "Tao Zhou", + "Veraj Paruthi", + "Arjun Landes", + "Abhi Samantapudi" + ] + }, + "organizer": { + "stringListValue": [ + "8DB453CB59486720055706DC97E1A1E4" + ] + }, + "participants": { + "stringListValue": [ + "036E68EA2481588509A35D5BB80A30E9", + "0E8091AA5555CED306C5DD72C8021556", + "131E114578E20436A13A8A94584BC341", + "1C6D65D6601F40C7D8F378787210E821", + "22BF514F54A49F971EBF5F4A7786B240", + "2A5862FE5C36C6FA62EEE6CE6719E1F2", + "307E12B67CDE05441BB8CA690C5FDED1", + "34359DA304DF814EE238146E9C2B2589", + "36E60AA20CDFB2C33900A27DF9C1AA28", + "3BFE3D6190B9682B1A438729AACC9D51", + "410B15D507B1E77B0EB41EE50A33C166", + "4966E24E2C62B64000F0109EB4FEE5DA", + "4AA84BDDA6E70D0965CE45560DD1CD44", + "4F2A8867F57E2D3DD2575A09AC9832EC", + "582122941BDC99987291C2C075BB5201", + "5C29180F1E54B7CEF2296EC57E8CF1DD", + "5C441E2269720C069DC294814ACCF853", + "71E4BC9473BC36BB7E84E811C964C29A", + "78EF1448F0382566A25C8A5D6C795682", + "7B31A6206C218450C84C7C7E1AEE19D3", + "8DB453CB59486720055706DC97E1A1E4", + "90626173EE5666BB891147D9B1F40378", + "9D3ADD79909166094DB6ABBBDD65E1DE", + "A128BE9D255F61AD6787E3C35CB7CE4B", + "A73EAB1297F1C054549133D2C36C12D1", + "A7AC9B8E756572F9A5541538DE67F626", + "B3166CEF3548AA7E9343EA5F27D29736", + "B5D66443909C32C5925E45FD8B01F581", + "C5461EF5DE63DEE6447F3B507A0E7145", + "DB3969C214D7A3BB6BD544357A452344", + "F6B7F706CA221AE93BB3632F63CF10DC", + "F7090F3C9486EB6E2A2EA2F166F5A4D7" + ] + }, + "recurrenceId": { + "stringValue": "2oqkmhqkdc43ou57nc1kbedlip_R20251121T193000" + }, + "responseStatus": { + "stringValue": "accepted" + }, + "transcriptUrl": { + "stringValue": "https://docs.google.com/document/d/1-brX_y6m3zZxNROIR_xF9nqQhNxaElR4kfY3gkOoeZg/edit?usp=meet_tnfm_calendar" + } + }, + "datasource": "googlecalendar", + "datasourceId": "B0FD5DEE91CEEB96A43E4100D5978DBF", + "datasourceInstance": "googlecalendar", + "documentCategory": "CALENDAR", + "documentId": "GOOGLECALENDAR_Event_B0FD5DEE91CEEB96A43E4100D5978DBF", + "interactions": {}, + "loggingId": "67579102792E6FEE042F8B107AA70BF5", + "mimeType": "event", + "objectType": "event", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-21T19:30:00Z", + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "title": "RND Weekly Projects Check-In", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=Mm9xa21ocWtkYzQzb3U1N25jMWtiZWRsaXBfMjAyNTExMjFUMTkzMDAwWiA%3D" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 36, + "startIndex": 29, + "type": "BOLD" + }, + { + "endIndex": 52, + "startIndex": 37, + "type": "LINK", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?usp=sharing" + } + ], + "snippet": "", + "text": "You are a DRI for one of our Monthly Q4 Top projects:" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Please review the status update, make proposed changes" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 2, + "text": "If your status is green/ontrack to current exit goal, you can skip" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "If your status is yellow/red, come prepare to share what you need to get" + } + ], + "title": "RND Weekly Projects Check-In", + "trackingToken": "cECla84C8x3dDFYp,CtMBChBjRUNsYTg0Qzh4M2RERllwEAoaNUdPT0dMRUNBTEVOREFSX0V2ZW50X0IwRkQ1REVFOTFDRUVCOTZBNDNFNDEwMEQ1OTc4REJGIg5nb29nbGVjYWxlbmRhcioDYWxsMgVldmVudDoIQ0FMRU5EQVJIClJeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=Mm9xa21ocWtkYzQzb3U1N25jMWtiZWRsaXBfMjAyNTExMjFUMTkzMDAwWiA%3D" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-11-07T20:07:27Z", + "datasource": "gdrive", + "datasourceId": "1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk", + "interactions": {}, + "loggingId": "4909A3DE5A41444639724DCFE87484BC", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-07T21:08:00Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/11/07 13:25 CST - Notes by Gemini", + "url": "https://docs.google.com/document/d/1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 129, + "startIndex": 125, + "type": "BOLD" + } + ], + "snippet": "", + "text": "in 404 | Sixglean Candles (Glean HQ, 4th Fl) inquired about tracking progress, and the team confirmed that while they have a plan to measure it, execution has not started yet, as they need to figure out logging and build data models. ", + "url": "https://docs.google.com/document/d/1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk?tab=t.dagzy0ou9kmm#heading=h.s2eokl6rhusj" + } + ], + "title": "RND Weekly Projects Check-In - 2025/11/07 13:25 CST - Notes by Gemini", + "trackingToken": "cECla84C8x3dDFYp,CtkBChBjRUNsYTg0Qzh4M2RERllwEAsaM0dEUklWRV8xczQwRkRyUmZ2V3VvZEpsRG5qZVN2X0xCTEhSTnFJOTdJM1R4LUhqSG1ZayIGZ2RyaXZlKgNhbGwyCERvY3VtZW50OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRIC1JeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://docs.google.com/document/d/1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Text", + "id": "GDRIVE_16aXx8fKX7NlDeH_2q6qFgriDUl0VTQPs", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-11-07T20:56:03Z", + "datasource": "gdrive", + "datasourceId": "16aXx8fKX7NlDeH_2q6qFgriDUl0VTQPs", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_16aXx8fKX7NlDeH_2q6qFgriDUl0VTQPs", + "interactions": {}, + "loggingId": "73E0BAA5801A4C6E77BFEE0692C2D841", + "mimeType": "text/plain", + "objectType": "Text", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-07T20:56:04Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/11/07 13:25 CST - Chat", + "url": "https://drive.google.com/file/d/16aXx8fKX7NlDeH_2q6qFgriDUl0VTQPs" + }, + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "00:01:14.299,00:01:17.299" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Jen Zagofsky: https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?tab=t.qbvr5vwrwmad" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 2, + "text": "00:03:39.852,00:03:42.852" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "Mayank Malhotra: No pressure Cathy" + } + ], + "title": "RND Weekly Projects Check-In - 2025/11/07 13:25 CST - Chat", + "trackingToken": "cECla84C8x3dDFYp,CsoBChBjRUNsYTg0Qzh4M2RERllwEAwaKEdEUklWRV8xNmFYeDhmS1g3TmxEZUhfMnE2cUZncmlEVWwwVlRRUHMiBmdkcml2ZSoDYWxsMgRUZXh0OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRIDFJeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://drive.google.com/file/d/16aXx8fKX7NlDeH_2q6qFgriDUl0VTQPs" + }, + { + "document": { + "datasource": "gdrive", + "docType": "Video", + "id": "GDRIVE_1Tm_cMMRcEpd7vBxOqdqcEZSMLfd9ZeD_", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "container": "Meet Recordings", + "createTime": "2025-11-07T20:56:03Z", + "datasource": "gdrive", + "datasourceId": "1Tm_cMMRcEpd7vBxOqdqcEZSMLfd9ZeD_", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1Tm_cMMRcEpd7vBxOqdqcEZSMLfd9ZeD_", + "interactions": {}, + "loggingId": "592609697890ED73AB0189BF3DC16298", + "mimeType": "video/mp4", + "objectType": "Video", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-07T20:56:04Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "parentDocument": { + "title": "Meet Recordings" + }, + "title": "RND Weekly Projects Check-In - 2025/11/07 13:25 CST - Recording", + "url": "https://drive.google.com/file/d/1Tm_cMMRcEpd7vBxOqdqcEZSMLfd9ZeD_" + }, + "snippets": [ + { + "snippet": "" + } + ], + "title": "RND Weekly Projects Check-In - 2025/11/07 13:25 CST - Recording", + "trackingToken": "cECla84C8x3dDFYp,CssBChBjRUNsYTg0Qzh4M2RERllwEA4aKEdEUklWRV8xVG1fY01NUmNFcGQ3dkJ4T3FkcWNFWlNNTGZkOVplRF8iBmdkcml2ZSoDYWxsMgVWaWRlbzoVQ09MTEFCT1JBVElWRV9DT05URU5USA5SXhozR0RSSVZFXzFQRGl6aWNEaWhrYTdzMVZndUpVMUxKcHRBT3pGTEFpSFN2QzZRbHljVjZBIgZnZHJpdmUqCERvY3VtZW50MhVDT0xMQUJPUkFUSVZFX0NPTlRFTlQ=", + "url": "https://drive.google.com/file/d/1Tm_cMMRcEpd7vBxOqdqcEZSMLfd9ZeD_" + }, + { + "document": { + "datasource": "googlecalendar", + "docType": "event", + "id": "GOOGLECALENDAR_Event_8D2C7400BBCEE701C10048B1FDC3A9E5", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "createTime": "2025-11-07T19:30:00Z", + "customData": { + "attachmentUrls": { + "stringValue": "https://drive.google.com/file/d/1Tm_cMMRcEpd7vBxOqdqcEZSMLfd9ZeD_/view?usp=drive_web\nhttps://drive.google.com/file/d/16aXx8fKX7NlDeH_2q6qFgriDUl0VTQPs/view?usp=drive_web\nhttps://docs.google.com/document/d/1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk/edit?usp=meet_tnfm_calendar\nhttps://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?usp=sharing" + }, + "attendeeDetails": { + "stringValue": "[{\"name\":\"Emrecan Dogan\",\"responseStatus\":\"accepted\"},{\"name\":\"Steve Calvert\",\"responseStatus\":\"accepted\"},{\"name\":\"Rohan Vora\",\"responseStatus\":\"accepted\"},{\"name\":\"Jassim Latif\",\"responseStatus\":\"declined\"},{\"name\":\"Shishir Agrawal\",\"responseStatus\":\"accepted\"},{\"name\":\"Tony Gentilcore\",\"responseStatus\":\"accepted\"},{\"name\":\"Allan Livingston\",\"responseStatus\":\"accepted\"},{\"name\":\"cynthia.castro@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"James Pratama\",\"responseStatus\":\"accepted\"},{\"name\":\"Thai Tran\",\"responseStatus\":\"accepted\"},{\"name\":\"Mayank Malhotra\",\"responseStatus\":\"accepted\"},{\"name\":\"Christian Ervin\",\"responseStatus\":\"needsAction\"},{\"name\":\"Meera Shah\",\"responseStatus\":\"accepted\"},{\"name\":\"Onder Polat\",\"responseStatus\":\"accepted\"},{\"name\":\"Arpit Agrawal\",\"responseStatus\":\"declined\"},{\"name\":\"Seema Jethani\",\"responseStatus\":\"needsAction\"},{\"name\":\"Vardhman Singh\",\"responseStatus\":\"needsAction\"},{\"name\":\"Vishwanath T R\",\"responseStatus\":\"accepted\"},{\"name\":\"Jen Zagofsky\",\"responseStatus\":\"accepted\"},{\"name\":\"alice@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"benjamin.mcmahan@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"cathy.chen@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"chaitanya@glean.com\",\"responseStatus\":\"declined\"},{\"name\":\"devansh.dwivedi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"kiran.bondalapati@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"kumar@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"max.comolli@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"naveen.vardhi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"nilesh.dalvi@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"pradnya.karbhari@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"roshan.dheram@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"sneha.chaudhari@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"tao.zhou@glean.com\",\"responseStatus\":\"needsAction\"},{\"name\":\"veraj.paruthi@glean.com\",\"responseStatus\":\"accepted\"}]" + }, + "conferenceProvider": { + "stringValue": "Google Meet" + }, + "conferenceUri": { + "stringValue": "https://meet.google.com/edp-wcng-rok" + }, + "created": { + "stringValue": "2025-10-17T23:29:53.000Z" + }, + "creatorName": { + "stringValue": "Cynthia Castro" + }, + "eventEndTime": { + "stringValue": "2025-11-07T14:00:00.000-06:00" + }, + "eventStartTime": { + "stringValue": "2025-11-07T13:30:00.000-06:00" + }, + "eventStatus": { + "stringValue": "confirmed" + }, + "eventType": { + "stringValue": "default" + }, + "guestsCanSeeOtherGuests": { + "stringValue": "true" + }, + "location": { + "stringValue": "Glean-SF-2nd Fl-SF-213 - Mr. Glean Side (5) [VC], Glean-PA-4th Fl-PA-404 - Sixglean Candles (10) [VC]" + }, + "meetUrl": { + "stringValue": "https://meet.google.com/edp-wcng-rok" + }, + "meetingParticipants": { + "stringListValue": [ + "c_188d279uf7gr4gqfif8vu64n3m7u6@resource.calendar.google.com", + "c_18804dq8ecbc8ga9mc6tpt3hmlnb0@resource.calendar.google.com", + "Emrecan Dogan", + "Steve Calvert", + "Rohan Vora", + "jassim.latif@glean.com", + "Shishir Agrawal", + "Tony Gentilcore", + "Allan Livingston", + "Cynthia Castro", + "James Pratama", + "Thai Tran", + "mayank.malhotra@glean.com", + "Christian Ervin", + "Meera Shah", + "Onder Polat", + "Arpit Agrawal", + "seema.jethani@glean.com", + "Vardhman Singh", + "Vish T R", + "Jen Zagofsky", + "Alice Wang", + "Ben McMahan", + "Cathy Chen", + "chaitanya@glean.com", + "Devansh Dwivedi", + "Kiran Bondalapati", + "Kumar Rangarajan", + "Max Comolli", + "Naveen Vardhi", + "Nilesh Dalvi", + "Pradnya Karbhari", + "Roshan Dheram", + "Sneha Chaudhari", + "Tao Zhou", + "Veraj Paruthi" + ] + }, + "organizer": { + "stringListValue": [ + "8DB453CB59486720055706DC97E1A1E4" + ] + }, + "participants": { + "stringListValue": [ + "036E68EA2481588509A35D5BB80A30E9", + "0E8091AA5555CED306C5DD72C8021556", + "131E114578E20436A13A8A94584BC341", + "1C6D65D6601F40C7D8F378787210E821", + "22BF514F54A49F971EBF5F4A7786B240", + "2A5862FE5C36C6FA62EEE6CE6719E1F2", + "307E12B67CDE05441BB8CA690C5FDED1", + "3BFE3D6190B9682B1A438729AACC9D51", + "410B15D507B1E77B0EB41EE50A33C166", + "4966E24E2C62B64000F0109EB4FEE5DA", + "4AA84BDDA6E70D0965CE45560DD1CD44", + "4F2A8867F57E2D3DD2575A09AC9832EC", + "582122941BDC99987291C2C075BB5201", + "5C29180F1E54B7CEF2296EC57E8CF1DD", + "5C441E2269720C069DC294814ACCF853", + "71E4BC9473BC36BB7E84E811C964C29A", + "78EF1448F0382566A25C8A5D6C795682", + "7B31A6206C218450C84C7C7E1AEE19D3", + "8DB453CB59486720055706DC97E1A1E4", + "90626173EE5666BB891147D9B1F40378", + "9D3ADD79909166094DB6ABBBDD65E1DE", + "A128BE9D255F61AD6787E3C35CB7CE4B", + "A73EAB1297F1C054549133D2C36C12D1", + "A7AC9B8E756572F9A5541538DE67F626", + "B3166CEF3548AA7E9343EA5F27D29736", + "B5D66443909C32C5925E45FD8B01F581", + "C5461EF5DE63DEE6447F3B507A0E7145", + "DB3969C214D7A3BB6BD544357A452344", + "F6B7F706CA221AE93BB3632F63CF10DC", + "F7090F3C9486EB6E2A2EA2F166F5A4D7" + ] + }, + "recurrenceId": { + "stringValue": "2oqkmhqkdc43ou57nc1kbedlip_R20251107T193000" + }, + "responseStatus": { + "stringValue": "accepted" + }, + "transcriptUrl": { + "stringValue": "https://docs.google.com/document/d/1s40FDrRfvWuodJlDnjeSv_LBLHRNqI97I3Tx-HjHmYk/edit?usp=meet_tnfm_calendar" + } + }, + "datasource": "googlecalendar", + "datasourceId": "8D2C7400BBCEE701C10048B1FDC3A9E5", + "datasourceInstance": "googlecalendar", + "documentCategory": "CALENDAR", + "documentId": "GOOGLECALENDAR_Event_8D2C7400BBCEE701C10048B1FDC3A9E5", + "interactions": {}, + "loggingId": "AEAE83B579C5606CD834FBD5063A291B", + "mimeType": "event", + "objectType": "event", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "8DB453CB59486720055706DC97E1A1E4" + }, + "name": "Cynthia Castro", + "obfuscatedId": "8DB453CB59486720055706DC97E1A1E4" + }, + "updateTime": "2025-11-07T19:30:00Z", + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "title": "RND Weekly Projects Check-In", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=Mm9xa21ocWtkYzQzb3U1N25jMWtiZWRsaXBfMjAyNTExMDdUMTkzMDAwWiA%3D" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 36, + "startIndex": 29, + "type": "BOLD" + }, + { + "endIndex": 52, + "startIndex": 37, + "type": "LINK", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A/edit?usp=sharing" + } + ], + "snippet": "", + "text": "You are a DRI for one of our Monthly Q4 Top projects:" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "Please review the status update, make proposed changes" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 2, + "text": "If your status is green/ontrack to current exit goal, you can skip" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "If your status is yellow/red, come prepare to share what you need to get" + } + ], + "title": "RND Weekly Projects Check-In", + "trackingToken": "cECla84C8x3dDFYp,CtMBChBjRUNsYTg0Qzh4M2RERllwEA8aNUdPT0dMRUNBTEVOREFSX0V2ZW50XzhEMkM3NDAwQkJDRUU3MDFDMTAwNDhCMUZEQzNBOUU1Ig5nb29nbGVjYWxlbmRhcioDYWxsMgVldmVudDoIQ0FMRU5EQVJID1JeGjNHRFJJVkVfMVBEaXppY0RpaGthN3MxVmd1SlUxTEpwdEFPekZMQWlIU3ZDNlFseWNWNkEiBmdkcml2ZSoIRG9jdW1lbnQyFUNPTExBQk9SQVRJVkVfQ09OVEVOVA==", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=Mm9xa21ocWtkYzQzb3U1N25jMWtiZWRsaXBfMjAyNTExMDdUMTkzMDAwWiA%3D" + } + ], + "clusterType": "SIMILAR", + "clusteredResults": [ + { + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "name": "Emrecan Dogan", + "obfuscatedId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "name": "Emrecan Dogan", + "obfuscatedId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "createTime": "2025-08-06T00:09:25Z", + "datasource": "gdrive", + "datasourceId": "1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw", + "interactions": {}, + "loggingId": "30ED6912A34D6822F87F2C9FC84E557C", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "name": "Emrecan Dogan", + "obfuscatedId": "9D3ADD79909166094DB6ABBBDD65E1DE" + }, + "updateTime": "2025-11-17T02:04:11Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "90626173EE5666BB891147D9B1F40378" + }, + "name": "Onder Polat", + "obfuscatedId": "90626173EE5666BB891147D9B1F40378" + }, + "verification": { + "state": "UNVERIFIED" + }, + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "id": "GDRIVE_0ABEA3vq51xS3Uk9PVA" + }, + "title": "R\u0026D Execution Plan for FY26 Q3 (Aug / Sep / Oct)", + "url": "https://docs.google.com/document/d/1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw" + }, + "title": "R\u0026D Execution Plan for FY26 Q3 (Aug / Sep / Oct)", + "trackingToken": "cECla84C8x3dDFYp,CnkKEGNFQ2xhODRDOHgzZERGWXAQARozR0RSSVZFXzFaQVcxYlAwNml0Ti0tNHY3RFVPTlp3Vk5Ua016TWxISU9CMHgwbXZWakx3IgZnZHJpdmUqA2FsbDIIRG9jdW1lbnQ6FUNPTExBQk9SQVRJVkVfQ09OVEVOVEgB", + "url": "https://docs.google.com/document/d/1ZAW1bP06itN--4v7DUONZwVNTkMzMlHIOB0x0mvVjLw" + } + ], + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "582122941BDC99987291C2C075BB5201" + }, + "name": "Jen Zagofsky", + "obfuscatedId": "582122941BDC99987291C2C075BB5201" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "582122941BDC99987291C2C075BB5201" + }, + "name": "Jen Zagofsky", + "obfuscatedId": "582122941BDC99987291C2C075BB5201" + }, + "collections": [ + { + "createTime": "2025-11-30T23:38:04Z", + "creator": { + "metadata": { + "department": "304 Product", + "email": "thai.tran@glean.com", + "firstName": "Thai", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Tran", + "loggingId": "5C29180F1E54B7CEF2296EC57E8CF1DD", + "photoUrl": "https://avatars.slack-edge.com/2024-01-03/6430470112449_89b00f0679b9c157fbae_192.png", + "title": "Product Manager" + }, + "name": "Thai Tran", + "obfuscatedId": "5C29180F1E54B7CEF2296EC57E8CF1DD" + }, + "description": "Docs related to Assistant FY27 Strategy", + "icon": "📘", + "id": 5135, + "itemCount": 5, + "name": "Assistant FY27 Strategy", + "updateTime": "2025-11-30T23:40:34Z", + "updatedBy": { + "metadata": { + "department": "304 Product", + "email": "thai.tran@glean.com", + "firstName": "Thai", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Tran", + "loggingId": "5C29180F1E54B7CEF2296EC57E8CF1DD", + "photoUrl": "https://avatars.slack-edge.com/2024-01-03/6430470112449_89b00f0679b9c157fbae_192.png", + "title": "Product Manager" + }, + "name": "Thai Tran", + "obfuscatedId": "5C29180F1E54B7CEF2296EC57E8CF1DD" + } + }, + { + "createTime": "2025-11-04T01:17:45Z", + "creator": { + "metadata": { + "department": "304 Product", + "email": "thai.tran@glean.com", + "firstName": "Thai", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Tran", + "loggingId": "5C29180F1E54B7CEF2296EC57E8CF1DD", + "photoUrl": "https://avatars.slack-edge.com/2024-01-03/6430470112449_89b00f0679b9c157fbae_192.png", + "title": "Product Manager" + }, + "name": "Thai Tran", + "obfuscatedId": "5C29180F1E54B7CEF2296EC57E8CF1DD" + }, + "description": "Assistant projects and goals", + "icon": "🎯", + "id": 4794, + "itemCount": 4, + "name": "Assistant OKRs", + "updateTime": "2025-11-05T06:08:43Z", + "updatedBy": { + "metadata": { + "department": "304 Product", + "email": "rohan.vora@glean.com", + "firstName": "Rohan", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Vora", + "loggingId": "0E8091AA5555CED306C5DD72C8021556", + "photoUrl": "https://avatars.slack-edge.com/2023-12-30/6401195733654_e1416757174ef9470a53_192.png", + "title": "Product Manager" + }, + "name": "Rohan Vora", + "obfuscatedId": "0E8091AA5555CED306C5DD72C8021556" + } + }, + { + "createTime": "2025-11-04T18:29:59Z", + "creator": { + "metadata": { + "department": "304 Product", + "email": "jen.zagofsky@glean.com", + "firstName": "Jen", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Zagofsky", + "loggingId": "582122941BDC99987291C2C075BB5201", + "photoUrl": "https://avatars.slack-edge.com/2025-12-06/10072454275364_720ca9fed3e0510c11ba_192.png", + "title": "Head of R\u0026D Operations" + }, + "name": "Jen Zagofsky", + "obfuscatedId": "582122941BDC99987291C2C075BB5201" + }, + "description": "Collect planning artifacts related to Q4FY26 and the months within", + "id": 4800, + "itemCount": 29, + "name": "R\u0026D Q4FY26 OKRs / Monthly Goals (go/rnd-fy26q4-plans)", + "parentId": 4065, + "updateTime": "2025-11-19T17:06:31Z", + "updatedBy": { + "metadata": { + "department": "302 Software Engineering", + "email": "vardhman.singh@glean.com", + "firstName": "Vardhman", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Singh", + "loggingId": "A73EAB1297F1C054549133D2C36C12D1", + "photoUrl": "https://avatars.slack-edge.com/2022-06-26/3721045967379_5b62d8a8b69c21cab71e_192.jpg", + "title": "Software Engineer" + }, + "name": "Vardhman Singh", + "obfuscatedId": "A73EAB1297F1C054549133D2C36C12D1" + } + }, + { + "createTime": "2025-12-01T05:34:12Z", + "creator": { + "metadata": { + "department": "305 Design", + "email": "christian.ervin@glean.com", + "firstName": "Christian", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Ervin", + "loggingId": "7B31A6206C218450C84C7C7E1AEE19D3", + "photoUrl": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6IjM1OGM1NjBhLTcxYTctNDVkNy04NTZjLTRkNmNlZDgxZWVkZCIsImV4dCI6Ii5qcGVnIn0=", + "title": "Head of Design" + }, + "name": "Christian Ervin", + "obfuscatedId": "7B31A6206C218450C84C7C7E1AEE19D3" + }, + "description": "A space to refine our approach to slide generation in Assistant.", + "icon": "🖼️", + "id": 5136, + "itemCount": 12, + "name": "Slide Generation", + "updateTime": "2025-12-01T05:37:42Z", + "updatedBy": { + "metadata": { + "department": "305 Design", + "email": "christian.ervin@glean.com", + "firstName": "Christian", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Ervin", + "loggingId": "7B31A6206C218450C84C7C7E1AEE19D3", + "photoUrl": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6IjM1OGM1NjBhLTcxYTctNDVkNy04NTZjLTRkNmNlZDgxZWVkZCIsImV4dCI6Ii5qcGVnIn0=", + "title": "Head of Design" + }, + "name": "Christian Ervin", + "obfuscatedId": "7B31A6206C218450C84C7C7E1AEE19D3" + } + }, + { + "createTime": "2026-01-05T23:26:08Z", + "creator": { + "metadata": { + "department": "305 Design", + "email": "christian.ervin@glean.com", + "firstName": "Christian", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Ervin", + "loggingId": "7B31A6206C218450C84C7C7E1AEE19D3", + "photoUrl": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6IjM1OGM1NjBhLTcxYTctNDVkNy04NTZjLTRkNmNlZDgxZWVkZCIsImV4dCI6Ii5qcGVnIn0=", + "title": "Head of Design" + }, + "name": "Christian Ervin", + "obfuscatedId": "7B31A6206C218450C84C7C7E1AEE19D3" + }, + "description": "A space on the latest product strategy for spaces (q4 FY26)", + "icon": "🌌", + "id": 5544, + "itemCount": 7, + "name": "Spaces Space on Spaces", + "updateTime": "2026-01-05T23:26:53Z", + "updatedBy": { + "metadata": { + "department": "305 Design", + "email": "christian.ervin@glean.com", + "firstName": "Christian", + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Ervin", + "loggingId": "7B31A6206C218450C84C7C7E1AEE19D3", + "photoUrl": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6IjM1OGM1NjBhLTcxYTctNDVkNy04NTZjLTRkNmNlZDgxZWVkZCIsImV4dCI6Ii5qcGVnIn0=", + "title": "Head of Design" + }, + "name": "Christian Ervin", + "obfuscatedId": "7B31A6206C218450C84C7C7E1AEE19D3" + } + } + ], + "createTime": "2025-11-03T02:27:32Z", + "datasource": "gdrive", + "datasourceId": "1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A", + "interactions": {}, + "loggingId": "467411144563B3321804DCF55DFDA777", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "582122941BDC99987291C2C075BB5201" + }, + "name": "Jen Zagofsky", + "obfuscatedId": "582122941BDC99987291C2C075BB5201" + }, + "updateTime": "2026-01-17T00:50:21Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "90626173EE5666BB891147D9B1F40378" + }, + "name": "Onder Polat", + "obfuscatedId": "90626173EE5666BB891147D9B1F40378" + }, + "visibility": "DOMAIN_LINK" + }, + "parentDocument": { + "id": "GDRIVE_0ACoZEHIGOvEwUk9PVA" + }, + "sections": [ + { + "title": "R\u0026D FY26 Q4: All Gas, No Brakes to make FY26 the biggest yet", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A?tab=t.0#heading=h.ghancvre6c" + }, + { + "title": "[Q4 = Nov/Dec 2025 \u0026 Jan 2026]", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A?tab=t.0#heading=h.9nj9mz3trrbd" + }, + { + "title": "What winning looks like", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A?tab=t.0#heading=h.dwg6at8grnbp" + } + ], + "title": "R\u0026D Execution Plan for FY26 Q4 (Nov/Dec/Jan)", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 113, + "startIndex": 109, + "type": "BOLD" + }, + { + "endIndex": 137, + "startIndex": 130, + "type": "BOLD" + } + ], + "snippet": "", + "text": "Q4 is where we turn bold bets into business results—where we land the users, hit the KPI targets in our FY26 plan. Q4 is also the quarter where we set ourselves up for an even better FY27 to take Glean to the next level. ", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A?tab=t.0#heading=h.9nj9mz3trrbd" + } + ], + "title": "R\u0026D Execution Plan for FY26 Q4 (Nov/Dec/Jan)", + "trackingToken": "cECla84C8x3dDFYp,CnUKEGNFQ2xhODRDOHgzZERGWXAaM0dEUklWRV8xUERpemljRGloa2E3czFWZ3VKVTFMSnB0QU96RkxBaUhTdkM2UWx5Y1Y2QSIGZ2RyaXZlKgNhbGwyCERvY3VtZW50OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlQ=", + "url": "https://docs.google.com/document/d/1PDizicDihka7s1VguJU1LJptAOzFLAiHSvC6QlycV6A" + }, + { + "document": { + "connectorType": "FEDERATED_SEARCH", + "datasource": "slack", + "docType": "Conversation", + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252236.153429", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "AE7935F5BA9A79CA8FD7799359D23E54" + }, + "name": "chris.​freeman", + "obfuscatedId": "AE7935F5BA9A79CA8FD7799359D23E54" + }, + "container": "help-mcp-server", + "containerId": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0ADKNJER1N", + "createTime": "2026-04-03T21:37:16Z", + "customData": { + "parentConversationId": { + "stringValue": "SLACK2_IKZLDP4_TGLEMJFFG\\_C0ADKNJER1N_1775252236.153429_1775256491.064289__Conversation" + }, + "showChannelInMetadata": { + "booleanValue": true + } + }, + "datasource": "slack", + "datasourceInstance": "slack2_ikzldp4", + "documentCategory": "UNCATEGORIZED", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252236.153429", + "interactions": {}, + "loggingId": "7D2326A55D4CC7DF76F8E3B937D9BEBB", + "objectType": "Conversation", + "updateTime": "1970-01-01T00:00:00Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "id": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0ADKNJER1N", + "title": "help-mcp-server" + }, + "title": "Thread between Escalations, Wayne, and 2 others", + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252236153429?thread_ts=1775252236.153429\u0026cid=C0ADKNJER1N" + }, + "fullTextList": [ + "Escalations App (2026-04-03 21:37): \n\nEscalation raised by @Wayne Ping \nDescription: Customer NAES (naes-ai-glean, Azure) is unable to connect Claude to Glean's MCP server via OAuth. The OAuth consent flow completes successfully — user sees \"Authorization Successful\" in Glean — but Claude immediately reports \"Authorization with the MCP server failed\" (ref: ofid_4bc945b601340a05).\n\nMCP server config is correct (mcp.server.enabled = true, Glean OAuth server enabled, Claude redirect URIs in DCR greenlist). This is a server-side bug affecting all Azure deployments attempting MCP OAuth.\nInvestigation details: Traced the full OAuth flow in QE logs for glean-connector-az-naes.\n\nDCR registration (201), authorization (303), consent (303), and token exchange (200) all succeed — Glean issues a valid JWT access token via oauth-server-signing-key in Azure Key Vault.\n\nHowever, when Claude sends that token back to POST /mcp/claude, it gets 401. The QE trace (acd31c1e03051ac2917112c9db61e5c1) shows the exact failure: jwt signature verification failed: failed to get public key for JWT verification: GetPublicKey not implemented for Azure Key Vault.\n\nThe root cause is that GetPublicKey() in go/platform/azure/keyvault/keyvault.go:345 was left as a stub when Azure KeySigning was originally added — Sign() and Verify() work (they delegate to Key Vault remotely), but GetPublicKey() (needed for local JWT verification on the MCP endpoint) was never implemented.\n\nDraft fix PR: https://github.com/askscio/scio/pull/225474 (https://github.com/askscio/scio/pull/225474)\n\n QE trace showing the 401: https://console.cloud.google.com/logs/query;query=trace%3D%22projects%2Fglean-connector-az-naes%2Ftraces%2Facd31c1e03051ac2917112c9db61e5c1%22;startTime=2026-04-03T19:30:00Z;endTime=2026-04-03T19:31:00Z?project=glean-connector-az-naes (https://console.cloud.google.com/logs/query;query=trace%3D%22projects%2Fglean-connector-az-naes%2Ftraces%2Facd31c1e03051ac2917112c9db61e5c1%22;startTime=2026-04-03T19:30:00Z;endTime=2026-04-03T19:31:00Z?project=glean-connector-az-naes)\nCustomer: naes-ai-glean\nPriority: Medium\nEscalation type: Bug\nZendesk ticket id: https://gleanwork.zendesk.com/agent/tickets/30878 (https://gleanwork.zendesk.com/agent/tickets/30878)\nDRI: pact-oncall\n", + "Escalations App (2026-04-03 21:37): View the escalation on portal (https://dev.glean.com/internal/escalations?escalationReporter=wayne.ping\u0026escalationId=17452).", + "Escalations App (2026-04-03 21:37): Created a tracking JIRA (https://askscio.atlassian.net/browse/EE-25168)", + "Escalations App (2026-04-03 21:37): Resolve (Engineers only) button", + "Escalations App (2026-04-03 21:37): Resolve with autofill button", + "Escalations App (2026-04-03 21:37): Reporter @Wayne Ping, DRI: pact-oncall\n", + "Wayne Ping (2026-04-03 21:38): Here is the PR https://github.com/askscio/scio/pull/225474", + "Wayne Ping (2026-04-03 21:38): @Glean review the PR https://github.com/askscio/scio/pull/225474", + "Glean (2026-04-03 21:39): via MCP Assistant (https://app.glean.com/chat/agents/28541cf760e1428881023016be3a7ffb) I can't directly review the PR diff/logic beyond the snippet we have here, but based on the PR description + the included diff excerpt, the change is directionally right and matches the failure mode you traced (Azure Key Vault signing works, but JWT verification fails because GetPublicKey() was a stub). Here's what I'd sanity-check before approving/merging. What the PR is fixing (and why it matches the bug) • The production symptom is: OAuth consent + token exchange succeed, but the first MCP call (POST /mcp/claude) returns 401 because JWT signature verification fails with GetPublicKey not implemented for Azure Key Vault. • The PR implements GetPublicKey() for Azure Key Vault by calling azkeys.Client.GetKey() and building an rsa.PublicKey (from N/E) or ecdsa.PublicKey (from X/Y/Crv) from the Key Vault response, plus caching and cache invalidation on Refresh() for rotation support. That's exactly what the MCP endpoint needs to validate a JWT locally, and it addresses the specific error in the trace. Review checklist (things I'd look for / ask reviewers to confirm) • RSA exponent parsing is safe/correct. The code converts E using int(new(big.Int (http://big.Int)).SetBytes(resp.Key.E).Int64()). In practice for RSA this is usually 65537, so it's fine, but reviewers should confirm Key Vault returns E in a format that fits safely in int64 and is interpreted correctly (and consider adding validation that E \u003e 0). • ECDSA curve mapping coverage. The code explicitly maps P-256, P-384, P-521, and errors on anything else, and errors if Crv is missing. That's reasonable; just confirm our Azure deployments don't use other curves. • Caching + Refresh semantics look consistent with other clouds. The PR adds an RWMutex-guarded cache (cachedPubKey) and invalidates it in Refresh() to support key rotation. That aligns with the stated intent to match GCP's caching pattern and ensures rotation can be picked up without a restart. Next steps to close the loop (pragmatic) 1. Run the exact end-to-end validation called out in the PR test plan. Deploy to an Azure customer instance (NAES was the suggested example) and verify Claude MCP OAuth completes and POST /mcp/claude returns 200 instead of 401. 2. Add/verify at least one unit-ish test if feasible. The PR snippet doesn't show tests; if none exist, it may still be acceptable for a hotfix, but having a small test around parsing JWK fields into RSA/EC public keys would help prevent regressions. 3. Track rollout impact. This is described as “a server-side bug affecting all Azure deployments attempting MCP OAuth,” so once merged, it's worth calling out broadly (support/oncall) as a likely unblock for any similar Azure OAuth→MCP 401 reports. If you want, paste the PR “Files changed” section (or the full GetPublicKey() implementation) here and I can do a more detailed line-by-line review for correctness and edge cases. Github Jira 2 sources View sources button Tag or send a DM to @Glean to get answers anywhere., with interactive elements", + "Wayne Ping (2026-04-03 21:40): Another log that pinpoint this: https://console.cloud.google.com/logs/query;query=trace%3D%22projects%2Fglean-connector-a[…]ime=2026-04-03T19:31:00Z?project=glean-connector-az-naes (https://console.cloud.google.com/logs/query;query=trace%3D%22projects%2Fglean-connector-az-naes%2Ftraces%2Facd31c1e03051ac2917112c9db61e5c1%22%0A--%20%22%2Foauth%22%20OR%20%22%2Fmc%22%0A%22GetPublicKey%20not%20implemented%20for%20Azure%20Key%20Vault%22;cursorTimestamp=2026-04-03T19:30:26.468711488Z;startTime=2026-04-03T19:30:00Z;endTime=2026-04-03T19:31:00Z?project=glean-connector-az-naes)", + "chris.​freeman (2026-04-03 21:49): looking into this", + "Wayne Ping (2026-04-03 21:50): @chris.​freeman Thanks, I think it was the fact that we missed GetPublicKey in our keyvualt. Let me know!", + "chris.​freeman (2026-04-03 22:27): kk, i've got a draft PR up for a fix and will get it reviewed hopefully on Monday and then we can get it merged in", + "chris.​freeman (2026-04-03 22:27): oh wait, i just saw you opened a PR?", + "chris.​freeman (2026-04-03 22:30): i don't really mind who fixes it, but probably better to go with my PR so if there's something wrong and they run blame on it, I show up and get pinged instead of you ", + "chris.​freeman (2026-04-03 22:48): PR open here https://github.com/askscio/scio/pull/225502 \n\njust waiting for review", + "Wayne Ping (2026-04-03 22:49): I don't mind either way", + "Wayne Ping (2026-04-03 22:49): we can go with yourr and close mine", + "chris.​freeman (2026-04-03 22:50): sounds good" + ], + "nativeAppUrl": "slack://channel?id=C0ADKNJER1N\u0026message=1775252236.153429\u0026team=TGLEMJFFG\u0026thread_ts=1775252236.153429", + "relatedResults": [ + { + "relation": "CONVERSATION_MESSAGES", + "results": [ + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252236.153429", + "metadata": { + "author": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "container": "help-mcp-server", + "createTime": "2026-04-03T21:37:16Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252236.153429", + "owner": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0ADKNJER1N\u0026message=1775252236.153429\u0026team=TGLEMJFFG\u0026thread_ts=1775252236.153429", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "\n\nEscalation raised by @Wayne Ping \nDescription: Customer NAES (naes-ai-glean, Azure) is unable to connect Claude to Glean's MCP server via OAuth. The OAuth consent flow completes successfully — user sees \"Authorization Successful\" in Glean — but Claude immediately reports \"Authorization with the MCP server failed\" (ref: ofid_4bc945b601340a05).\n\nMCP server config is correct (mcp.server.enabled = true, Glean OAuth server enabled, Claude redirect URIs in DCR greenlist). This is a server-side bug affecting all Azure deployments attempting MCP OAuth.\nInvestigation details: Traced the full OAuth flow in QE logs for glean-connector-az-naes.\n\nDCR registration (201), authorization (303), consent (303), and token exchange (200) all succeed — Glean issues a valid JWT access token via oauth-server-signing-key in Azure Key Vault.\n\nHowever, when Claude sends that token back to POST /mcp/claude, it gets 401. The QE trace (acd31c1e03051ac2917112c9db61e5c1) shows the exact failure: jwt signature verification failed: failed to get public key for JWT verification: GetPublicKey not implemented for Azure Key Vault.\n\nThe root cause is that GetPublicKey() in go/platform/azure/keyvault/keyvault.go:345 was left as a stub when Azure KeySigning was originally added — Sign() and Verify() work (they delegate to Key Vault remotely), but GetPublicKey() (needed for local JWT verification on the MCP endpoint) was never implemented.\n\nDraft fix PR: https://github.com/askscio/scio/pull/225474 (https://github.com/askscio/scio/pull/225474)\n\n QE trace showing the 401: https://console.cloud.google.com/logs/query;query=trace%3D%22projects%2Fglean-connector-az-naes%2Ftraces%2Facd31c1e03051ac2917112c9db61e5c1%22;startTime=2026-04-03T19:30:00Z;endTime=2026-04-03T19:31:00Z?project=glean-connector-az-naes (https://console.cloud.google.com/logs/query;query=trace%3D%22projects%2Fglean-connector-az-naes%2Ftraces%2Facd31c1e03051ac2917112c9db61e5c1%22;startTime=2026-04-03T19:30:00Z;endTime=2026-04-03T19:31:00Z?project=glean-connector-az-naes)\nCustomer: naes-ai-glean\nPriority: Medium\nEscalation type: Bug\nZendesk ticket id: https://gleanwork.zendesk.com/agent/tickets/30878 (https://gleanwork.zendesk.com/agent/tickets/30878)\nDRI: pact-oncall\n" + } + ], + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252236153429?thread_ts=1775252236.153429\u0026cid=C0ADKNJER1N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252237.522069", + "metadata": { + "author": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "container": "help-mcp-server", + "createTime": "2026-04-03T21:37:17Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252237.522069", + "owner": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0ADKNJER1N\u0026message=1775252237.522069\u0026team=TGLEMJFFG\u0026thread_ts=1775252236.153429", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "View the escalation on portal (https://dev.glean.com/internal/escalations?escalationReporter=wayne.ping\u0026escalationId=17452)." + } + ], + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252237522069?thread_ts=1775252236.153429\u0026cid=C0ADKNJER1N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252237.664679", + "metadata": { + "author": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "container": "help-mcp-server", + "createTime": "2026-04-03T21:37:17Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252237.664679", + "owner": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0ADKNJER1N\u0026message=1775252237.664679\u0026team=TGLEMJFFG\u0026thread_ts=1775252236.153429", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "Created a tracking JIRA (https://askscio.atlassian.net/browse/EE-25168)" + } + ], + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252237664679?thread_ts=1775252236.153429\u0026cid=C0ADKNJER1N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252237.816779", + "metadata": { + "author": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "container": "help-mcp-server", + "createTime": "2026-04-03T21:37:17Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0ADKNJER1N_1775252237.816779", + "owner": { + "name": "Escalations App", + "obfuscatedId": "" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0ADKNJER1N\u0026message=1775252237.816779\u0026team=TGLEMJFFG\u0026thread_ts=1775252236.153429", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "Resolve (Engineers only) button" + } + ], + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252237816779?thread_ts=1775252236.153429\u0026cid=C0ADKNJER1N" + } + ] + } + ], + "title": "Thread between Escalations, Wayne, and 2 others", + "trackingToken": "cECla84C8x3dDFYp,CpsBChBjRUNsYTg0Qzh4M2RERllwEAEaV1NMQUNLMl9JS1pMRFA0X1RHTEVNSkZGR1xfQzBBREtOSkVSMU5fMTc3NTI1MjIzNi4xNTM0MjlfMTc3NTI1NjQ5MS4wNjQyODlfX0NvbnZlcnNhdGlvbiIFc2xhY2sqA2FsbDIMQ29udmVyc2F0aW9uQAFaEEZFREVSQVRFRF9TRUFSQ0g=", + "url": "https://askscio.slack.com/archives/C0ADKNJER1N/p1775252236153429?thread_ts=1775252236.153429\u0026cid=C0ADKNJER1N" + }, + { + "document": { + "connectorType": "FEDERATED_SEARCH", + "datasource": "slack", + "docType": "Conversation", + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081523.150139", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "container": "team-pact", + "containerId": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0A74DX9Q8N", + "createTime": "2026-04-01T22:12:03Z", + "customData": { + "parentConversationId": { + "stringValue": "SLACK2_IKZLDP4_TGLEMJFFG\\_C0A74DX9Q8N_1775081523.150139_1775081523.150139__Conversation" + }, + "showChannelInMetadata": { + "booleanValue": true + } + }, + "datasource": "slack", + "datasourceInstance": "slack2_ikzldp4", + "documentCategory": "UNCATEGORIZED", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081523.150139", + "interactions": {}, + "loggingId": "20BFB65E97D55B863B058577F2C54268", + "objectType": "Conversation", + "updateTime": "1970-01-01T00:00:00Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "id": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0A74DX9Q8N", + "title": "team-pact" + }, + "title": "Sharad", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081523150139?thread_ts=1775081523.150139\u0026cid=C0A74DX9Q8N" + }, + "fullTextList": [ + "Sharad Jain (2026-04-01 22:12): @pact its time for quarterly onsite and offsite. For future, we will plan this more in advance so that we are organized better. Here are suggested dates in the thread , please +1 to share availability. If both dates work, please plus one both.", + "Sharad Jain (2026-04-01 22:12): Week of 27th April", + "Sharad Jain (2026-04-01 22:12): Week of May4th" + ], + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775081523.150139\u0026team=TGLEMJFFG\u0026thread_ts=1775081523.150139", + "relatedResults": [ + { + "relation": "CONVERSATION_MESSAGES", + "results": [ + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081523.150139", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "container": "team-pact", + "createTime": "2026-04-01T22:12:03Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081523.150139", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775081523.150139\u0026team=TGLEMJFFG\u0026thread_ts=1775081523.150139", + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 28, + "startIndex": 19, + "type": "BOLD" + } + ], + "snippet": "", + "text": "@pact its time for quarterly onsite and offsite. For future, we will plan this more in advance so that we are organized better. Here are suggested dates in the thread , please +1 to share availability. If both dates work, please plus one both." + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081523150139?thread_ts=1775081523.150139\u0026cid=C0A74DX9Q8N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081547.843839", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "container": "team-pact", + "createTime": "2026-04-01T22:12:27Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081547.843839", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775081547.843839\u0026team=TGLEMJFFG\u0026thread_ts=1775081523.150139", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "Week of 27th April" + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081547843839?thread_ts=1775081523.150139\u0026cid=C0A74DX9Q8N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081553.677059", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "container": "team-pact", + "createTime": "2026-04-01T22:12:33Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775081553.677059", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775081553.677059\u0026team=TGLEMJFFG\u0026thread_ts=1775081523.150139", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "Week of May4th" + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081553677059?thread_ts=1775081523.150139\u0026cid=C0A74DX9Q8N" + } + ] + } + ], + "title": "Sharad", + "trackingToken": "cECla84C8x3dDFYp,CpsBChBjRUNsYTg0Qzh4M2RERllwEAIaV1NMQUNLMl9JS1pMRFA0X1RHTEVNSkZGR1xfQzBBNzREWDlROE5fMTc3NTA4MTUyMy4xNTAxMzlfMTc3NTA4MTUyMy4xNTAxMzlfX0NvbnZlcnNhdGlvbiIFc2xhY2sqA2FsbDIMQ29udmVyc2F0aW9uQAJaEEZFREVSQVRFRF9TRUFSQ0g=", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775081523150139?thread_ts=1775081523.150139\u0026cid=C0A74DX9Q8N" + } + ], + "errorInfo": {}, + "requestID": "59a6ec2006d88492956ab9c42480d885", + "backendTimeMillis": 969, + "experimentIds": [ + 221861, + 221863, + 1000, + 1001, + 223191, + 223192, + 196740, + 196741, + 169432, + 169433, + 71945, + 71946, + 223197, + 223198, + 220791, + 220792, + 222769, + 222770 + ], + "metadata": { + "rewrittenQuery": "quarterly planning", + "searchedQuery": "quarterly planning", + "searchedQueryWithoutNegation": "", + "originalQuery": "quarterly planning", + "triggeredExpertDetection": true + }, + "facetResults": [ + { + "sourceName": "last_updated_at", + "operatorName": "SelectSingle", + "buckets": [ + { + "count": 159479, + "value": { + "stringValue": "all", + "iconConfig": {} + } + }, + { + "count": 1367, + "value": { + "stringValue": "past_day", + "iconConfig": {} + } + }, + { + "count": 17564, + "value": { + "stringValue": "past_month", + "iconConfig": {} + } + }, + { + "count": 6877, + "value": { + "stringValue": "past_week", + "iconConfig": {} + } + }, + { + "count": 92566, + "value": { + "stringValue": "past_year", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "from", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "A Shriya", + "displayLabel": "A Shriya", + "iconConfig": {} + } + }, + { + "count": 194, + "value": { + "stringValue": "AJ Tennant", + "displayLabel": "AJ Tennant", + "iconConfig": {} + } + }, + { + "count": 135, + "value": { + "stringValue": "alla.mezhvinsky@glean.com", + "displayLabel": "Alla Mezhvinsky", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-03-24/8652427093123_d0d51c1127d7c327ada0_192.png" + } + } + }, + { + "count": 152, + "value": { + "stringValue": "anna.chibukhchyan@glean.com", + "displayLabel": "Anna Chibukhchyan", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLUNST1BQRVIiLCJjaWQiOiJlYzk0MGI0Yy1jMDkxLTQ2MTItOWE3OC0zMzY3Y2VkYzExYzIiLCJleHQiOiIuanBlZyJ9\u0026crop=eyJjcm9wU3R5bGUiOiJzcXVhcmUiLCJoZWlnaHQiOjE3OCwib3JpZ2luYWxVcmwiOiJodHRwczovL3NjaW8tcHJvZC1iZS5nbGVhbi5jb20vYXBpL3YxL2ltYWdlcz9rZXk9ZXlKMGVYQmxJam9pVlVkRElpd2lhV1FpT2lJd0lpd2laSE1pT2lKSFFVeE1SVkpaTFVsTlFVZEZMVkJKUTB0RlVpSXNJbU5wWkNJNklqZ3hOMkkzTldVNExUUXpNMk10TkdReE5TMDRZbVpsTFdNeE1UTXhNMlJpWldOaE9TSXNJbVY0ZENJNklpNXdibWNpZlE9PSIsIndpZHRoIjoxNzgsIngiOjksInkiOjEyfQ==" + } + } + }, + { + "count": 6, + "value": { + "stringValue": "ben.gillin@glean.com", + "displayLabel": "Ben Gillin", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-03-02/10610894143286_59c080705181c543cc24_192.png" + } + } + }, + { + "count": 5, + "value": { + "stringValue": "jaishree.giri@glean.com", + "displayLabel": "Jaishree Giri", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-07/9646887500342_00abf4d3cdc12f20d534_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "lee.williams@glean.com", + "displayLabel": "Lee Williams", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-03-30/10838725765264_d06583e2de5eda5bcce1_192.png" + } + } + }, + { + "count": 54, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 11, + "value": { + "stringValue": "osaro.eromosele@glean.com", + "displayLabel": "O Eromosele", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2026-02-27/10626367807936_f72f00f0c0eb86f2b556_192.png" + } + } + }, + { + "count": 218, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 693, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 14, + "value": { + "stringValue": "takuya.okubo@glean.com", + "displayLabel": "Takuya Okubo", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLUNST1BQRVIiLCJjaWQiOiI5YTFhNGJiZC1hZjExLTRjYWMtYTgxZi00MTZlZTUzODkxMGIiLCJleHQiOiIuanBlZyJ9\u0026crop=eyJjcm9wU3R5bGUiOiJzcXVhcmUiLCJoZWlnaHQiOjExNzAsIm9yaWdpbmFsVXJsIjoiaHR0cHM6Ly9zY2lvLXByb2QtYmUuZ2xlYW4uY29tL2FwaS92MS9pbWFnZXM/a2V5PWV5SjBlWEJsSWpvaVZVZERJaXdpYVdRaU9pSXdJaXdpWkhNaU9pSkhRVXhNUlZKWkxVbE5RVWRGTFZCSlEwdEZVaUlzSW1OcFpDSTZJamRoWVdabE9USXhMV1l6TWpBdE5HUTFZeTFpTTJKakxXSTVOV1l6WldNeVpUUXlaQ0lzSW1WNGRDSTZJaTVxY0dWbkluMD0iLCJ3aWR0aCI6MTE3MCwieCI6MCwieSI6NTU3fQ==" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "\"Cardente", + "displayLabel": "\"Cardente", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "type", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 78, + "datasource": "gdrive", + "value": { + "stringValue": "Code", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "gdrive", + "value": { + "stringValue": "Compressed Archive", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "gchat", + "value": { + "stringValue": "Conversation", + "iconConfig": {} + } + }, + { + "count": 7, + "datasource": "microsoftteams", + "value": { + "stringValue": "Conversation", + "iconConfig": {} + } + }, + { + "count": 63502, + "datasource": "slack", + "value": { + "stringValue": "Conversation", + "iconConfig": {} + } + }, + { + "count": 29, + "datasource": "developers", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 5079, + "datasource": "gdrive", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 269, + "datasource": "gleandocs", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 238, + "datasource": "gleanwebsite", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 6, + "datasource": "metabase", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "opsgenie", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 1199, + "datasource": "slack", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "testrail", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 30, + "datasource": "web38ut1szgleanpromptlibrary", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 26, + "datasource": "weberywsrygleaniverseevents", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 91, + "datasource": "webxzh7cqngleandocs", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 41, + "datasource": "gdrive", + "value": { + "stringValue": "Folder", + "iconConfig": {} + } + }, + { + "count": 25, + "datasource": "gdrive", + "value": { + "stringValue": "Form", + "iconConfig": {} + } + }, + { + "count": 41, + "datasource": "gdrive", + "value": { + "stringValue": "Image", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "slack", + "value": { + "stringValue": "Image", + "iconConfig": {} + } + }, + { + "count": 13, + "datasource": "gdrive", + "value": { + "stringValue": "Other", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "slack", + "value": { + "stringValue": "Other", + "iconConfig": {} + } + }, + { + "count": 1132, + "datasource": "gdrive", + "value": { + "stringValue": "Presentation", + "iconConfig": {} + } + }, + { + "count": 33, + "datasource": "slack", + "value": { + "stringValue": "Presentation", + "iconConfig": {} + } + }, + { + "count": 1120, + "datasource": "gdrive", + "value": { + "stringValue": "Spreadsheet", + "iconConfig": {} + } + }, + { + "count": 9, + "datasource": "slack", + "value": { + "stringValue": "Spreadsheet", + "iconConfig": {} + } + }, + { + "count": 62, + "datasource": "gdrive", + "value": { + "stringValue": "Text", + "iconConfig": {} + } + }, + { + "count": 318, + "datasource": "slack", + "value": { + "stringValue": "Text", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "collection", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 2, + "value": { + "stringValue": "\"Workflows\" Demos", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "(Test) Content Design", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "01.14 GBI Impact Evening - Nashville, TN", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "0206 - Warriors v. Lakers Suite - Los Angeles", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "0227 - HMG Innovation Summit - Silicon Valley", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "03.15 - My Outreach Webinar - East", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "03.17 - SF - Carlyle Event", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "0313 - Warriors v Kings Suite - San Francisco", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "0327 - HMG C-Level Technology Leaders Summit - Phoenix", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "0415 - Glean Game Night: Seattle Kraken - Seattle", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "05.15 Lockstep Annual Crawfish Boil - Baton Rouge, Louisiana", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 603, + "value": { + "stringValue": "Go Links", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "datasource", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 20, + "value": { + "stringValue": "announcements", + "iconConfig": {} + } + }, + { + "count": 50, + "value": { + "stringValue": "answers", + "iconConfig": {} + } + }, + { + "count": 126, + "value": { + "stringValue": "collections", + "iconConfig": {} + } + }, + { + "count": 346, + "value": { + "stringValue": "confluence", + "displayLabel": "Confluence - Cloud", + "iconConfig": {} + } + }, + { + "count": 10, + "value": { + "stringValue": "debugendpoints", + "displayLabel": "DebugEndpoints", + "iconConfig": {} + } + }, + { + "count": 29, + "value": { + "stringValue": "developers", + "displayLabel": "Developers", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "figma", + "iconConfig": {} + } + }, + { + "count": 11, + "value": { + "stringValue": "klue", + "displayLabel": "Klue", + "iconConfig": {} + } + }, + { + "count": 49, + "value": { + "stringValue": "rootly", + "displayLabel": "Rootly Integration", + "iconConfig": {} + } + }, + { + "count": 6, + "value": { + "stringValue": "spinnaker", + "displayLabel": "Spinnaker pipelines", + "iconConfig": {} + } + }, + { + "count": 28, + "value": { + "stringValue": "wiz", + "displayLabel": "Wiz", + "iconConfig": {} + } + }, + { + "count": 172, + "value": { + "stringValue": "customer", + "iconConfig": {} + } + }, + { + "count": 9, + "value": { + "stringValue": "people", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "slack", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "my history", + "iconConfig": {} + } + } + ] + } + ], + "resultTabs": [ + { + "count": 861, + "id": "all" + }, + { + "count": 29, + "datasource": "developers", + "datasourceInstance": "developers", + "id": "developers" + }, + { + "count": 346, + "datasource": "confluence", + "id": "confluence" + }, + { + "count": 20, + "datasource": "announcements", + "datasourceInstance": "announcements", + "id": "announcements" + }, + { + "count": 50, + "datasource": "answers", + "datasourceInstance": "answers", + "id": "answers" + }, + { + "count": 126, + "datasource": "collections", + "datasourceInstance": "collections", + "id": "collections" + }, + { + "count": 172, + "datasource": "customer", + "datasourceInstance": "customer", + "id": "customer" + }, + { + "count": 10, + "datasource": "debugendpoints", + "datasourceInstance": "debugendpoints", + "id": "debugendpoints" + }, + { + "count": 3, + "datasource": "figma", + "datasourceInstance": "figma", + "id": "figma" + }, + { + "count": 11, + "datasource": "klue", + "datasourceInstance": "klue", + "id": "klue" + }, + { + "count": 9, + "datasource": "people", + "datasourceInstance": "people", + "id": "people" + }, + { + "count": 49, + "datasource": "rootly", + "datasourceInstance": "rootly", + "id": "rootly" + }, + { + "count": 2, + "datasource": "slack", + "id": "slack" + }, + { + "count": 6, + "datasource": "spinnaker", + "datasourceInstance": "spinnaker", + "id": "spinnaker" + }, + { + "count": 28, + "datasource": "wiz", + "datasourceInstance": "wiz", + "id": "wiz" + } + ], + "resultTabIds": [ + "all" + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MzEsIlJhbmRvbUNhY2hlS2V5IjoiNTU2MTEyODU3ODkzMjk1NzA5NyIsIlBhZ2VEdXBlTWV0YWRhdGEiOnsiUGFnZUlkIjoxLCJSZXN1bHRUb2tlbnMiOm51bGx9LCJDdXJzb3JDYWNoZUtleSI6ImIxY2QyMzA3LTVmNmQtNDViZC04YTM0LWMxMTI5ZWQ4NDM1YyJ9", + "hasMoreResults": true +} diff --git a/internal/output/testdata/raw_people.json b/internal/output/testdata/raw_people.json new file mode 100644 index 0000000..3913a07 --- /dev/null +++ b/internal/output/testdata/raw_people.json @@ -0,0 +1,1722 @@ +{ + "trackingToken": "KHtaFeDIa6g3eaCn", + "sessionInfo": { + "lastQuery": "who is steve calvert", + "lastSeen": "2026-04-06T15:32:59.351772093Z", + "sessionTrackingToken": "9l6wAmXijfrmz88e", + "tabId": "YaWFavjlpSjUH81H" + }, + "results": [ + { + "structuredResults": [ + { + "person": { + "metadata": { + "aliasEmails": [ + "steve.calvert@glean.com", + "steve.calvert@askscio.com" + ], + "bio": "Developer Platform Lead", + "datasourceProfile": [ + { + "datasource": "GSUITE", + "handle": "Steve Calvert", + "url": "https://contacts.google.com/p/117560105031537462447" + }, + { + "datasource": "SLACK", + "handle": "Steve C", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=U08FYA0668Z", + "url": "https://askscio.slack.com/team/U08FYA0668Z" + }, + { + "datasource": "SLACK", + "handle": "Steve C", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=U08FYA0668Z", + "url": "https://askscio.slack.com/team/U08FYA0668Z" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Steve Calvert", + "url": "https://teams.microsoft.com/l/chat/0/0?users=steve.calvert@glean.com" + }, + { + "datasource": "GITHUB", + "handle": "steve-calvert-glean", + "url": "https://github.com/pulls?q=is:pr+author:steve-calvert-glean" + }, + { + "datasource": "JIRA", + "handle": "Steve Calvert", + "url": "https://askscio.atlassian.net/jira/people/712020:68db0833-8703-46a1-9ae3-2d27735cd76d" + } + ], + "department": "302 Software Engineering", + "departmentCount": 295, + "email": "steve.calvert@glean.com", + "firstName": "Steve", + "isSignedUp": true, + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Calvert", + "location": "Palo Alto CA US", + "loggingId": "1C6D65D6601F40C7D8F378787210E821", + "managementChain": [ + { + "metadata": { + "aliasEmails": [ + "arvind@glean.com", + "arvind@askscio.com" + ], + "datasourceProfile": [ + { + "datasource": "GSUITE", + "handle": "Arvind Jain", + "url": "https://contacts.google.com/p/109874819842543867427" + }, + { + "datasource": "SLACK", + "handle": "Arvind", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=UGKBG9L7P", + "url": "https://askscio.slack.com/team/UGKBG9L7P" + }, + { + "datasource": "SLACK", + "handle": "Arvind", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=UGKBG9L7P", + "url": "https://askscio.slack.com/team/UGKBG9L7P" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Arvind Jain", + "url": "https://teams.microsoft.com/l/chat/0/0?users=arvind@glean.com" + }, + { + "datasource": "GITHUB", + "handle": "arvind-scio", + "url": "https://github.com/pulls?q=is:pr+author:arvind-scio" + }, + { + "datasource": "JIRA", + "handle": "Arvind Jain", + "url": "https://askscio.atlassian.net/jira/people/5c748ebef2f4366be3ccd763" + } + ], + "department": "102 CEO", + "departmentCount": 4, + "directReportsCount": 11, + "email": "arvind@glean.com", + "firstName": "Arvind", + "isSignedUp": true, + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "Jain", + "location": "Palo Alto CA US", + "loggingId": "B79FBD4A4DE91C22381F3A7A196693D8", + "orgSizeCount": 1267, + "photoUrl": "https://avatars.slack-edge.com/2023-05-23/5315049247796_cd3986adf07fb792000e_192.png", + "socialNetwork": [ + { + "name": "linkedin", + "profileUrl": "https://www.linkedin.com/in/arvind-jain-5935161/" + } + ], + "startDate": "2019-02-25", + "startDatePercentile": 99.92139, + "structuredLocation": { + "country": "United States", + "countryCode": "US" + }, + "teams": [ + { + "joinDate": "1970-01-01T00:00:00Z", + "name": "Glean", + "relationship": "MEMBER" + }, + { + "id": "TEAM_PEOPLE_DEPARTMENT_1F5947C1A9997BD9BE5B075623C4D3CF", + "joinDate": "1970-01-01T00:00:00Z", + "name": "102 CEO", + "relationship": "MEMBER" + } + ], + "timezone": "Pacific Daylight Time", + "timezoneIANA": "America/Los_Angeles", + "timezoneOffset": -25200, + "title": "CEO", + "type": "FULL_TIME", + "uneditedPhotoUrl": "https://avatars.slack-edge.com/2023-05-23/5315049247796_cd3986adf07fb792000e_192.png" + }, + "name": "Arvind Jain", + "obfuscatedId": "B79FBD4A4DE91C22381F3A7A196693D8" + }, + { + "metadata": { + "aliasEmails": [ + "trvish@glean.com", + "trvish@askscio.com" + ], + "datasourceProfile": [ + { + "datasource": "GSUITE", + "handle": "Vish T R", + "url": "https://contacts.google.com/p/106751494877019494811" + }, + { + "datasource": "O365", + "handle": "Tirunelveli Vishwanath", + "url": "https://nam.delve.office.com/?u=04607f77-9ad5-488a-b3c5-9ac3eb5c7dc3" + }, + { + "datasource": "SLACK", + "handle": "Vish", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=UGLGZCZD4", + "url": "https://askscio.slack.com/team/UGLGZCZD4" + }, + { + "datasource": "SLACK", + "handle": "Vish", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=UGLGZCZD4", + "url": "https://askscio.slack.com/team/UGLGZCZD4" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Vishwanath T", + "url": "https://teams.microsoft.com/l/chat/0/0?users=trvish@glean.com" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Tirunelveli Vishwanath", + "url": "https://teams.microsoft.com/l/chat/0/0?users=trvish@msglean.onmicrosoft.com" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Tirunelveli Vishwanath", + "url": "https://teams.microsoft.com/l/chat/0/0?users=trvish@msglean.onmicrosoft.com" + }, + { + "datasource": "GITHUB", + "handle": "trvish-scio", + "url": "https://github.com/pulls?q=is:pr+author:trvish-scio" + }, + { + "datasource": "JIRA", + "handle": "Vish T R", + "url": "https://askscio.atlassian.net/jira/people/5c74902b16d489436f2b33aa" + }, + { + "datasource": "SERVICENOW", + "handle": "TR Vishwanath", + "url": "https://dev97813.service-now.com/sys_user.do?sys_id=de1a15362f222010de1257ab2799b6cf" + } + ], + "department": "301 R \u0026 D Leadership", + "departmentCount": 2, + "directReportsCount": 15, + "email": "trvish@glean.com", + "firstName": "Vish", + "isSignedUp": true, + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "T R", + "location": "Palo Alto CA US", + "loggingId": "A128BE9D255F61AD6787E3C35CB7CE4B", + "orgSizeCount": 203, + "photoUrl": "https://avatars.slack-edge.com/2021-09-16/2501680660370_edf0e263177440f12f5a_192.png", + "startDate": "2019-02-26", + "startDatePercentile": 99.842766, + "structuredLocation": { + "country": "United States", + "countryCode": "US" + }, + "teams": [ + { + "joinDate": "1970-01-01T00:00:00Z", + "name": "Glean", + "relationship": "MEMBER" + }, + { + "id": "TEAM_PEOPLE_DEPARTMENT_A110AB29ECCB2901CC3E6FA0D02FA1C9", + "joinDate": "1970-01-01T00:00:00Z", + "name": "301 R \u0026 D Leadership", + "relationship": "MEMBER" + } + ], + "timezone": "Pacific Daylight Time", + "timezoneIANA": "America/Los_Angeles", + "timezoneOffset": -25200, + "title": "Software Engineer", + "type": "FULL_TIME", + "uneditedPhotoUrl": "https://avatars.slack-edge.com/2021-09-16/2501680660370_edf0e263177440f12f5a_192.png" + }, + "name": "Vish T R", + "obfuscatedId": "A128BE9D255F61AD6787E3C35CB7CE4B" + } + ], + "manager": { + "metadata": { + "aliasEmails": [ + "trvish@glean.com", + "trvish@askscio.com" + ], + "datasourceProfile": [ + { + "datasource": "GSUITE", + "handle": "Vish T R", + "url": "https://contacts.google.com/p/106751494877019494811" + }, + { + "datasource": "O365", + "handle": "Tirunelveli Vishwanath", + "url": "https://nam.delve.office.com/?u=04607f77-9ad5-488a-b3c5-9ac3eb5c7dc3" + }, + { + "datasource": "SLACK", + "handle": "Vish", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=UGLGZCZD4", + "url": "https://askscio.slack.com/team/UGLGZCZD4" + }, + { + "datasource": "SLACK", + "handle": "Vish", + "nativeAppUrl": "slack://channel?team=TGLEMJFFG\u0026id=UGLGZCZD4", + "url": "https://askscio.slack.com/team/UGLGZCZD4" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Vishwanath T", + "url": "https://teams.microsoft.com/l/chat/0/0?users=trvish@glean.com" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Tirunelveli Vishwanath", + "url": "https://teams.microsoft.com/l/chat/0/0?users=trvish@msglean.onmicrosoft.com" + }, + { + "datasource": "MICROSOFTTEAMS", + "handle": "Tirunelveli Vishwanath", + "url": "https://teams.microsoft.com/l/chat/0/0?users=trvish@msglean.onmicrosoft.com" + }, + { + "datasource": "GITHUB", + "handle": "trvish-scio", + "url": "https://github.com/pulls?q=is:pr+author:trvish-scio" + }, + { + "datasource": "JIRA", + "handle": "Vish T R", + "url": "https://askscio.atlassian.net/jira/people/5c74902b16d489436f2b33aa" + }, + { + "datasource": "SERVICENOW", + "handle": "TR Vishwanath", + "url": "https://dev97813.service-now.com/sys_user.do?sys_id=de1a15362f222010de1257ab2799b6cf" + } + ], + "department": "301 R \u0026 D Leadership", + "departmentCount": 2, + "directReportsCount": 15, + "email": "trvish@glean.com", + "firstName": "Vish", + "isSignedUp": true, + "lastExtensionUse": "0001-01-01T00:00:00Z", + "lastName": "T R", + "location": "Palo Alto CA US", + "loggingId": "A128BE9D255F61AD6787E3C35CB7CE4B", + "orgSizeCount": 203, + "photoUrl": "https://avatars.slack-edge.com/2021-09-16/2501680660370_edf0e263177440f12f5a_192.png", + "startDate": "2019-02-26", + "startDatePercentile": 99.842766, + "structuredLocation": { + "country": "United States", + "countryCode": "US" + }, + "teams": [ + { + "joinDate": "1970-01-01T00:00:00Z", + "name": "Glean", + "relationship": "MEMBER" + }, + { + "id": "TEAM_PEOPLE_DEPARTMENT_A110AB29ECCB2901CC3E6FA0D02FA1C9", + "joinDate": "1970-01-01T00:00:00Z", + "name": "301 R \u0026 D Leadership", + "relationship": "MEMBER" + } + ], + "timezone": "Pacific Daylight Time", + "timezoneIANA": "America/Los_Angeles", + "timezoneOffset": -25200, + "title": "Software Engineer", + "type": "FULL_TIME", + "uneditedPhotoUrl": "https://avatars.slack-edge.com/2021-09-16/2501680660370_edf0e263177440f12f5a_192.png" + }, + "name": "Vish T R", + "obfuscatedId": "A128BE9D255F61AD6787E3C35CB7CE4B" + }, + "orgSizeCount": 1, + "phone": "+14154160703", + "photoUrl": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImJiNWY0MjNmLTEwZDktNDQ2ZC05OTQ4LTA5YjRjMjBiMGI1ZSIsImV4dCI6Ii5qcGVnIn0=", + "startDate": "2025-02-25", + "startDatePercentile": 58.333332, + "structuredLocation": { + "country": "United States", + "countryCode": "US" + }, + "teams": [ + { + "id": "TEAM_SLACK2_2B3F960D2606690C0A7C6B2C69B45300", + "joinDate": "1970-01-01T00:00:00Z", + "name": "Developer Platform Members Only", + "relationship": "MEMBER" + }, + { + "id": "TEAM_PEOPLE_DEPARTMENT_BEAADEEE30280BC8B210DA32291B9D14", + "joinDate": "1970-01-01T00:00:00Z", + "name": "302 Software Engineering", + "relationship": "MEMBER" + } + ], + "timezone": "Pacific Daylight Time", + "timezoneIANA": "America/Los_Angeles", + "timezoneOffset": -25200, + "title": "Software Engineer", + "type": "FULL_TIME", + "uneditedPhotoUrl": "https://avatars.slack-edge.com/2025-02-28/8531974305986_ccabb965b56547aac7ec_192.jpg" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "prominence": "HERO", + "trackingToken": "KHtaFeDIa6g3eaCn,CkEKEEtIdGFGZURJYTZnM2VhQ24aIDFDNkQ2NUQ2NjAxRjQwQzdEOEYzNzg3ODcyMTBFODIxIgZwZW9wbGUqA2FsbA==" + } + ], + "url": "" + }, + { + "attachmentCount": 2, + "attachments": [ + { + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "createTime": "2026-03-27T00:16:42Z", + "datasource": "gdrive", + "datasourceId": "11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs", + "interactions": {}, + "loggingId": "C04CE15C179163EBBCE3747B717D049D", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "updateTime": "2026-03-30T22:03:56Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "name": "Aryaman Gulati", + "obfuscatedId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "visibility": "DOMAIN_LINK" + }, + "title": "Platform APIs: Fixing Primitive Zero", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs" + }, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 21, + "startIndex": 8, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "Author: Steve Calvert", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs?tab=t.0#heading=h.b0k3h3lylvlt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "text": "# Unified API Surface" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "# Platform APIs: Fixing Primitive Zero", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs?tab=t.0#heading=h.b0k3h3lylvlt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "Status: Draft", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs?tab=t.0#heading=h.b0k3h3lylvlt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 4, + "text": "Last Updated: Mar 26, 2026", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs?tab=t.0#heading=h.b0k3h3lylvlt" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 34, + "startIndex": 8, + "type": "LINK", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw/edit" + } + ], + "snippet": "", + "snippetTextOrdering": 5, + "text": "Parent: Glean Platform: Primitives", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs?tab=t.0#heading=h.b0k3h3lylvlt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 6, + "text": "The API is Primitive Zero — it gates every platform recipe — and it is currently too", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs?tab=t.0#heading=h.b0k3h3lylvlt" + } + ], + "title": "Platform APIs: Fixing Primitive Zero", + "trackingToken": "KHtaFeDIa6g3eaCn,CtsBChBLSHRhRmVESWE2ZzNlYUNuEAIaM0dEUklWRV8xMUQtbWRzSHdUUXhlZUZwRlNtc0s3bG9DMVB5MVpNRGw4cV9NUUxYTDFWcyIGZ2RyaXZlKgNhbGwyCERvY3VtZW50OhVDT0xMQUJPUkFUSVZFX0NPTlRFTlRAAUgBUl4aM0dEUklWRV8xZl9iMXk4UTJ3RDZQNlVDTXpiendlVFRHbEVCdjFETnVwbF93eEl2NF9hdyIGZ2RyaXZlKghEb2N1bWVudDIVQ09MTEFCT1JBVElWRV9DT05URU5U", + "url": "https://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs" + }, + { + "document": { + "datasource": "googlecalendar", + "docType": "event", + "id": "GOOGLECALENDAR_Event_57534DFAC3932C81BF5ABB122EA81C97", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "name": "Aryaman Gulati", + "obfuscatedId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "name": "Aryaman Gulati", + "obfuscatedId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "createTime": "2026-03-27T17:00:00Z", + "customData": { + "attachmentUrls": { + "stringValue": "https://drive.google.com/file/d/1vB9XG7y_VzrU4NLHBroFOUmK_3yScQfi/view?usp=drive_web\nhttps://drive.google.com/file/d/1PD0cXlRRvA2-sJ-JulDXvVQBfSGqF7Fy/view?usp=drive_web\nhttps://docs.google.com/document/d/1BqskDPP_jgpznUzu-boDZkLWRhjjPS9Azo4CRscAYE8/edit?usp=meet_tnfm_calendar\nhttps://docs.google.com/document/d/1EhX8hq2H2kAI4rf7jn6n6fciycx6pIHVB5vui9U6ifY/edit?usp=meet_tnfm_calendar\nhttps://docs.google.com/document/d/11D-mdsHwTQxeeFpFSmsK7loC1Py1ZMDl8q_MQLXL1Vs/edit?tab=t.0\nhttps://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw/edit?tab=t.78l3ux75obof" + }, + "attendeeDetails": { + "stringValue": "[{\"name\":\"aryaman.gulati@glean.com\",\"responseStatus\":\"accepted\"},{\"name\":\"team-pact\",\"responseStatus\":\"needsAction\"}]" + }, + "conferenceProvider": { + "stringValue": "Google Meet" + }, + "conferenceUri": { + "stringValue": "https://meet.google.com/yyc-aqvi-hht" + }, + "created": { + "stringValue": "2026-03-26T22:20:04.000Z" + }, + "creatorName": { + "stringValue": "Aryaman Gulati" + }, + "eventEndTime": { + "stringValue": "2026-03-27T11:00:00.000-07:00" + }, + "eventStartTime": { + "stringValue": "2026-03-27T10:00:00.000-07:00" + }, + "eventStatus": { + "stringValue": "confirmed" + }, + "eventType": { + "stringValue": "default" + }, + "guestsCanSeeOtherGuests": { + "stringValue": "true" + }, + "location": { + "stringValue": "Glean-PA-3rd Fl-PA-302 - Glean Eggs and Ham (6) [VC], Glean-SF-3rd Fl-SF-316 - Gleaner Things (5) [VC]" + }, + "meetUrl": { + "stringValue": "https://meet.google.com/yyc-aqvi-hht" + }, + "meetingParticipants": { + "stringListValue": [ + "Aryaman Gulati", + "team-pact@glean.com", + "c_18834duh5udjcgv1n90er8b5d45v4@resource.calendar.google.com", + "c_188d0r8f1k6osibmgc0knk76nsgia@resource.calendar.google.com" + ] + }, + "organizer": { + "stringListValue": [ + "C0025504789B35B3EFE9FAF166D674F1" + ] + }, + "participants": { + "stringListValue": [ + "C0025504789B35B3EFE9FAF166D674F1" + ] + }, + "responseStatus": { + "stringValue": "accepted" + }, + "transcriptUrl": { + "stringValue": "https://docs.google.com/document/d/1EhX8hq2H2kAI4rf7jn6n6fciycx6pIHVB5vui9U6ifY/edit?usp=meet_tnfm_calendar" + } + }, + "datasource": "googlecalendar", + "datasourceId": "57534DFAC3932C81BF5ABB122EA81C97", + "datasourceInstance": "googlecalendar", + "documentCategory": "CALENDAR", + "documentId": "GOOGLECALENDAR_Event_57534DFAC3932C81BF5ABB122EA81C97", + "interactions": {}, + "loggingId": "B28743A985288A16968BBFEBCB60A03A", + "mimeType": "event", + "objectType": "event", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "name": "Aryaman Gulati", + "obfuscatedId": "C0025504789B35B3EFE9FAF166D674F1" + }, + "updateTime": "2026-03-27T17:00:00Z", + "visibility": "SPECIFIC_PEOPLE_AND_GROUPS" + }, + "title": "Discussion: Glean as a Platform — Initiatives, Bets, and Features", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=MDk1Z3IwajFidnVzNjJ1cTZvMGtuaGduZm4g" + }, + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "Platform APIs: Fixing Primitive Zero" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "We are discussing:" + }, + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 112, + "startIndex": 89, + "type": "LINK", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw/edit?tab=t.78l3ux75obof" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "Scheduling this time for the group together to discuss and align on how we translate our Glean Platform Strategy into concrete next steps." + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "To ground us, the platform strategy clearly lays out:" + } + ], + "title": "Discussion: Glean as a Platform — Initiatives, Bets, and Features", + "trackingToken": "KHtaFeDIa6g3eaCn,CtUBChBLSHRhRmVESWE2ZzNlYUNuEAQaNUdPT0dMRUNBTEVOREFSX0V2ZW50XzU3NTM0REZBQzM5MzJDODFCRjVBQkIxMjJFQTgxQzk3Ig5nb29nbGVjYWxlbmRhcioDYWxsMgVldmVudDoIQ0FMRU5EQVJAAUgDUl4aM0dEUklWRV8xZl9iMXk4UTJ3RDZQNlVDTXpiendlVFRHbEVCdjFETnVwbF93eEl2NF9hdyIGZ2RyaXZlKghEb2N1bWVudDIVQ09MTEFCT1JBVElWRV9DT05URU5U", + "url": "https://www.google.com/calendar/event?authuser=steve.calvert%40glean.com\u0026eid=MDk1Z3IwajFidnVzNjJ1cTZvMGtuaGduZm4g" + } + ], + "document": { + "datasource": "gdrive", + "docType": "Document", + "id": "GDRIVE_1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw", + "metadata": { + "assignedTo": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "Glean Platform", + "containerId": "GDRIVE_1lR0rd7jduCDc4M9FZEz2esDobS-7ZNBK", + "createTime": "2026-02-15T20:07:07Z", + "datasource": "gdrive", + "datasourceId": "1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw", + "datasourceInstance": "gdrive", + "documentCategory": "COLLABORATIVE_CONTENT", + "documentId": "GDRIVE_1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw", + "interactions": { + "shares": [ + { + "numDaysAgo": 7 + } + ] + }, + "loggingId": "B778767085484CEBFFC29C190CA38D09", + "mimeType": "application/vnd.google-apps.document", + "objectType": "Document", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "updateTime": "2026-04-04T20:16:04Z", + "updatedBy": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "D75B00F84F7E7EFD3ABA42015F41D661" + }, + "name": "Richard Chao", + "obfuscatedId": "D75B00F84F7E7EFD3ABA42015F41D661" + }, + "visibility": "DOMAIN_LINK" + }, + "parentDocument": { + "datasource": "gdrive", + "docType": "Folder", + "id": "GDRIVE_1lR0rd7jduCDc4M9FZEz2esDobS-7ZNBK", + "title": "Glean Platform", + "url": "https://drive.google.com/drive/folders/1lR0rd7jduCDc4M9FZEz2esDobS-7ZNBK" + }, + "sections": [ + { + "title": "Glean Platform: Primitives", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.oji9g6m4vqzt" + }, + { + "title": "A Note to Readers", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.amzd2owrk2rw" + }, + { + "title": "0. Intent", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.nr74j426k27n" + } + ], + "title": "Glean Platform: Primitives", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw" + }, + "mustIncludeSuggestions": {}, + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 35, + "startIndex": 28, + "type": "BOLD" + } + ], + "snippet": "", + "snippetTextOrdering": 2, + "text": "Author: Aryaman GulatiSteve Calvert", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.oji9g6m4vqzt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "text": "# Platform Primitives" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 1, + "text": "# Glean Platform: Primitives", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.oji9g6m4vqzt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 3, + "text": "Status: Draft", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.oji9g6m4vqzt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 4, + "text": "Last updated: Mar 30, 2026", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.oji9g6m4vqzt" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 5, + "text": "# A Note to Readers", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.amzd2owrk2rw" + }, + { + "mimeType": "text/plain", + "snippet": "", + "snippetTextOrdering": 6, + "text": "This document is structured for two reading speeds. Sections 1 through 4 (roughly 6 pages)", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw?tab=t.78l3ux75obof#heading=h.amzd2owrk2rw" + } + ], + "title": "Glean Platform: Primitives", + "trackingToken": "KHtaFeDIa6g3eaCn,CnkKEEtIdGFGZURJYTZnM2VhQ24QARozR0RSSVZFXzFmX2IxeThRMndENlA2VUNNemJ6d2VUVEdsRUJ2MUROdXBsX3d4SXY0X2F3IgZnZHJpdmUqA2FsbDIIRG9jdW1lbnQ6FUNPTExBQk9SQVRJVkVfQ09OVEVOVEAB", + "url": "https://docs.google.com/document/d/1f_b1y8Q2wD6P6UCMzbzweTTGlEBv1DNupl_wxIv4_aw" + }, + { + "document": { + "connectorType": "FEDERATED_SEARCH", + "datasource": "slack", + "docType": "Conversation", + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775149112.810579", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "453B507678BC074D7D4D458262477BA6" + }, + "name": "Harshi Murthy", + "obfuscatedId": "453B507678BC074D7D4D458262477BA6" + }, + "container": "team-pact", + "containerId": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0A74DX9Q8N", + "createTime": "2026-04-02T16:58:32Z", + "customData": { + "parentConversationId": { + "stringValue": "SLACK2_IKZLDP4_TGLEMJFFG\\_C0A74DX9Q8N_1775149112.810579_1775149112.810579__Conversation" + }, + "showChannelInMetadata": { + "booleanValue": true + } + }, + "datasource": "slack", + "datasourceInstance": "slack2_ikzldp4", + "documentCategory": "UNCATEGORIZED", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775149112.810579", + "interactions": {}, + "loggingId": "A8671A83BD904C88DFF2C2B6884F8C7E", + "objectType": "Conversation", + "updateTime": "1970-01-01T00:00:00Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "id": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0A74DX9Q8N", + "title": "team-pact" + }, + "title": "Thread between Harshi and Steve", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775149112810579?thread_ts=1775149112.810579\u0026cid=C0A74DX9Q8N" + }, + "fullTextList": [ + "Harshi Murthy (2026-04-02 16:58): @Steve C \nhttps://www.linkedin.com/posts/mcp-gives-models-access-to-tools-but-it-ugcPost-7445511038512316416-LQQs?utm_source=share\u0026utm_medium=member_ios\u0026rcm=ACoAABuTDaQBmJylk4xKxhr84sMEHoiR6eeE82c (https://www.linkedin.com/posts/mcp-gives-models-access-to-tools-but-it-ugcPost-7445511038512316416-LQQs?utm_source=share\u0026utm_medium=member_ios\u0026rcm=ACoAABuTDaQBmJylk4xKxhr84sMEHoiR6eeE82c) ", + "Steve Calvert (2026-04-02 16:58): groan" + ], + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775149112.810579\u0026team=TGLEMJFFG\u0026thread_ts=1775149112.810579", + "relatedResults": [ + { + "relation": "CONVERSATION_MESSAGES", + "results": [ + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775149112.810579", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "453B507678BC074D7D4D458262477BA6" + }, + "name": "Harshi Murthy", + "obfuscatedId": "453B507678BC074D7D4D458262477BA6" + }, + "container": "team-pact", + "createTime": "2026-04-02T16:58:32Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775149112.810579", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "453B507678BC074D7D4D458262477BA6" + }, + "name": "Harshi Murthy", + "obfuscatedId": "453B507678BC074D7D4D458262477BA6" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775149112.810579\u0026team=TGLEMJFFG\u0026thread_ts=1775149112.810579", + "snippets": [ + { + "mimeType": "text/plain", + "ranges": [ + { + "endIndex": 6, + "startIndex": 1, + "type": "BOLD" + } + ], + "snippet": "", + "text": "@Steve C \nhttps://www.linkedin.com/posts/mcp-gives-models-access-to-tools-but-it-ugcPost-7445511038512316416-LQQs?utm_source=share\u0026utm_medium=member_ios\u0026rcm=ACoAABuTDaQBmJylk4xKxhr84sMEHoiR6eeE82c (https://www.linkedin.com/posts/mcp-gives-models-access-to-tools-but-it-ugcPost-7445511038512316416-LQQs?utm_source=share\u0026utm_medium=member_ios\u0026rcm=ACoAABuTDaQBmJylk4xKxhr84sMEHoiR6eeE82c) " + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775149112810579?thread_ts=1775149112.810579\u0026cid=C0A74DX9Q8N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775149137.546039", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "team-pact", + "createTime": "2026-04-02T16:58:57Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1775149137.546039", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1775149137.546039\u0026team=TGLEMJFFG\u0026thread_ts=1775149112.810579", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "groan" + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775149137546039?thread_ts=1775149112.810579\u0026cid=C0A74DX9Q8N" + } + ] + } + ], + "title": "Thread between Harshi and Steve", + "trackingToken": "KHtaFeDIa6g3eaCn,CpsBChBLSHRhRmVESWE2ZzNlYUNuEAIaV1NMQUNLMl9JS1pMRFA0X1RHTEVNSkZGR1xfQzBBNzREWDlROE5fMTc3NTE0OTExMi44MTA1NzlfMTc3NTE0OTExMi44MTA1NzlfX0NvbnZlcnNhdGlvbiIFc2xhY2sqA2FsbDIMQ29udmVyc2F0aW9uQAJaEEZFREVSQVRFRF9TRUFSQ0g=", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1775149112810579?thread_ts=1775149112.810579\u0026cid=C0A74DX9Q8N" + }, + { + "document": { + "connectorType": "FEDERATED_SEARCH", + "datasource": "slack", + "docType": "Conversation", + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1774477110.213549", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "container": "team-pact", + "containerId": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0A74DX9Q8N", + "createTime": "2026-03-25T22:18:30Z", + "customData": { + "parentConversationId": { + "stringValue": "SLACK2_IKZLDP4_TGLEMJFFG\\_C0A74DX9Q8N_1774477110.213549_1774477110.213549__Conversation" + }, + "showChannelInMetadata": { + "booleanValue": true + } + }, + "datasource": "slack", + "datasourceInstance": "slack2_ikzldp4", + "documentCategory": "UNCATEGORIZED", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1774477110.213549", + "interactions": {}, + "loggingId": "AF763CAEDACED1EC61746B9B51FDB906", + "objectType": "Conversation", + "updateTime": "1970-01-01T00:00:00Z", + "visibility": "DOMAIN_VISIBLE" + }, + "parentDocument": { + "id": "SLACK2_IKZLDP4_PublicChannel_TGLEMJFFG_C0A74DX9Q8N", + "title": "team-pact" + }, + "title": "Thread between Sharad and Steve", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1774477110213549?thread_ts=1774477110.213549\u0026cid=C0A74DX9Q8N" + }, + "fullTextList": [ + "Sharad Jain (2026-03-25 22:18): fyi", + "Steve Calvert (2026-03-25 22:20): Quick everyone, delete all your MCPs!!! " + ], + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1774477110.213549\u0026team=TGLEMJFFG\u0026thread_ts=1774477110.213549", + "relatedResults": [ + { + "relation": "CONVERSATION_MESSAGES", + "results": [ + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1774477110.213549", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "container": "team-pact", + "createTime": "2026-03-25T22:18:30Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1774477110.213549", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "name": "Sharad Jain", + "obfuscatedId": "F446055CDE3C65D7F36B45AFD14F2C5C" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1774477110.213549\u0026team=TGLEMJFFG\u0026thread_ts=1774477110.213549", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "fyi" + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1774477110213549?thread_ts=1774477110.213549\u0026cid=C0A74DX9Q8N" + }, + { + "document": { + "id": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1774477239.809329", + "metadata": { + "author": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "container": "team-pact", + "createTime": "2026-03-25T22:20:39Z", + "documentId": "SLACK2_IKZLDP4_Message_TGLEMJFFG_C0A74DX9Q8N_1774477239.809329", + "owner": { + "metadata": { + "lastExtensionUse": "0001-01-01T00:00:00Z", + "loggingId": "1C6D65D6601F40C7D8F378787210E821" + }, + "name": "Steve Calvert", + "obfuscatedId": "1C6D65D6601F40C7D8F378787210E821" + }, + "updateTime": "1970-01-01T00:00:00Z" + } + }, + "nativeAppUrl": "slack://channel?id=C0A74DX9Q8N\u0026message=1774477239.809329\u0026team=TGLEMJFFG\u0026thread_ts=1774477110.213549", + "snippets": [ + { + "mimeType": "text/plain", + "snippet": "", + "text": "Quick everyone, delete all your MCPs!!! " + } + ], + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1774477239809329?thread_ts=1774477110.213549\u0026cid=C0A74DX9Q8N" + } + ] + } + ], + "title": "Thread between Sharad and Steve", + "trackingToken": "KHtaFeDIa6g3eaCn,CpsBChBLSHRhRmVESWE2ZzNlYUNuEAMaV1NMQUNLMl9JS1pMRFA0X1RHTEVNSkZGR1xfQzBBNzREWDlROE5fMTc3NDQ3NzExMC4yMTM1NDlfMTc3NDQ3NzExMC4yMTM1NDlfX0NvbnZlcnNhdGlvbiIFc2xhY2sqA2FsbDIMQ29udmVyc2F0aW9uQANaEEZFREVSQVRFRF9TRUFSQ0g=", + "url": "https://askscio.slack.com/archives/C0A74DX9Q8N/p1774477110213549?thread_ts=1774477110.213549\u0026cid=C0A74DX9Q8N" + } + ], + "errorInfo": {}, + "requestID": "0b4a02b33963921d3613d0906ceb5d1d", + "backendTimeMillis": 704, + "experimentIds": [ + 220791, + 220792, + 223191, + 223192, + 1000, + 1001, + 196740, + 196741, + 71945, + 71946, + 222769, + 222770, + 223197, + 223198, + 221861, + 221863, + 169432, + 169433 + ], + "metadata": { + "rewrittenQuery": "who is steve calvert", + "searchedQuery": "who is steve calvert", + "searchedQueryWithoutNegation": "", + "originalQuery": "who is steve calvert" + }, + "facetResults": [ + { + "sourceName": "last_updated_at", + "operatorName": "SelectSingle", + "buckets": [ + { + "count": 30845, + "value": { + "stringValue": "all", + "iconConfig": {} + } + }, + { + "count": 96, + "value": { + "stringValue": "past_day", + "iconConfig": {} + } + }, + { + "count": 2634, + "value": { + "stringValue": "past_month", + "iconConfig": {} + } + }, + { + "count": 513, + "value": { + "stringValue": "past_week", + "iconConfig": {} + } + }, + { + "count": 20703, + "value": { + "stringValue": "past_year", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "from", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 14, + "value": { + "stringValue": "alla.mezhvinsky@glean.com", + "displayLabel": "Alla Mezhvinsky", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-03-24/8652427093123_d0d51c1127d7c327ada0_192.png" + } + } + }, + { + "count": 20, + "value": { + "stringValue": "allan.livingston@glean.com", + "displayLabel": "Allan Livingston", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLVBJQ0tFUiIsImNpZCI6ImM0ZmQzNmI3LWQwYjgtNDNlOS1hYTU2LWE1Mjc0ZmI2YjgxOSIsImV4dCI6Ii5wbmcifQ==" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "anna.chibukhchyan@glean.com", + "displayLabel": "Anna Chibukhchyan", + "iconConfig": { + "url": "https://scio-prod-be.glean.com/api/v1/images?key=eyJ0eXBlIjoiVUdDIiwiaWQiOiIwIiwiZHMiOiJHQUxMRVJZLUlNQUdFLUNST1BQRVIiLCJjaWQiOiJlYzk0MGI0Yy1jMDkxLTQ2MTItOWE3OC0zMzY3Y2VkYzExYzIiLCJleHQiOiIuanBlZyJ9\u0026crop=eyJjcm9wU3R5bGUiOiJzcXVhcmUiLCJoZWlnaHQiOjE3OCwib3JpZ2luYWxVcmwiOiJodHRwczovL3NjaW8tcHJvZC1iZS5nbGVhbi5jb20vYXBpL3YxL2ltYWdlcz9rZXk9ZXlKMGVYQmxJam9pVlVkRElpd2lhV1FpT2lJd0lpd2laSE1pT2lKSFFVeE1SVkpaTFVsTlFVZEZMVkJKUTB0RlVpSXNJbU5wWkNJNklqZ3hOMkkzTldVNExUUXpNMk10TkdReE5TMDRZbVpsTFdNeE1UTXhNMlJpWldOaE9TSXNJbVY0ZENJNklpNXdibWNpZlE9PSIsIndpZHRoIjoxNzgsIngiOjksInkiOjEyfQ==" + } + } + }, + { + "count": 2, + "value": { + "stringValue": "barla.dhanush@glean.com", + "displayLabel": "Barla Dhanush", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-01-20/8318926798947_b8906ba164709717b66e_192.jpg" + } + } + }, + { + "count": 1, + "value": { + "stringValue": "ben.morey@glean.com", + "displayLabel": "Ben Morey", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-03-16/8609043130773_bf1cbbc5d56e0482c215_192.png" + } + } + }, + { + "count": 7, + "value": { + "stringValue": "dan@glean.com", + "displayLabel": "Dan Fergusson", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2023-11-01/6126955309330_bf4d92b5b3c679812105_192.png" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "jaishree.giri@glean.com", + "displayLabel": "Jaishree Giri", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-07/9646887500342_00abf4d3cdc12f20d534_192.jpg" + } + } + }, + { + "count": 4, + "value": { + "stringValue": "michael.wiradharma@glean.com", + "displayLabel": "Michael Wiradharma", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-04-21/8787310892722_549edc8309aa327e1bb3_192.png" + } + } + }, + { + "count": 10, + "value": { + "stringValue": "praveen.yalagandula@glean.com", + "displayLabel": "Praveen Yalagandula", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-11/7414016129780_bf67415213bf98c9b107_192.jpg" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "preeyal.sarawgi@glean.com", + "displayLabel": "Preeyal Sarawgi", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2024-07-09/7390137859350_ed08f424a2b7939004e5_192.png" + } + } + }, + { + "count": 5, + "value": { + "stringValue": "stephen.chu@glean.com", + "displayLabel": "Stephen Chu", + "iconConfig": { + "url": "https://avatars.slack-edge.com/2025-10-01/9607282793623_eddf5ea9e16d05630af6_192.png" + } + } + }, + { + "count": 3, + "value": { + "stringValue": "\"Anthropic", + "displayLabel": "\"Anthropic", + "iconConfig": {} + } + }, + { + "count": 7, + "value": { + "stringValue": "\"Cardente", + "displayLabel": "\"Cardente", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "\"Davis", + "displayLabel": "\"Davis", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "type", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 13, + "datasource": "gdrive", + "value": { + "stringValue": "Application", + "iconConfig": {} + } + }, + { + "count": 15, + "datasource": "gdrive", + "value": { + "stringValue": "Audio", + "iconConfig": {} + } + }, + { + "count": 9667, + "datasource": "gdrive", + "value": { + "stringValue": "Code", + "iconConfig": {} + } + }, + { + "count": 10, + "datasource": "gdrive", + "value": { + "stringValue": "Compressed Archive", + "iconConfig": {} + } + }, + { + "count": 6, + "datasource": "microsoftteams", + "value": { + "stringValue": "Conversation", + "iconConfig": {} + } + }, + { + "count": 3900, + "datasource": "slack", + "value": { + "stringValue": "Conversation", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "developers", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 873, + "datasource": "gdrive", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 7, + "datasource": "gleandocs", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 9, + "datasource": "gleanwebsite", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "weberywsrygleaniverseevents", + "value": { + "stringValue": "Document", + "iconConfig": {} + } + }, + { + "count": 1, + "datasource": "gdrive", + "value": { + "stringValue": "Drawing", + "iconConfig": {} + } + }, + { + "count": 2036, + "datasource": "gdrive", + "value": { + "stringValue": "Folder", + "iconConfig": {} + } + }, + { + "count": 5, + "datasource": "gdrive", + "value": { + "stringValue": "Font", + "iconConfig": {} + } + }, + { + "count": 347, + "datasource": "gdrive", + "value": { + "stringValue": "Image", + "iconConfig": {} + } + }, + { + "count": 3, + "datasource": "gdrive", + "value": { + "stringValue": "Other", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "collection", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "2024 Q4 R\u0026D OKRs (FY25)", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "2025 Q1 R\u0026D OKRs (FY26)", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "2025 Q2 R\u0026D OKRs (FY26)", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Agent Strategy", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Agent UX research sessions", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Agents 2025", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Agents Launch - R\u0026D Docs", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "Agents Product Docs", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "Agents Reframe", + "iconConfig": {} + } + }, + { + "count": 4, + "value": { + "stringValue": "Applied Science planning", + "iconConfig": {} + } + }, + { + "count": 5, + "value": { + "stringValue": "Applied Science Q1FY27 Planning", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 24, + "value": { + "stringValue": "Go Links", + "iconConfig": {} + } + } + ] + }, + { + "sourceName": "datasource", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 5, + "value": { + "stringValue": "answers", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "collections", + "iconConfig": {} + } + }, + { + "count": 8, + "value": { + "stringValue": "confluence", + "displayLabel": "Confluence - Cloud", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "developers", + "displayLabel": "Developers", + "iconConfig": {} + } + }, + { + "count": 13256, + "value": { + "stringValue": "gdrive", + "displayLabel": "Google Drive", + "iconConfig": {} + } + }, + { + "count": 4022, + "value": { + "stringValue": "github", + "iconConfig": {} + } + }, + { + "count": 9, + "value": { + "stringValue": "gleanwebsite", + "displayLabel": "Glean Website", + "iconConfig": {} + } + }, + { + "count": 8877, + "value": { + "stringValue": "gmailnative", + "displayLabel": "Gmail", + "iconConfig": {} + } + }, + { + "count": 217, + "value": { + "stringValue": "gong", + "iconConfig": {} + } + }, + { + "count": 259, + "value": { + "stringValue": "googlecalendar", + "displayLabel": "Google Calendar", + "iconConfig": {} + } + }, + { + "count": 3, + "value": { + "stringValue": "wiz", + "displayLabel": "Wiz", + "iconConfig": {} + } + }, + { + "count": 1, + "value": { + "stringValue": "people", + "iconConfig": {} + } + }, + { + "count": 2, + "value": { + "stringValue": "slack", + "iconConfig": {} + } + } + ], + "hasMoreBuckets": true + }, + { + "sourceName": "suggested", + "operatorName": "SelectMultiple", + "buckets": [ + { + "count": 1, + "value": { + "stringValue": "my history", + "iconConfig": {} + } + } + ] + } + ], + "resultTabs": [ + { + "count": 26317, + "id": "all" + }, + { + "count": 13256, + "datasource": "gdrive", + "datasourceInstance": "gdrive", + "id": "gdrive" + }, + { + "count": 4022, + "datasource": "github", + "id": "github" + }, + { + "count": 1, + "datasource": "developers", + "datasourceInstance": "developers", + "id": "developers" + }, + { + "count": 8877, + "datasource": "gmailnative", + "datasourceInstance": "gmailnative", + "id": "gmailnative" + }, + { + "count": 9, + "datasource": "gleanwebsite", + "datasourceInstance": "gleanwebsite", + "id": "gleanwebsite" + }, + { + "count": 8, + "datasource": "confluence", + "id": "confluence" + }, + { + "count": 5, + "datasource": "answers", + "datasourceInstance": "answers", + "id": "answers" + }, + { + "count": 2, + "datasource": "collections", + "datasourceInstance": "collections", + "id": "collections" + }, + { + "count": 131, + "datasource": "gong", + "id": "gong" + }, + { + "count": 1, + "datasource": "people", + "datasourceInstance": "people", + "id": "people" + }, + { + "count": 2, + "datasource": "slack", + "id": "slack" + }, + { + "count": 3, + "datasource": "wiz", + "datasourceInstance": "wiz", + "id": "wiz" + } + ], + "resultTabIds": [ + "all" + ], + "cursor": "eyJSZXN1bHRTdGFydCI6MSwiUmFuZG9tQ2FjaGVLZXkiOiIyMzk4NDcyMDUyOTIzMjIzMDE2IiwiUGFnZUR1cGVNZXRhZGF0YSI6eyJQYWdlSWQiOjEsIlJlc3VsdFRva2VucyI6bnVsbH0sIkN1cnNvckNhY2hlS2V5IjoiYWU1ZWJiMDUtOWFmZC00ZjhiLWI1MWQtY2Y4ODk5Njk2Y2RiIiwiTnVtTm9uQW5zd2VyU3RydWN0dXJlZFJlc3VsdHNTaG93biI6MX0=", + "hasMoreResults": true +}