miLibris / flask-rest-jsonapi

Flask extension to build REST APIs around JSONAPI 1.0 specification.

Home Page:http://flask-rest-jsonapi.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Relationships containing hyphens in url

kumy opened this issue · comments

commented

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 '_'.