From 9ec3d49b8b4e40ed6e29978881495b2ffae6ad94 Mon Sep 17 00:00:00 2001 From: A Vertex SDK engineer Date: Tue, 30 Jun 2026 15:11:00 -0700 Subject: [PATCH] fix: Support ref and def for memory schemas PiperOrigin-RevId: 940680657 --- src/types/common.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/common.ts b/src/types/common.ts index 80b42ce2..56d94952 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -653,6 +653,8 @@ export declare interface StructuredMemorySchemaConfig { id?: string; /** Optional. Represents the type of the structured memories associated with the schema. If not set, then `STRUCTURED_PROFILE` will be used. */ memoryType?: MemoryType; + /** Required. Represents the OpenAPI schema of the structured memories. */ + memoryJsonSchema?: unknown; } /** Configuration for organizing structured memories within a scope. */