From 4918215ea75d027af0b80cfce678e0133b88f570 Mon Sep 17 00:00:00 2001 From: jtc42 Date: Thu, 2 Jan 2020 23:36:59 +0000 Subject: [PATCH] Tested Field description --- openflexure_microscope/api/v2/views/captures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()