Interface FunctionDeclarationSchemaProperty (0.4.0)

Schema is used to define the format of input/output data. Represents a select subset of an OpenAPI 3.0 schema object. More fields may be added in the future as needed.

Package

@google-cloud/vertexai

Properties

description

description?: string;

enum

enum?: string[];

example

example?: unknown;

format

format?: string;

items

items?: FunctionDeclarationSchema;

nullable

nullable?: boolean;

properties

properties?: {
        [k: string]: FunctionDeclarationSchema;
    };

required

required?: string[];

type

type?: FunctionDeclarationSchemaType;