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

{
    "ob_id": 19610,
    "uuid": "6de4edfd146446618c81aa656111b17d",
    "title": "CASIX TOPography EXperiment (TOPEX)",
    "abstract": "TOPography EXperiment (TOPEX) for ocean circulation (otherwise known as Poseidon) was launched on August 10, 1992 and was a joint satellite mission between NASA, the U.S. space agency, and CNES, the French space agency, to map ocean surface topography. The first major oceanographic research vessel to sail into space, TOPEX/Poseidon helped revolutionise oceanography by proving the value of satellite ocean observations.\r\n\r\nCentre for the observation of Air-Sea Interaction and fluXes (CASIX) was responsible for the UK contribution to international TOPEX programme, undertaken as part of the National Centre for Earth Observation (NCEO).",
    "keywords": "TOPEX, ocean, satellite, marine",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/8436/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/5000/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74341/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74342/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74343/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/74344/?format=api"
    ]
}