Repository URL to install this package:
|
Version:
0.0.44 ▾
|
# -*- coding:utf-8 -*-
# Third
from marshmallow import Schema
from marshmallow.fields import Str
# Apps
from oyaji.messages import Messages
# Local
class DescriptionSchema(Schema):
raw = Str(required=True, error_messages={"required": Messages.FIELD_REQUIRED.value})
markdown = Str(required=False)
html = Str(required=False)
mobile = Str(required=False)