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

{
    "ob_id": 37372,
    "uuid": "9ddc2779139d4e0f91dd33fd224e36ab",
    "title": "Digitisation of Daily Meteorological Observations 1896-1917 at Halkali Agricultural School (Istanbul, Turkey)",
    "abstract": "Daily weather observations measured by students and staff at Halkali Agricultural School (a school opened in 1892 for agriculture and animal husbandry during the Ottoman period) from 1896 to 1917 in Istanbul, Turkey have been transcribed from the original publications into digital form and translated from Ottoman Turkish (the Perso-Arabic script) to English (Latin alphabet). Over 55 thousand observations of daily maximum, minimum and average temperature, rainfall, soil and under soil (0.25m) temperature, humidity, pressure, and wind speed were recovered.",
    "keywords": "",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/178540/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/178541/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/178542/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/178543/?format=api"
    ]
}