function parseWithStandardSchema<T>(schema, data): T;function parseWithStandardSchema<T>(schema, data): T;Defined in: packages/ai/src/activities/chat/tools/schema-converter.ts:390
Synchronously validates data against a Standard Schema compliant schema. Note: Some Standard Schema implementations may only support async validation. In those cases, this function will throw.
T
unknown
Standard Schema compliant schema
unknown
Data to validate
T
Parsed/validated data
StandardSchemaValidationError if validation fails; Error if the schema only supports async validation.