{- ============================== Copyright (c) 2024 SysFEAT - Systemic Framework for Enterprise Architecture & Transformation This work is released under the MIT License. framework.sysfeat.com State Concept Type: A State Concept Type is Class of Conceptual Entity which is a state type of another Class of Conceptual Entity.Example:- Employee is a state of Person. Its temporal boundaries are hiring and departure (see Event Concept). - ============================== -} {-# OPTIONS --cubical --guardedness #-} {-# OPTIONS --cubical-compatible #-} module 267b2ba866757a82 where -- ========== State Concept Type open import Agda.Primitive open import Relation.Binary.PropositionalEquality open import Data.Product renaming (_×_ to _⊗_) open import 267b28fc66757618 public -- Class of Conceptual Entity postulate StateConceptType : ClassOfClassOfBoundedIndividual postulate -- StateConceptType is subTypeOf ClassOfConceptualEntity st-267b2bb366757ac9 : StateConceptType ⊏⋆ₑ ClassOfConceptualEntity -- == Relationships =======================