Adds a uuid format to Ajv.
npm i --save @socketkit/ajv-uuidimportAjvfrom'ajv'importbase64from'@socketkit/ajv-base64'constajv=newAjv()base64(ajv)When defining your JSON schema, use the format keyword with ther value set to uuid. For example
{
"type": "object",
"properties": {
"uuid": {
"type": "string",
"format": "uuid"
}
}
}