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

{
    "ob_id": 25531,
    "uuid": "6b366a55917543f6aadfdc842ea82951",
    "title": "FOAM - Silesia: Flight campaign over Silesian Coal District to quantify the methane emission rates from urban and biogenic sources",
    "abstract": "The EUFAR FOAM-Silesia project aimed to verify and improve the knowledge on the spatial distribution of individual methane sources used as input for the model (including biogenic and anthropogenic sources) and to substantially improve model parametrization of short range mixing in the lower atmosphere under different boundary layer conditions.",
    "keywords": "EUFAR, FOAM-Silesia",
    "status": "completed",
    "publicationState": "working",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/6385/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106812/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106813/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106814/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106815/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106811/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/106816/?format=api"
    ]
}