ajv-cli
Version:
Command line interface for Ajv JSON schema validator
15 lines (14 loc) • 487 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
function usage() {
console.error(`
usage:
validate: ajv [validate] -s schema[.json] -d data[.json]
compile: ajv compile -s schema[.json]
migrate: ajv migrate -s schema[.json] -o migrated_schema.json
test: ajv test -s schema[.json] -d data[.json] --[in]valid
help: ajv help
ajv help <command>`);
}
exports.default = usage;
//# sourceMappingURL=usage.js.map
;