jsonapi-rb / jsonapi-renderer

Efficiently render JSON API documents.
http://jsonapi-rb.org
MIT License
27 stars 11 forks source link

Ensure dashes and underscores are permitted in key names #38

Closed jonmast closed 5 years ago

jonmast commented 5 years ago

The validation added #36 is too strict, it doesn't allow underscores, hyphens, and spaces. These are supposed to be permissible as long as they don't come at the beginning or end.

This makes the following changes to the ReGex:

Fixes #37