UNPKG

@mintlify/validation

Version:

Validates mint.json files

8 lines (7 loc) 189 B
import { z } from 'zod'; export const $schemaSchema = z .string() .url() .optional() .default('https://mintlify.com/docs.json') .describe('The URL of the schema file');