diff --git a/app/api/v1/schema/record.py b/app/api/v1/schema/record.py index 196bdb1..7260912 100644 --- a/app/api/v1/schema/record.py +++ b/app/api/v1/schema/record.py @@ -18,4 +18,4 @@ class BodyRecordOut(Schema): class BodyRecordsOut(Schema): - records = fields.Nested(BodyRecordOut) \ No newline at end of file + records = fields.List(fields.Nested(BodyRecordOut)) \ No newline at end of file