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

{
    "ob_id": 19710,
    "uuid": "94d45555fd634aa6a03884e7a27a27e7",
    "title": "Stratospheric Aerosol and Gas Experiment II (SAGE II)",
    "abstract": "The SAGE II (Stratospheric Aerosol and Gas Experiment II) sensor was launched into a 57 degree inclination orbit aboard the Earth Radiation Budget Satellite (ERBS) in October 1984. During each sunrise and sunset encountered by the orbiting spacecraft, the instrument used the solar occultation technique to measure attenuated solar radiation through the Earth's limb in seven channels centered at wavelengths ranging from 0.385 to 1.02 micrometers and to measure stratospheric aerosols, ozone, nitrogen dioxide, and water vapor. \r\n\r\nThe data SAGE II collected were integral to confirming human-driven changes to ozone, and thus contributed to the 1987 Montreal Protocol that banned certain harmful chemicals. SAGE II observations helped to confirm that ozone ceased decreasing in response to this action.\r\n\r\nMajor results from SAGE II include illustrations of the stratospheric impact of the 1991 Mount Pinatubo eruption, identification of a negative global trend in lower stratospheric ozone during the 1980s, and quantitative verification of the positive water vapor feedback in current climate models.\r\n",
    "keywords": "SAGE, chemistry",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/7218/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/559/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74637/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74638/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74639/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74640/?format=api"
    ]
}