
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@mastra/schema-compat
Advanced tools
Affected versions:
Schema compatibility utilities that adapt Zod and JSON schemas to the different subsets and formats supported by AI model providers. Mastra uses these layers when tool inputs or structured outputs contain schema features a provider cannot accept directly.
npm install @mastra/schema-compat
Apply a provider layer to a Zod schema before passing it to an AI SDK API:
import { applyCompatLayer, OpenAISchemaCompatLayer } from '@mastra/schema-compat';
import { z } from 'zod';
const model = {
provider: 'openai.chat',
modelId: 'gpt-5.2',
supportsStructuredOutputs: true,
};
const schema = z.object({
name: z.string().email(),
tags: z.array(z.string()).min(1),
});
const compatibleSchema = applyCompatLayer({
schema,
compatLayers: [new OpenAISchemaCompatLayer(model)],
mode: 'aiSdkSchema',
});
The package includes compatibility layers for Anthropic, DeepSeek, Google, Meta, OpenAI, and OpenAI reasoning models. A layer decides whether it applies to the supplied model information, selects the provider's schema target, and rewrites unsupported checks or structures without changing the application's source schema.
applyCompatLayer() chooses the first applicable layer and returns either an AI SDK schema or JSON Schema. convertZodSchemaToAISDKSchema() converts Zod directly, while convertSchemaToZod() converts supported schema inputs back to Zod. Standard Schema helpers are available for extracting schemas, converting them to JSON Schema, and applying OpenAI compatibility transforms to tools.
The package supports both Zod v3 and v4. SchemaCompatLayerV3 and SchemaCompatLayerV4 expose version-specific APIs, while SchemaCompatLayer dispatches based on the schema version. Utilities such as prepareJsonSchemaForOpenAIStrictMode() and ensureAllPropertiesRequired() handle strict structured-output requirements.
Provider layers commonly remove unsupported refinements, convert validation rules into descriptions, normalize nullable and union types, and target JSON Schema 7 or OpenAPI-compatible output as required by the provider.
See the package changelog for version history and release notes.
We have an open community Discord. Come and say hello and let us know if you have any questions or need any help getting things running.
FAQs
Tool schema compatibility layer for Mastra.ai
The npm package @mastra/schema-compat receives a total of 1,619,213 weekly downloads. As such, @mastra/schema-compat popularity was classified as popular.
We found that @mastra/schema-compat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.