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

{
    "ob_id": 8349,
    "uuid": "46cc8da20687aa95febda281bebb4526",
    "title": "Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) Mission",
    "abstract": "The Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observation (CALIPSO) was a joint-mission between NASA and the French space agency Centre National d'Etudes Spatiales. The main objectives of the mission was to supply unique data set of vertical cloud and aerosol profiles. This was to investigate direct and indirect aerosol forcings; to create better surface and atmospheric radiation flux datasets; and to analyse cloud-climate feedbacks in conjunction with other missions which take part in the A-Train, a group of polar-orbiting satellites passing through equator around 13:30 and 01:30. The satellite of this mission was launched in 28th April, 2006.",
    "keywords": "CALIPSO, cloud, aerosol",
    "status": "",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5360/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5361/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/8346/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33407/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74202/?format=api"
    ]
}