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

{
    "ob_id": 23191,
    "uuid": "35d88cf4a6544071885fa053c3eb1051",
    "title": "WCRP CMIP5: the LASG-CESS Team contribution",
    "abstract": "WCRP CMIP5 contribution project by the the LASG-CESS Team. The the LASG-CESS Team consisted of the following agencies: Institute of Atmospheric Physics (LASG) and Centre for Earth System Science (CESS).",
    "keywords": "WCRP, CMIP5, LASG-CESS, CMIP",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://catalogue.ceda.ac.uk/api/v2/identifiers/9262/?format=api"
    ],
    "observationCollection": [
        "https://catalogue.ceda.ac.uk/api/v2/observationcollections/23195/?format=api"
    ],
    "parentProject": "https://catalogue.ceda.ac.uk/api/v2/projects/11975/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93771/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93766/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93767/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93772/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93774/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93765/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93770/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93768/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93773/?format=api",
        "https://catalogue.ceda.ac.uk/api/v2/rpis/93769/?format=api"
    ]
}