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

{
    "ob_id": 32578,
    "uuid": "2b4558f9e4954e1cad27dc6984055bd3",
    "title": "SPF Clean Air framework",
    "abstract": "The Clean Air programme aims to bring together leading researchers from across atmospheric, medical and social science to better predict exposure to air pollution and its effects on vulnerable groups such as children and the elderly. It will identify practical and usable solutions to air pollution to help policy makers and business protect health and work towards a cleaner economy.",
    "keywords": "",
    "status": "",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/34719/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/145025/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/145027/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/145028/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/145026/?format=api"
    ]
}