0.1.0 • Published 3 years ago

ajv-swedish-ssn v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

ajv-swedish-ssn

Adds a swedish-ssn format to Ajv.

Install

npm i --save ajv-swedish-ssn

Setup

import Ajv from 'ajv'
import ssnValidator from 'ajv-swedish-ssn'
const ajv = new Ajv()
ssnValidator(ajv)

Usage

When defining your JSON schema, use the format keyword with ther value set to swedish-ssn. For example

{
  "type": "object",
  "properties": {
    "ssn": {
      "type": "string",
      "format": "swedish-ssn"
    }
  }
}