input-service/src/schemas.py

25 lines
411 B
Python
Raw Normal View History

2020-03-31 17:32:04 +02:00
#!/usr/bin/env python3
from marshmallow import Schema, fields
"""
Schemas of input objects
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "schemas"
__version__text__ = "1"
class SampleSchema(Schema):
2020-04-27 12:42:46 +02:00
"""
2020-03-31 17:32:04 +02:00
Parameters:
- date (date)
- device_id (str)
"""
date = fields.Date(required=True)
device_id = fields.Str(required=True)