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

{
    "ob_id": 1655,
    "uuid": "41bda41acf140eb5bf8501d1bef09271",
    "title": "NERC Microwave Limb Sounder (MLS) prototype H2O",
    "abstract": "Prototype water vapour profiles from the MLS data, retrieved at the University of Edinburgh. Data generally cover wider altitude range than \"official\" MLS version 4 retrievals and are available at a higher vertical resolution. Coverage is from September 1991 to April 1993. This project was funded by NERC.",
    "keywords": "NERC, MLS, water vapour, Edinburgh",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/1238/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/1237/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/6689/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/877/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/5107/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51875/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51877/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/51876/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/55020/?format=api"
    ]
}