CICD/app/other_api/doodad/schema.py
2019-05-18 13:47:47 -04:00

10 lines
238 B
Python

from marshmallow import fields, Schema
class DoodadSchema(Schema):
'''Doodad schema'''
doodadId = fields.Number(attribute='doodad_id')
name = fields.String(attribute='name')
purpose = fields.String(attribute='purpose')