{- ============================== Copyright (c) 2024 SysFEAT - Systemic Framework for Enterprise Architecture & Transformation This work is released under the MIT License. framework.sysfeat.com Customer Segment: A Customer Segment is a category of Customers that are related from a marketing or demographic perspective. For example, a business that practices customer segmentation might group its current or potential customers according to their gender, buying tendencies, age group, and special interests. - ============================== -} {-# OPTIONS --cubical --guardedness #-} {-# OPTIONS --cubical-compatible #-} module be05fbe76707117f where -- ========== Customer Segment open import Agda.Primitive open import Relation.Binary.PropositionalEquality open import Data.Product renaming (_×_ to _⊗_) open import f69620466a0f9c2f public -- Asset Category postulate CustomerSegment : ThirdOrderClass postulate -- CustomerSegment is subTypeOf AssetCategory st-dc9409c16025ff00 : CustomerSegment ⊏ₐₑ AssetCategory {lsuc(lsuc(lzero))} -- == Relationships ======================= {- Parent Customer Segment: -} postulate -- Relation: Parent Customer Segment parentCustomerSegment : classOfOrderedRelation CustomerSegment CustomerSegment