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

{
    "ob_id": 14147,
    "uuid": "10b36f5715274b1d985c569501ceed68",
    "title": "ESA Ozone Climate Change Initiative Project",
    "abstract": "The European Space Agency Ozone Climate Change Initiative (Ozone CCI) project is one of several projects of ESA's Climate Change Initiative (CCI), which will deliver various Essential Climate Variables (ECVs). \r\nOzone_cci aims at generating new high-quality satellite data sets that are essential to assess the fate of atmospheric ozone and better understand its link with anthropogenic activities.",
    "keywords": "ESA Ozone CCI",
    "status": "ongoing",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/14148/?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/55739/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/54336/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129733/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129734/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/129735/?format=api"
    ]
}