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

{
    "ob_id": 4875,
    "uuid": "d829075f22418714e58ad02953b8da34",
    "title": "Flux Experiment (FLUXEX)",
    "abstract": "An experiment to establish the fluxes of many ozone depleting gases (CFCs, HCFCs, halons) and greenhouse gases (HFCs, PFCs, SF6) from the UK. Its aim was to assess regional emission inventories of these gases. Attempts will also be made to measure for the first time \"new\" ozone depleting gases, such as n-propyl bromide and hexachlorobutadiene, and to estimate UK emissions. The FAAM aircraft, fitted with air sampling bottles, is flown in the boundary layer upwind and downwind of the UK. The airborne campaign is taking place in the Summer of 2005.",
    "keywords": "FLUXEX, FAAM, Chemistry, Greenhouse gases",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/9066/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/3257/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/3258/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/4872/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/22096/?format=api"
    ]
}