Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
26
my-app/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts
generated
vendored
Executable file
26
my-app/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts
generated
vendored
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
import type {CodeKeywordDefinition, KeywordErrorDefinition} from "../../types"
|
||||
import type {KeywordCxt} from "../../compile/validate"
|
||||
import {_, str, operators} from "../../compile/codegen"
|
||||
|
||||
const error: KeywordErrorDefinition = {
|
||||
message({keyword, schemaCode}) {
|
||||
const comp = keyword === "maxProperties" ? "more" : "fewer"
|
||||
return str`must NOT have ${comp} than ${schemaCode} properties`
|
||||
},
|
||||
params: ({schemaCode}) => _`{limit: ${schemaCode}}`,
|
||||
}
|
||||
|
||||
const def: CodeKeywordDefinition = {
|
||||
keyword: ["maxProperties", "minProperties"],
|
||||
type: "object",
|
||||
schemaType: "number",
|
||||
$data: true,
|
||||
error,
|
||||
code(cxt: KeywordCxt) {
|
||||
const {keyword, data, schemaCode} = cxt
|
||||
const op = keyword === "maxProperties" ? operators.GT : operators.LT
|
||||
cxt.fail$data(_`Object.keys(${data}).length ${op} ${schemaCode}`)
|
||||
},
|
||||
}
|
||||
|
||||
export default def
|
||||
Loading…
Add table
Add a link
Reference in a new issue