1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| function getDef() {
| return {
| keyword: "allRequired",
| type: "object",
| schemaType: "boolean",
| macro(schema, parentSchema) {
| if (!schema)
| return true;
| const required = Object.keys(parentSchema.properties);
| if (required.length === 0)
| return true;
| return { required };
| },
| dependencies: ["properties"],
| };
| }
| exports.default = getDef;
| module.exports = getDef;
| //# sourceMappingURL=allRequired.js.map
|
|