miLibris / flask-rest-jsonapi

Flask extension to build REST APIs around JSONAPI 1.0 specification.
http://flask-rest-jsonapi.readthedocs.io
MIT License
598 stars 153 forks source link

Relationships containing hyphens in url #130

Closed kumy closed 5 years ago

kumy commented 5 years ago

Having endpoint definition containing hyphens as the last uri token such as /persons/<int:person_id>/relationships/computers-owned lead to error PersonSchema has no attribute computers-owned.

Effectively, due to python language, Schema attribute name cannot contains hyphens in their name.

At least we have to replace '-' by '_'.