example.py 449B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. import marshmallow
  3. class HelloResponseSchema(marshmallow.Schema):
  4. sentence = marshmallow.fields.String(required=True)
  5. name = marshmallow.fields.String(required=True)
  6. color = marshmallow.fields.String(required=False)
  7. class HelloPathSchema(marshmallow.Schema):
  8. name = marshmallow.fields.String(required=True)
  9. class HelloJsonSchema(marshmallow.Schema):
  10. color = marshmallow.fields.String(required=True)