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

{
    "ob_id": 19241,
    "uuid": "50eba91c22414cfd948c0b8e49dc558c",
    "title": "Meteosat Geostationary Satellites First Generation",
    "abstract": "Meteosat Geostationary Satellites First Generation was operated by EUMETSAT and provided almost continuous images to meteorologists and researchers in Europe and around the world. \r\n\r\nMeteosat-7 and its predecessors were the first generation of earth observation dedicated geostationary satellites located at 36000 km above the intersection of the Equator and the Greenwich Meridian. Although superseded by MSG-1 (renamed Meteosat-8) in 2005, Meteosat-7 remained as back-up at 0o longitude until 14th June 2006. Meteosat-7 will be moved to 63oE longitude to continue coverage of the Indian Ocean and take over from Meteosat-5.\r\n\r\nMeteosat-7 was launched by the European Space Agency and operated by Eumetsat.",
    "keywords": "MSG, Visible, Infra-Red, meteorology",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/4024/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/2648/?format=api",
    "subProject": [
        "https://api.catalogue.ceda.ac.uk/api/v2/projects/2648/?format=api"
    ],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/72669/?format=api"
    ]
}