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

{
    "ob_id": 33173,
    "uuid": "f4efc3cd88914cb0a957f7cffe7f894e",
    "title": "UK Status, Change and Projections of the Environment (UK-SCAPE)",
    "abstract": "Significant environmental challenges have been created by pressures on land use, air and soil quality, water and food security, and biodiversity. The UK-SCAPE programme will undertake research and provide national-scale data and models designed to deliver new integrated understanding of the environment to tackle those challenges. It will improve our understanding of the consequences of interventions in the UK landscape and allow researchers to answer high-level questions relating to the environment.",
    "keywords": "NE/R016429/1",
    "status": "ongoing",
    "publicationState": "preview",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/148149/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/148151/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/148152/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/168975/?format=api"
    ]
}