## LIST all Entities stored in the database

### Returns
- array of Entity objects (JSON)

### Query params
- None

GET /entities/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

[
    {
        "name": "building",
        "description": "Building",
        "plural": "buildings",
        "documentation": "",
        "is_person": false
    },
    {
        "name": "organisation",
        "description": "Organisation",
        "plural": "organisations",
        "documentation": "",
        "is_person": false
    },
    {
        "name": "family",
        "description": "All the people in a family.",
        "plural": "families",
        "documentation": "",
        "is_person": false
    },
    {
        "name": "person",
        "description": "An individual. The minimal legal entity on which a legislation might be applied.",
        "plural": "persons",
        "documentation": "Variables like 'salary' and 'income_tax' are usually defined for the entity 'Person'.\nUsage:\nCalculate a variable applied to a 'Person' (e.g. access the 'salary' of a specific month with\nperson('salary', \"2017-05\")).\nCheck the role of a 'Person' in a group entity (e.g. check if a the 'Person' is a 'first_parent'\nin a 'Family' entity with person.has_role(Family.PARENT)).\nFor more information, see: https://openfisca.org/doc/coding-the-legislation/50_entities.html",
        "is_person": true
    }
]