Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
ajv-formats
Advanced tools
The ajv-formats package provides support for string formats in JSON Schema validation using the AJV validator. It includes various string formats for date-time, email, hostname, ipv4, ipv6, uri, uri-reference, uuid, and more, which can be used to validate data against specific format requirements.
Date-time format validation
Validates that a string is a valid date-time representation according to the format specified in the JSON Schema.
{"type":"string","format":"date-time"}
Email format validation
Validates that a string is a valid email address.
{"type":"string","format":"email"}
URI format validation
Validates that a string is a valid URI.
{"type":"string","format":"uri"}
UUID format validation
Validates that a string is a valid UUID.
{"type":"string","format":"uuid"}
The jsonschema package is a JSON Schema validator that also provides format validation. It supports similar functionalities to ajv-formats but is implemented in a different way and may have different performance characteristics.
tv4 is a tiny validator for JSON Schema v4. Like ajv-formats, it can validate formats specified in a JSON Schema, but it is less feature-rich and not as actively maintained as AJV.
Joi is a powerful schema description language and data validator for JavaScript. Unlike ajv-formats, Joi does not use JSON Schema but instead provides its own schema definition language, which can be more expressive and easier to use for some developers.
Plugin for AJV that adds support for some of draft2019 formats.
Currently, the iri
, idn-email
, and duration
formats are supported.
npm install ajv-draft2019-formats
The main export is an apply
function that patches an existing instance of ajv
.
const Ajv = require('ajv');
const apply = require('ajv-draft2019-formats');
const ajv = new Ajv();
apply(ajv);
let schema = {
type: 'string',
format: 'idn-email'
};
ajv.validate(schema, 'квіточка@пошта.укр') // returns true
Alternately, the formats can be passed as an option when creating a new ajv
instance.
const Ajv = require('ajv');
const formats = require('ajv-draft2019-formats/formats');
const ajv = new Ajv({formats});
let schema = {
type: 'string',
format: 'idn-email'
};
ajv.validate(schema, 'квіточка@пошта.укр') // returns true
Scheme are checked against the list of IANA schemes for a valid scheme and path only.
For 'mailto' schemes, all of the to:
addresses are validated.
isemail
is used to check the validity of the email.
The string is checked against a regex.
FAQs
Format validation for Ajv v7+
We found that ajv-formats demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.