GitHub - jsonapi-rb/jsonapi-parser: Validate JSON API documents.
Ruby gem for validating JSON API documents.
Status
Resources
- Chat: gitter
- Twitter: @jsonapirb
- Docs: jsonapi-rb.org
Installation
# In Gemfile gem 'jsonapi-parser'
then
or manually via
$ gem install jsonapi-parser
Usage
First, require the gem:
Then simply parse a document:
# This will raise JSONAPI::Parser::InvalidDocument if an error is found. JSONAPI.parse_response!(document_hash)
or a resource create/update payload:
JSONAPI.parse_resource!(document_hash)
or a relationship update payload:
JSONAPI.parse_relationship!(document_hash)
License
jsonapi-parser is released under the MIT License.
