When I create a resource with attribute name "type" and try to send a POST request with payload: ``` { "data": { "type": "files", "attributes": { "name": "file.pdf", "type": "img_product", "mime": "pdf", "size": 123456 } } } ``` I get an error: ``` { "jsonapi": { "version": "1.0" }, "errors": [ { "detail": "The member attributes cannot have a type field.", "source": { "pointer": "/data/attributes" }, "status": "400", "title": "Non-Compliant JSON:API Document" } ] } ```