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

{
    "ob_id": 233,
    "uuid": "c5b2ab7f5d6957854ead3859905f6e62",
    "title": "OP3-aircraft",
    "abstract": "This activity refers to concurrent observations above the ground based site aboard the FAAM BAe 146 aircraft, a collaboration between the Met Office(TM) and the Natural Environment Research Council (NERC). OP3-aircaft activity took palce from 21st June to 27th July 2008",
    "keywords": "",
    "status": "",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/177/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/178/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/47/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/619/?format=api"
    ]
}