Get a list of Phenomenon objects. Phenomena have many to many mapping with Observations.

### Available end points:

- `/phenomena/` - Will list all phenomena in the database
- `/phenomena.json` - Will return all phenomena in json format
- `/phenomena/<object_id>/` - Returns phenomena object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `names`
- `terms`


### How to use filters:

`/phenomena/?names__name__contains=sea`

`/phenomena.json?terms__vocabulary=cf_standard_names`

GET /api/v2/phenomona/10089/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 10089,
    "names": [
        {
            "ob_id": 229,
            "name": "latitude"
        },
        {
            "ob_id": 6619,
            "name": "coordinate latitude"
        }
    ],
    "terms": [
        {
            "ob_id": 70,
            "label": "units",
            "value": "degrees_north",
            "vocabulary": ""
        },
        {
            "ob_id": 72,
            "label": "standard_name",
            "value": "latitude",
            "vocabulary": "cf_standard_names"
        },
        {
            "ob_id": 2195,
            "label": "var_id",
            "value": "lat",
            "vocabulary": ""
        },
        {
            "ob_id": 9838,
            "label": "long_name",
            "value": "coordinate latitude",
            "vocabulary": ""
        }
    ]
}