persona-community-5/.pnpm-store/v3/files/14/82db009a5583f0de3bf19f95490fd410d840c518298dc1109975e87a131b08c94d2d52cc390b89efd2814c463a79b216a7f82eaa5f591e00b88c2e8394e17c
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
280 B
Plaintext

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