diff --git a/openflexure_microscope/api/v2/views/captures.py b/openflexure_microscope/api/v2/views/captures.py index 80afdc24..618419b6 100644 --- a/openflexure_microscope/api/v2/views/captures.py +++ b/openflexure_microscope/api/v2/views/captures.py @@ -18,7 +18,7 @@ from marshmallow import pre_dump class CaptureSchema(Schema): id = fields.String() - file = fields.String(data_key="path") + file = fields.String(data_key="path", description="Path of file on microscope device") exists = fields.Bool(data_key="available") filename = fields.String() metadata = fields.Dict()