"""Subscription Schema.""" from marshmallow import Schema from marshmallow import fields class CreateSubscriptionSchema(Schema): """Create Subscription schema. Properties: -identity_id (str): the identity_id for this contact -vendor_id (str): uuid of created vendor """ identity_id = fields.String(required=True) vendor_uuid = fields.String(required=True)