.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / node_modules / ajv / lib / vocabularies / applicator / dependentSchemas.ts
1 import type {CodeKeywordDefinition} from "../../types"
2 import {validateSchemaDeps} from "./dependencies"
3
4 const def: CodeKeywordDefinition = {
5   keyword: "dependentSchemas",
6   type: "object",
7   schemaType: "object",
8   code: (cxt) => validateSchemaDeps(cxt),
9 }
10
11 export default def