> ## Documentation Index
> Fetch the complete documentation index at: https://docs.decodahealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Freeze Membership

> Freeze a membership with optional scheduled freeze and unfreeze dates.



## OpenAPI

````yaml post /inventory/members/freeze
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /inventory/members/freeze:
    post:
      tags:
        - Memberships
      summary: Freeze Membership
      description: Freeze a membership with optional scheduled freeze and unfreeze dates.
      operationId: freeze_membership_inventory_members_freeze_post
      parameters:
        - name: TENANT
          in: header
          required: true
          schema:
            type: string
            title: Tenant
          description: The tenant you are making this request on behalf of
        - name: API-KEY
          in: header
          required: true
          schema:
            type: string
            title: Api-Key
          description: Your api key
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemberFreezeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MemberFreezeRequest:
      properties:
        memberId:
          type: string
          title: Memberid
          description: ID of the member to freeze
        reason:
          type: string
          title: Reason
          description: Reason for freezing the membership
        freezeFeeChargeId:
          anyOf:
            - type: string
            - type: 'null'
          title: Freezefeechargeid
          description: ID of the charge for the freeze fee
        freezeDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Freezedate
          description: >-
            When to automatically freeze the membership (if None, freezes
            immediately)
        unfreezeDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Unfreezedate
          description: When to automatically unfreeze the membership
      type: object
      required:
        - memberId
        - reason
      title: MemberFreezeRequest
    MemberDetail:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the member
        patientId:
          type: string
          title: Patientid
          description: ID of the patient
        membershipId:
          type: string
          title: Membershipid
          description: ID of the membership
        membership:
          $ref: '#/components/schemas/MembershipDetail-Output'
          description: Membership information
        soldByProviderId:
          anyOf:
            - type: string
            - type: 'null'
          title: Soldbyproviderid
          description: ID of the provider who sold this membership
        startDate:
          type: string
          format: date-time
          title: Startdate
          description: When the patient joined the membership
        endDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Enddate
          description: When the membership ended (if applicable)
        nextBillingDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Nextbillingdate
          description: Next scheduled billing date (if custom)
        freezeDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Freezedate
          description: When the membership should be automatically frozen
        unfreezeDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Unfreezedate
          description: When the membership should be automatically unfrozen
        status:
          $ref: '#/components/schemas/MemberStatus'
          description: Current status of the membership
        autoRenew:
          type: boolean
          title: Autorenew
          description: Whether the membership auto-renews
        billingFrequency:
          $ref: '#/components/schemas/MembershipFrequency'
          description: Billing frequency for this member
        patient:
          $ref: '#/components/schemas/PatientSummary'
          description: Patient information
        charges:
          items:
            $ref: '#/components/schemas/ChargeTinyWebhook'
          type: array
          title: Charges
          description: Charges for this member
        soldByProvider:
          anyOf:
            - $ref: '#/components/schemas/ProviderCreator'
            - type: 'null'
          description: Provider who sold this membership
        createdDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createddate
          description: When the member record was created
        updatedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updateddate
          description: When the member record was last updated
        paymentMethod:
          anyOf:
            - $ref: '#/components/schemas/PaymentMethodSummary'
            - type: 'null'
          description: Payment method for this member
        merchantAccountId:
          anyOf:
            - type: string
            - type: 'null'
          title: Merchantaccountid
          description: >-
            Per-member deposit account override. When set, billing routes here
            regardless of the membership's deposit_strategy. Null = no override
            (resolve via plan strategy).
        soldAtLocationId:
          anyOf:
            - type: string
            - type: 'null'
          title: Soldatlocationid
          description: >-
            Location where this member was enrolled. Snapshotted from the
            originating charge; used to resolve deposits when the membership's
            deposit_strategy is LOCATION_ACCOUNT.
        logs:
          items:
            $ref: '#/components/schemas/MemberLogTiny'
          type: array
          title: Logs
          description: Activity logs for this member
      type: object
      required:
        - id
        - patientId
        - membershipId
        - membership
        - startDate
        - status
        - autoRenew
        - billingFrequency
        - patient
        - charges
      title: MemberDetail
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MembershipDetail-Output:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the membership
        externalId:
          anyOf:
            - type: string
            - type: 'null'
          title: Externalid
          description: External system identifier for the membership
        name:
          type: string
          title: Name
          description: Name of the membership
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Optional description of the membership
        price:
          type: integer
          title: Price
          description: Price of the membership in cents
        patientCreditAmount:
          type: integer
          title: Patientcreditamount
          description: Amount of patient credit in cents
          default: 0
        patientCreditFrequency:
          $ref: '#/components/schemas/MembershipFrequency'
          description: Frequency of patient credit
          default: MONTHLY
        patientCreditExpiryDays:
          anyOf:
            - type: integer
            - type: 'null'
          title: Patientcreditexpirydays
          description: Days until patient credit expires
        maxRenewals:
          anyOf:
            - type: integer
            - type: 'null'
          title: Maxrenewals
          description: Maximum number of renewals (null means unlimited)
          default: 0
        autoRenew:
          type: boolean
          title: Autorenew
          description: Whether the membership auto-renews
          default: true
        setupFee:
          type: integer
          title: Setupfee
          description: Setup fee for the membership in cents
          default: 0
        freezeFee:
          type: integer
          title: Freezefee
          description: Fee to freeze the membership in cents
          default: 0
        applySurcharge:
          type: boolean
          title: Applysurcharge
          description: Whether to apply credit card surcharge to membership charges
          default: false
        minimumBillingCycles:
          type: integer
          title: Minimumbillingcycles
          description: Minimum number of billing cycles required
          default: 0
        billingFrequency:
          $ref: '#/components/schemas/MembershipFrequency'
          description: Billing frequency for the membership
          default: MONTHLY
        benefitType:
          $ref: '#/components/schemas/MembershipBenefitType'
          description: >-
            What the cycle billing creates: PREPAYMENT_DISCOUNT,
            PATIENT_CREDIT_GRANT, or NONE
          default: PREPAYMENT_DISCOUNT
        recognitionMode:
          $ref: '#/components/schemas/MembershipRecognitionMode'
          description: >-
            How cycle revenue is recognized: PER_REDEMPTION, STRAIGHT_LINE,
            CASH, or AS_CONSUMED. Defaults to CASH (whole cycle recognized at
            billing); other modes are an explicit opt-in.
          default: CASH
        expectedUsesPerCycle:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
          title: Expectedusespercycle
          description: >-
            PER_REDEMPTION only: how many redemptions a typical member makes per
            cycle, used as the recognition divisor. Leave blank when the
            redemption limit (quantity) already reflects expected usage; set it
            when the limit is a high cap (e.g. 100) rather than a typical count.
        textColor:
          anyOf:
            - type: string
            - type: 'null'
          title: Textcolor
          description: Text color for the membership
        isArchived:
          type: boolean
          title: Isarchived
          description: Whether the membership is archived
          default: false
        commissionable:
          type: boolean
          title: Commissionable
          description: Whether this membership is eligible for commissions
          default: true
        hiddenInPatientPortal:
          type: boolean
          title: Hiddeninpatientportal
          description: Whether this membership is hidden from the patient portal
          default: false
        ruleSetId:
          anyOf:
            - type: string
            - type: 'null'
          title: Rulesetid
          description: ID of the rule set for the membership
        formId:
          anyOf:
            - type: string
            - type: 'null'
          title: Formid
          description: ID of the form associated with this membership
        form:
          anyOf:
            - $ref: '#/components/schemas/MembershipFormTiny'
            - type: 'null'
          description: Form associated with this membership
        merchantAccountId:
          anyOf:
            - type: string
            - type: 'null'
          title: Merchantaccountid
          description: Bank account (merchant account) that membership deposits go to
        depositStrategy:
          $ref: '#/components/schemas/MembershipDepositStrategy'
          description: >-
            How to pick the merchant account at billing time. MEMBERSHIP_ACCOUNT
            always routes to merchant_account_id. LOCATION_ACCOUNT routes to the
            sold-at location's merchant account (falling back to
            merchant_account_id when the location has none).
          default: MEMBERSHIP_ACCOUNT
        feeSchedule:
          anyOf:
            - items:
                $ref: '#/components/schemas/MembershipFeeScheduleEntry'
              type: array
            - type: 'null'
          title: Feeschedule
          description: Cycle-specific price overrides
        tags:
          items:
            $ref: '#/components/schemas/ItemTagSummary'
          type: array
          title: Tags
          description: Tags assigned to this membership
        discountTemplates:
          anyOf:
            - items:
                $ref: '#/components/schemas/DiscountTemplate'
              type: array
            - type: 'null'
          title: Discounttemplates
          description: Discount templates for the membership
        memberCount:
          anyOf:
            - type: integer
            - type: 'null'
          title: Membercount
          description: Number of active members
          default: 0
        totalRevenue:
          anyOf:
            - type: integer
            - type: 'null'
          title: Totalrevenue
          description: Total revenue from this membership, in cents
          default: 0
        accountingBasis:
          anyOf:
            - $ref: '#/components/schemas/AccountingBasis'
            - type: 'null'
          description: >-
            Basis the total_revenue reflects: ACCRUAL = recognized revenue
            (earned as benefits are delivered), CASH = billed revenue (collected
            at cycle billing). Set only on responses that compute total_revenue;
            null otherwise. Lets the FE label what it shows.
      type: object
      required:
        - name
        - price
      title: MembershipDetail
    MemberStatus:
      type: string
      enum:
        - ACTIVE
        - EXPIRED
        - CANCELLED
        - DELINQUENT
        - FROZEN
        - INACTIVE
        - PENDING
        - AWAITING_FORM
      title: MemberStatus
    MembershipFrequency:
      type: string
      enum:
        - DAILY
        - WEEKLY
        - BIWEEKLY
        - MONTHLY
        - EVERY_FOUR_WEEKS
        - EVERY_SIX_WEEKS
        - EVERY_TEN_WEEKS
        - EVERY_TWELVE_WEEKS
        - QUARTERLY
        - EVERY_FOUR_MONTHS
        - SEMI_ANNUALLY
        - YEARLY
      title: MembershipFrequency
    PatientSummary:
      properties:
        id:
          type: string
          title: Id
          description: The unique identifier for the user.
        firstName:
          anyOf:
            - type: string
            - type: 'null'
          title: Firstname
          description: The user's first name.
        lastName:
          anyOf:
            - type: string
            - type: 'null'
          title: Lastname
          description: The user's last name.
        phoneNumber:
          anyOf:
            - type: string
            - type: 'null'
          title: Phonenumber
          description: The user's phone number.
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: The user's email address.
        type:
          $ref: '#/components/schemas/UserType'
          description: The type of user.
        locationId:
          anyOf:
            - type: string
            - type: 'null'
          title: Locationid
          description: The location of the user.
        externalId:
          anyOf:
            - type: string
            - type: 'null'
          title: Externalid
          description: The user's external identifier if available.
        address:
          anyOf:
            - type: string
            - type: 'null'
          title: Address
          description: The user's primary address.
        addressLineTwo:
          anyOf:
            - type: string
            - type: 'null'
          title: Addresslinetwo
          description: Additional address information.
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
          description: The city of the user's address.
        state:
          anyOf:
            - type: string
            - type: 'null'
          title: State
          description: The state of the user's address.
        zipCode:
          anyOf:
            - type: string
            - type: 'null'
          title: Zipcode
          description: The postal code of the user's address.
        country:
          anyOf:
            - type: string
            - type: 'null'
          title: Country
          description: The country of the user's address.
        createdDate:
          type: string
          format: date-time
          title: Createddate
          description: The date and time when the user was created.
        addressValid:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Addressvalid
          description: Whether the user's address is valid.
        meta:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Meta
          description: Any additional metadata about the user relevant to your system.
        isArchived:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Isarchived
          description: Whether the user is archived.
        primaryLocationId:
          anyOf:
            - type: string
            - type: 'null'
          title: Primarylocationid
          description: The primary location of the user.
        gender:
          anyOf:
            - type: string
            - type: 'null'
          title: Gender
          description: The gender of the patient.
        pronouns:
          anyOf:
            - type: string
            - type: 'null'
          title: Pronouns
          description: The patient's pronouns (e.g., 'he/him', 'she/her', 'they/them').
        preferredName:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Preferredname
          description: The patient's preferred name or nickname.
        dateOfBirth:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Dateofbirth
          description: The date of birth of the patient.
        patientMedications:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Patientmedications
          description: List of patient's self-reported medications.
        patientSource:
          anyOf:
            - $ref: '#/components/schemas/PatientSource'
            - type: 'null'
          description: The source of the patient.
        leadSource:
          anyOf:
            - type: string
            - type: 'null'
          title: Leadsource
          description: Flexible lead source for tracking patient acquisition.
        onSchedulingBlacklist:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Onschedulingblacklist
          description: Whether the patient is on the scheduling blacklist.
        surchargeDisabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Surchargedisabled
          description: Whether surcharges are disabled for this patient.
        optedInToSmsMarketing:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Optedintosmsmarketing
          description: Whether the patient has opted in to marketing SMS messages.
        optedInToEmailMarketing:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Optedintoemailmarketing
          description: Whether the patient has opted in to marketing email messages.
        optedInToSocialMedia:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Optedintosocialmedia
          description: >-
            Whether the patient has consented to appear on the practice's social
            media / marketing channels.
        aiScribeConsent:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Aiscribeconsent
          description: >-
            Whether the patient consents to AI scribe recording during visits.
            False auto-disables AI note generation for this patient.
        tags:
          anyOf:
            - items:
                $ref: '#/components/schemas/PatientTagSummary'
              type: array
            - type: 'null'
          title: Tags
          description: List of patient tags
        creditBalance:
          anyOf:
            - type: integer
            - type: 'null'
          title: Creditbalance
          description: Patient's credit balance in cents.
        preferredProviderId:
          anyOf:
            - type: string
            - type: 'null'
          title: Preferredproviderid
          description: The preferred provider ID for this patient.
        dosespotPatientId:
          anyOf:
            - type: string
            - type: 'null'
          title: Dosespotpatientid
          description: DoseSpot Patient ID for e-prescribing integration
      type: object
      required:
        - id
        - type
        - createdDate
      title: PatientSummary
    ChargeTinyWebhook:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the charge.
        patientId:
          type: string
          title: Patientid
          description: Identifier of the patient being charged.
      type: object
      required:
        - id
        - patientId
      title: ChargeTinyWebhook
      description: >-
        An extremely lightweight version of the Charge model, used for payment
        link Rainforest webhooks.
    ProviderCreator:
      properties:
        id:
          type: string
          title: Id
        firstName:
          type: string
          title: Firstname
        lastName:
          anyOf:
            - type: string
            - type: 'null'
          title: Lastname
      type: object
      required:
        - id
        - firstName
      title: ProviderCreator
    PaymentMethodSummary:
      properties:
        id:
          type: string
          title: Id
        patientId:
          anyOf:
            - type: string
            - type: 'null'
          title: Patientid
        rainforestPaymentMethodId:
          anyOf:
            - type: string
            - type: 'null'
          title: Rainforestpaymentmethodid
        brand:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand
        last4:
          anyOf:
            - type: string
            - type: 'null'
          title: Last4
        expMonth:
          anyOf:
            - type: integer
            - type: 'null'
          title: Expmonth
        expYear:
          anyOf:
            - type: integer
            - type: 'null'
          title: Expyear
        accountHolderType:
          anyOf:
            - type: string
            - type: 'null'
          title: Accountholdertype
        accountNumberLast4:
          anyOf:
            - type: integer
            - type: 'null'
          title: Accountnumberlast4
        bankName:
          anyOf:
            - type: string
            - type: 'null'
          title: Bankname
        routingNumber:
          anyOf:
            - type: integer
            - type: 'null'
          title: Routingnumber
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        type:
          anyOf:
            - $ref: '#/components/schemas/PaymentMethodType'
            - type: 'null'
        cardType:
          anyOf:
            - $ref: '#/components/schemas/PaymentCardType'
            - type: 'null'
        isDefault:
          type: boolean
          title: Isdefault
          default: false
        isArchived:
          type: boolean
          title: Isarchived
          default: false
        availableMerchantIds:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Availablemerchantids
        createdDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createddate
      type: object
      required:
        - id
        - patientId
        - rainforestPaymentMethodId
        - brand
        - last4
        - expMonth
        - expYear
        - accountHolderType
        - accountNumberLast4
        - bankName
        - routingNumber
        - description
        - type
      title: PaymentMethodSummary
    MemberLogTiny:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the log
        logType:
          $ref: '#/components/schemas/MemberLogType'
          description: Type of log
        createdDate:
          type: string
          format: date-time
          title: Createddate
          description: When the log was created
      type: object
      required:
        - id
        - logType
        - createdDate
      title: MemberLogTiny
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    MembershipBenefitType:
      type: string
      enum:
        - PREPAYMENT_DISCOUNT
        - PATIENT_CREDIT_GRANT
        - NONE
      title: MembershipBenefitType
      description: |-
        What a membership's cycle billing creates (the product mechanic).

        Orthogonal to MembershipRecognitionMode (the accounting choice).
    MembershipRecognitionMode:
      type: string
      enum:
        - PER_REDEMPTION
        - STRAIGHT_LINE
        - CASH
        - AS_CONSUMED
      title: MembershipRecognitionMode
      description: |-
        How a membership's cycle revenue is recognized (the accounting choice).

        Orthogonal to MembershipBenefitType (the product mechanic).
    MembershipFormTiny:
      properties:
        name:
          type: string
          title: Name
        pathName:
          type: string
          title: Pathname
      type: object
      required:
        - name
        - pathName
      title: MembershipFormTiny
    MembershipDepositStrategy:
      type: string
      enum:
        - MEMBERSHIP_ACCOUNT
        - LOCATION_ACCOUNT
      title: MembershipDepositStrategy
      description: |-
        Which merchant account a membership's cycle billing routes to.

        Resolution precedence at billing time:
          member.merchant_account_id (override)
            ?? location.merchant_account_id (if strategy == LOCATION_ACCOUNT)
            ?? membership.merchant_account_id
    MembershipFeeScheduleEntry:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the fee schedule entry
        membershipId:
          type: string
          title: Membershipid
          description: ID of the membership
          default: ''
        cycleNumber:
          type: integer
          minimum: 1
          title: Cyclenumber
          description: Billing cycle number (1-indexed)
        price:
          type: integer
          minimum: 0
          title: Price
          description: Price in cents for this cycle
      type: object
      required:
        - cycleNumber
        - price
      title: MembershipFeeScheduleEntry
    ItemTagSummary:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        color:
          anyOf:
            - type: string
            - type: 'null'
          title: Color
      type: object
      required:
        - id
        - name
      title: ItemTagSummary
    DiscountTemplate:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the discount template
        createdByItemId:
          anyOf:
            - type: string
            - type: 'null'
          title: Createdbyitemid
          description: ID of the item (membership or package) that creates this discount
        discountChoiceId:
          anyOf:
            - type: string
            - type: 'null'
          title: Discountchoiceid
          description: ID of the discount choice group
        itemId:
          anyOf:
            - type: string
            - type: 'null'
          title: Itemid
          description: ID of the specific item for this discount
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
          description: Category name for items in this discount (references category.name)
        itemType:
          anyOf:
            - $ref: '#/components/schemas/ItemType'
            - type: 'null'
          description: Type of item this discount applies to (PRODUCT, SERVICE, etc.)
        type:
          anyOf:
            - $ref: '#/components/schemas/DiscountType'
            - type: 'null'
          description: Type of discount template
        percentage:
          anyOf:
            - type: number
            - type: 'null'
          title: Percentage
          description: Discount percentage (0-100)
        amount:
          anyOf:
            - type: integer
            - type: 'null'
          title: Amount
          description: Discount amount in cents
        quantity:
          anyOf:
            - type: integer
            - type: 'null'
          title: Quantity
          description: Quantity for this discount (null = unlimited)
        expiryTimeDays:
          anyOf:
            - type: integer
            - type: 'null'
          title: Expirytimedays
          description: Days until discounts expire after issuance (null = never expires)
        renewalCycleInterval:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Renewalcycleinterval
          description: >-
            Number of billing cycles between re-issuances. null = every billing
            cycle.
        isStackable:
          type: boolean
          title: Isstackable
          description: Whether this discount can be combined with other discounts
          default: true
        isPrepayment:
          type: boolean
          title: Isprepayment
          description: Whether this is a prepayment (commissions on full price)
          default: false
        group:
          anyOf:
            - type: string
            - type: 'null'
          title: Group
          description: Group name for discount choices (resolved to discount_choice_id)
        isArchived:
          type: boolean
          title: Isarchived
          description: Whether the discount is archived
          default: false
        createdDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createddate
          description: When the template was created
        updatedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updateddate
          description: When the template was last updated
      type: object
      title: DiscountTemplate
      description: >-
        Schema for discount templates.

        These define the rules for creating discounts from memberships or
        packages.
    AccountingBasis:
      type: string
      enum:
        - CASH
        - ACCRUAL
      title: AccountingBasis
      description: Revenue recognition basis for analytics dashboards.
    UserType:
      type: string
      enum:
        - PROVIDER
        - PATIENT
        - ASSISTANT
      title: UserType
    PatientSource:
      type: string
      enum:
        - SELF_SCHEDULING
        - CALL
        - TEXT
        - MANUALLY_CREATED
        - UPLOADED_FROM_FILE
        - FORM
        - SEED_DATA
        - DEMO
        - EXTERNAL_INTEGRATION
        - REFERRAL
        - WEB_CHAT
        - META_ADS
        - GOOGLE_ADS
        - WEB_FORM
        - IMPORTED_CRM
        - OTHER
      title: PatientSource
    PatientTagSummary:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the patient tag
        name:
          type: string
          title: Name
          description: Name of the patient tag
        emoji:
          anyOf:
            - type: string
            - type: 'null'
          title: Emoji
          description: Emoji associated with the tag
        color:
          anyOf:
            - type: string
            - type: 'null'
          title: Color
          description: Color code for the tag (hex format)
        isActive:
          type: boolean
          title: Isactive
          description: Whether the tag is active
        createdDate:
          type: string
          format: date-time
          title: Createddate
          description: Date and time when the tag was created
        updatedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updateddate
          description: Date and time when the tag was last updated
      type: object
      required:
        - id
        - name
        - isActive
        - createdDate
      title: PatientTagSummary
    PaymentMethodType:
      type: string
      enum:
        - CARD
        - ACH
        - APPLE_PAY
      title: PaymentMethodType
    PaymentCardType:
      type: string
      enum:
        - CREDIT
        - DEBIT
        - PREPAID
      title: PaymentCardType
    MemberLogType:
      type: string
      enum:
        - STATUS_CHANGE
        - MANUAL_PAYMENT
        - RENEWED
        - PAYMENT_METHOD_CHANGE
        - DISCOUNT_USED
        - DISCOUNT_RESTORED
        - DISCOUNT_MODIFIED
        - ENROLLED
        - BILLING_DATE_CHANGE
      title: MemberLogType
    ItemType:
      type: string
      enum:
        - ITEM
        - SERVICE
        - PRODUCT
        - PACKAGE
        - MEMBERSHIP
        - MEDICATION
        - SERVICE_FEE
        - GIFT_CARD
      title: ItemType
    DiscountType:
      type: string
      enum:
        - GLOBAL
        - CUSTOM
        - MEMBERSHIP
        - PACKAGE
        - SAVED_ITEM
        - PROMOTION
      title: DiscountType

````