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

{
    "ob_id": 25288,
    "uuid": "583f546ddbbb49009675010b5e07a9fb",
    "title": "Penlee Point Atmospheric Observatory",
    "abstract": "The Penlee Point Atmospheric Observatory (PPAO) was established by the Plymouth Marine Laboratory in May 2014 for long term observations of ocean-atmosphere interaction. The observatory is only a few tens of metres away from the water edge and 11m above mean sea level.\r\n\r\nAt the mouth of the Plymouth Sound, the site (50° 19.08' N, 4° 11.35' W) is exposed to marine air when the wind comes from 110° - 240°. Typical southwesterly winds tend to bring relatively clean background Atlantic air. In contrast, winds from the southeast are often contaminated by exhaust plumes from passing ships. The PPAO is in close proximity to marine sampling stations that form the Western Channel Observatory, enabling better understanding of the ocean-atmosphere coupling.",
    "keywords": "Penlee, Atmospheric, Meteorology, Pollution, Chemistry, Ozone, Sulphur Dioxide, Carbon Dioxide, Rainfall, Wind, Methane",
    "status": "ongoing",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/25287/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/103606/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/103607/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/103608/?format=api"
    ]
}