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

{
    "ob_id": 43398,
    "uuid": "880f64e6938642868a0cf2dd66dbc0e9",
    "title": "Shipping Emissions in the Arctic and North Atlantic atmosphere (SEANA)",
    "abstract": "SEANA aims to understand the sources of aerosol particles including the contribution from shipping and to determine the response of Arctic and North Atlantic aerosols to future shipping emissions. SEANA coordinated a research cruise, on RRS Discovery, to the west side of Greenland to measure both natural and anthropogenic particles and understanding aerosol processes. Measurements were also conducted at two stations adjacent to the Northwester Passage (Faroe Islands and Thule). These observations were used to update and improve a global aerosol model to better reproduce current \"baselines\". The updated model will be used to predict the impacts of future shipping on air quality, clouds and radiative forcing in the Arctic and North Atlantic Ocean.",
    "keywords": "SEANA, shipping, aerosol",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/13222/?format=api"
    ],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/206553/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/206554/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/206555/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/208416/?format=api"
    ]
}