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

{
    "ob_id": 12425,
    "uuid": "4f7d5e42f95641c1a908eae9ce25bd3e",
    "title": "Atmospheric Chemistry Studies in the Oceanic Environment (ACSOE)",
    "abstract": "ACSOE was a Natural Environment Research Council (NERC) Thematic Research Programme to investigate the chemistry of the lower atmosphere (0-12 km) over the oceans to understand the natural processes occurring in this layer and the effects of pollutants originating from the continents on them. The project was run by scientists from UK institutes and universities between 1995 and 2000, with fieldwork carried out between 1996 and 1998 over the North Atlantic from the south of Iceland to the Canary Islands. BADC holds the atmospheric data collected during the programme, while the marine data is stored in the British Oceanic Data Centre (BODC).",
    "keywords": "ACSOE, Chemistry, Climate",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/10226/?format=api"
    ],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/12834/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/1923/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/2215/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/2913/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50398/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50397/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50396/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/47418/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50399/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/47419/?format=api"
    ]
}