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

{
    "ob_id": 19801,
    "uuid": "818b5bd261554517be04316f5bba82c8",
    "title": "Alouette missons",
    "abstract": "Alouette 1 was a deactivated Canadian satellite that studied the ionosphere, launched in 1962. The purpose of Alouette 1 was to investigate the properties of the top of the ionosphere, and the dependence of those properties on geographical location, season, and time of day.\r\n\r\nAlouette 2 was a Canadian research satellite launched at 04:48 UTC on November 29, 1965 by a Thor Agena rocket with Explorer 31 from the Western test range at Vandenberg AFB in California. The Alouette 2 was built up from the identical backup satellite to Alouette 1. It had many more experiments and more sophisticated support systems than the earlier satellite. It lasted for 10 years, being terminated on August 1, 1975.",
    "keywords": "Alouette",
    "status": "completed",
    "publicationState": "working",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/10932/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75015/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/75018/?format=api"
    ]
}