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

{
    "ob_id": 6686,
    "uuid": "4a5508f4ad9bf98d51fbf497db835c52",
    "title": "Acid Deposition Processes Project",
    "abstract": "The Centre for Ecology and Hydrology (CEH) undertook the DEFRA funded Acid Deposition Processes Project to aid development of the understanding of acid deposition in the UK. In order to meet the project had the following 5 principal aims: \r\n1) to determine the fate of the UK emissions of sulphur and nitrogen by direct measurements and to check and validate model deposition and concentration fields; \r\n2) to measure the magnitude of exceedances of deposition over ecosystem sensitivity (Critical Load exceedances); \r\n3) to measure the trends in deposition relative to emission changes to show whether UK policy on reductions is working and Is effective; \r\n4) to provide the underpinning measurement of deposition processes (wet and dry), to provide the parameters for long range transport and deposition models in the UK (eg FRAME) and for EMEP modelling; \r\n5) to describe the chemical climate of the atmosphere over the UK and the changes with time. \r\nThis work was undertaken under DEFRA contract RMP2258.",
    "keywords": "Acid Deposition, CEH, radar, wind",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/4386/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/4387/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/6683/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28757/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/28758/?format=api"
    ]
}