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/20126/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 20126,
    "uuid": "c6d5f0a1c9834f6a8cacedbb01bbb385",
    "title": "OptClim: Using Optimisation Algorithms to tune Climate Models",
    "abstract": "OptCliM investigated climate modelling advances from mathematical optimization research.  Our focus was upon parameterised processes that represent physics that are unresolved within climate models.  These unresolved processes were represented through equations that include fixed parameters, with a typical climate model having around a hundred parameters.  For example,  thunderstorms  not only generate heavy rain but are also one route for moisture into the atmosphere.  One of the parameters expressed the rate at which moist air in the storm is mixed into the atmosphere. A range of values for each parameter was consistent with theory and measurement with changes in some parameters having a dramatic effect on future climate predictions. It was therefore necessary to have realistic parameter values in order to adequately model past or future climates. ",
    "keywords": "OptCliM, Algorithms, Climate models",
    "status": "",
    "publicationState": "preview",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/78284/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/78283/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/102225/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/102227/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/102226/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/78285/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/78286/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/78287/?format=api"
    ]
}