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

{
    "ob_id": 12057,
    "uuid": "01784d343c441f4e86064cd772fcb8a2",
    "title": "Weybourne Atmospheric Observatory (WAO)",
    "abstract": "WAO is a coastal site located on the North Norfolk coastline near Weybourne. Over the last ten years the Weybourne Atmospheric Observatory (WAO) has become established as a world class facility at which fundamental research, background monitoring and teaching have all been successfully carried forward. WAO has been the focus of many international experiments designed to look into the chemistry of the free troposphere and the planetary boundary layer. \r\n\r\nThe Observatory is located at 52°57'01.5\"N 1°07'19\"E\r\n",
    "keywords": "NCAS",
    "status": "ongoing",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/8226/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/8227/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/3818/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/876/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/46010/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/103934/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/103935/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/103936/?format=api"
    ]
}