parametersJsonSchema property
Describes the parameters to the function in JSON Schema format.
The schema must describe an object where the properties are the parameters
to the function. For example: { "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" } }, "additionalProperties": false, "required": ["name", "age"], "propertyOrdering": ["name", "age"] } This field is mutually exclusive
with parameters.
Optional.
The values for Object must be JSON objects. It can consist of num,
String, bool and null as well as Map and List values.
Implementation
core.Object? parametersJsonSchema;