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

{
    "ob_id": 19356,
    "uuid": "640ebc68a38a4c44915fe4807b8dd00e",
    "title": "Met Office Met. Research Flight (MRF) C-130 Sorties",
    "abstract": "The Met. Research Flight (MRF) was a Met Office facility, which operated a well instrumented C-130 Hercules (also referred to as Mk.2 Hercules) aircraft for research purposes. The C-130 was in service from 1972 to 2001 and flew over 1800 research sorties. The large capacity and long endurance of this platform made it ideal for atmospheric research in the areas of cloud physics, atmospheric radiation, atmospheric chemistry, satellite activities, mesoscale meteorology and boundary layer studies.",
    "keywords": "Met Office, atmosphere, chemistry, airborne, C-130",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/431/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/4/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/73212/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/73215/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/73216/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/73213/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/73214/?format=api"
    ]
}