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

{
    "ob_id": 30004,
    "uuid": "7cfcd20428c3454fafa4e1afec2cf923",
    "title": "ESA Sea State Climate Change Initiative Project",
    "abstract": "The European Space Agency (ESA) Sea State CCI+ project is part of ESA's Climate Change Initiative (CCI) programme.   The CCI programme was launched by ESA in 2010, to produce long term datasets of Essential Climate Variables (ECV's) derived from global satellite data.   In this context, the Sea State CCI+ project was kicked off in 2018 in order to produce a CDR for the new ECV \"Sea State\".",
    "keywords": "",
    "status": "ongoing",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/30025/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/11009/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129667/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129669/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129666/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129668/?format=api"
    ]
}