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

{
    "ob_id": 19726,
    "uuid": "9d286441e83e4200ad17ca36f2cc1e3b",
    "title": "(A)ATSR Multimissions programme",
    "abstract": "The (A)ATSR mission programme was funded jointly by the UK Department of Energy and Climate Change External Link (DECC) and the Australian Department of Innovation, Industry, Science and Research External Link (DIISR). \r\n",
    "keywords": "AATSR, ATSR, temperature, reflectance, satellite ",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19905/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19910/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/19899/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74662/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74664/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74665/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74666/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74667/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74663/?format=api"
    ]
}