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

{
    "ob_id": 12064,
    "uuid": "21ad7311086984e2f742abd610f97d21",
    "title": "NCEO Theme 7: Data Assimilation",
    "abstract": "The goal of this Theme in the National Centre for Earth Observation is to develop the theory of data assimilation, particularly methods to treat uncertainty in the data and models, so that their work underpins other applications within NCEO and  partner agencies.\n\nIts priorities are to:\n- Create data-assimilation techniques for use in coupled, multi-scale Earth-system models\n- Construct techniques to represent uncertainty in observations and models\n- Determine surface movements of trace gases\n- Quantify the impact of observations\n- Develop observing-system simulation experiments",
    "keywords": "",
    "status": "",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/8234/?format=api"
    ],
    "observationCollection": [],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/5002/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/46017/?format=api"
    ]
}