AgentsConfigurationSchemaUtilsgetCacheSizeCopy page|View as Markdown|Open in Claude|More actionsGet the number of cached validation results. Parameters None. Returns number — The current cache entry count. Example 1import { SchemaUtils } from '@signalwire/sdk';23const schema = new SchemaUtils();4schema.validate(doc1);5schema.validate(doc2);6console.log(schema.getCacheSize()); // 2