Change additionalProperties type to Any

This is aligned with "default" which is also `Any`, and both in vertex ai docs:
https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.cachedContents#Schema

are both with 'value' type
This commit is contained in:
Eitan1112 2025-09-04 18:05:53 +03:00 committed by GitHub
parent 006ffea98f
commit da136fa07b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -113,7 +113,7 @@ class Schema(TypedDict, total=False):
pattern: str
example: Any
anyOf: List["Schema"]
additionalProperties: bool
additionalProperties: Any
class FunctionDeclaration(TypedDict, total=False):