mirror of https://github.com/jkjoy/sunpeiwen.git
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
|
import type {CodeKeywordDefinition} from "../../types"
|
||
|
import {validateSchemaDeps} from "./dependencies"
|
||
|
|
||
|
const def: CodeKeywordDefinition = {
|
||
|
keyword: "dependentSchemas",
|
||
|
type: "object",
|
||
|
schemaType: "object",
|
||
|
code: (cxt) => validateSchemaDeps(cxt),
|
||
|
}
|
||
|
|
||
|
export default def
|