Skip to content

Commit

Permalink
Fixed a typo and a grammatical error
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaan37 committed Feb 1, 2021
1 parent a4ff3f4 commit 955b004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/logical_data_abstraction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Logical data abstraction

.. currentmodule:: flask_rest_jsonapi

The first thing to do in Flask-REST-JSONAPI is to create a logical data abstraction. This part of the api discribes schemas of resources exposed by the api that is not the exact mapping of the data architecture. The declaration of schemas is made by `Marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ / `marshmallow-jsonapi <https://marshmallow-jsonapi.readthedocs.io/>`_. Marshmallow is a very popular serialization / deserialization library that offers a lot of features to abstract your data architecture. Moreover there is an other library called marshmallow-jsonapi that fit the JSONAPI 1.0 specification and provides Flask integration.
The first thing to do in Flask-REST-JSONAPI is to create a logical data abstraction. This part of the api describes schemas of resources exposed by the api that is not the exact mapping of the data architecture. The declaration of schemas is made by `Marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ / `marshmallow-jsonapi <https://marshmallow-jsonapi.readthedocs.io/>`_. Marshmallow is a very popular serialization / deserialization library that offers a lot of features to abstract your data architecture. Moreover there is an other library called marshmallow-jsonapi that fits the JSONAPI 1.0 specification and provides Flask integration.

Example:

Expand Down

0 comments on commit 955b004

Please sign in to comment.