🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

ajv-data-table

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ajv-data-table

AJV-Plugin with the "data-table" keyword for tabular (i.e. column) data objects

1.0.0
latest
npm
Version published
Weekly downloads
1
-50%
Maintainers
1
Weekly downloads
 
Created
Source

An AJV plugin for validating Objects whose attributes represent columns in a table, a common practice for representing tabular data.

This plugin adds a macro keyword "data-table" which is parameterized like an object, and matches objects whose elements are arrays of a common length with elements of the type described in the properties attribute of the schema.

Usage:

// Create an AJV instance
var Ajv = require("ajv");
var ajv = new Ajv();

// Load the `data-table` keyword onto the instance
require("ajv-data-table")(ajv)


// Create a data-table validator
valiate = ajv.compile({
    //https://github.com/epoberezkin/ajv/issues/297
    "$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
    "data-table": {
        properties:{
            "foo":{type:'number'},
            "bar":{type:'string'},
            "bat":{type:'string',format:'email'},
        },
        required:[
            "foo",
            "bar",
        ],
        patternProperties:{
            "^@[a-z]+$":{
                type:"object",
                properties:{
                    name:{type:"string"},
                    time:{
                        type:"string",
                        format:"date",
                    }
                },
            }
        }
    }
})

Matching Examples

// Object with arrays of a common length, and appropriate data types
{
    "foo":[1],
    "bar":["Hello"],
    "bat":["hello@world.com"],
}

{
    "foo":[1,2],
    "bar":["Hello","Foo"],
    "bat":["hello@world.com","foo@bar.com"],
}

// Empty arrays are ok
{
    "foo":[],
    "bar":[],
    "bat":[],
}

// optional properties (columns) are not required
{
    "foo":[],
    "bar":[],
}

// additional properties are handled according to `additionalProperties`
// and `patternProperties` from the schema
{
    "foo":[1],
    "bar":['hi'],
    "@foo":[{name:"foo",time:"2016-01-01"}],
}

Failing Examples

// inconsistent array length
{
    "foo":[1,2],
    "bar":["Hello"],
    "bat":["Oscar@madison.com"],
}

{
    "foo":[1],
    "bar":[],
    "bat":[],
}

// invalid format string
{
    "foo":[1,2],
    "bar":["Hello","Oscar"],
    "bat":["world","madison"], // fails `format:'email'`
}

// missing required field "bar"
{
    "foo":[],
    "bat":[],
}

// fails the `patternProperties` from the schema
{
    "foo":[1],
    "bar":['hi'],
    "@foo":[{name:"foo",time:"yesterday afternoon"}],
}

Keywords

ajv

FAQs

Package last updated on 19 Jun 2017

Did you know?

Socket

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.

Install

Related posts