You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
import type {CodeKeywordDefinition} from "../../types"
|
|
import type {KeywordCxt} from "../../compile/validate"
|
|
import {validateProperties, error} from "./properties"
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
keyword: "optionalProperties",
|
|
schemaType: "object",
|
|
error,
|
|
code(cxt: KeywordCxt) {
|
|
if (cxt.parentSchema.properties) return
|
|
validateProperties(cxt)
|
|
},
|
|
}
|
|
|
|
export default def
|