"""Vendor marshmallow schemas.""" from marshmallow import Schema, fields class DataloadVendorContractStoreCarveoutsSchema(Schema): """Input schema for the vendor-store-carveouts-dataloader endpoint.""" vendor_contract_id = fields.Int(required=True) delivery_store_id = fields.Int(required=True)