"""Contract Template marshmallow schema.""" from abacus_common_logic.marshalling.custom_fields import ma class CreateContractByTemplatePostSchema(ma.Schema): """Contract POST body.""" account_id = ma.IntegerId(required=True) account_name = ma.NonemptyString(required=True)