0.1.0 • Published 4 years ago
ajv-swedish-ssn v0.1.0
ajv-swedish-ssn
Adds a swedish-ssn format to Ajv.
Install
npm i --save ajv-swedish-ssnSetup
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"
    }
  }
}0.1.0
4 years ago