DrHyde / json-validator

:cop: Validate data against a JSON schema

Home Page:https://metacpan.org/release/JSON-Validator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSON::Validator

A module for validating data against a JSON Schema.

use Mojolicious::Lite -signatures;
use JSON::Validator 'joi';
use Mojo::JSON qw(false to_json true);

post '/users' => sub ($c) {
  my $user = $c->req->json;

  # Validate input JSON document
  my @errors = joi(
    $user,
    joi->object->props(
      email    => joi->email->required,
      username => joi->string->min(1)->required,
      password => joi->string->min(12)->required,
    )
  );

  # Report back on invalid input
  return $c->render(json => {errors => \@errors}, status => 400) if @errors;

  # Handle the $user in some way
  $c->app->log->info(to_json $user);

  # Report back the status
  return $c->render(json => {accepted => true}, status => 201);
};

app->start;

Installation

All you need is a one-liner, it takes seconds to install.

$ curl -L https://cpanmin.us | perl - -M https://cpan.metacpan.org -n JSON::Validator

We recommend the use of a Perlbrew environment.

Want to know more?

Take a look at our excellent documentation!

About

:cop: Validate data against a JSON schema

https://metacpan.org/release/JSON-Validator


Languages

Language:Perl 99.6%Language:Shell 0.4%