Get a list of Project objects. Projects have a 1:1 mapping with Observations.

### Available end points:

- `/projects/` - Will list all Projects in the database
- `/projects.json` - Will return all Projects in json format
- `/projects/<object_id>/` - Returns Projects object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `uuid`
- `status`
- `title`
- `keywords`

### How to use filters:

- `/projects/?uuid=ab4ca8d019d148f78afba1cd20872bdd`

- `/projects/?title__icontains!=Project details`

- `/projects.json?status=ongoing`

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

{
    "ob_id": 43306,
    "uuid": "f35af774e6ef49df8aa28c1e3a78ccdf",
    "title": "NAHosMIP: North Atlantic Hosing Model Intercomparison Project",
    "abstract": "In NAHosMIP we designed and conducted a set of experiments to explore hysteresis and sensitivity to additional freshwater of the Atlantic Meridional Overturning Circulation (AMOC). These experiments include adding additional freshwater (hosing) for a fixed length of time to examine the rate and mechanisms of AMOC weakening and whether the AMOC subsequently recovers once hosing stops. The main aims of this project are to understand feedbacks contributing to AMOC collapse and recovery.",
    "keywords": "CMIP6, AMOC, Tipping, Hosing",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/206158/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/206159/?format=api"
    ]
}