valuesets 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Business Organizational Structures and Legal Entities
|
|
3
|
+
|
|
4
|
+
Classifications of business organizational structures including legal entity types, corporate hierarchies, management levels, and organizational frameworks. Based on business law standards, corporate governance frameworks, and organizational behavior research.
|
|
5
|
+
|
|
6
|
+
Generated from: business/organizational_structures.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class LegalEntityTypeEnum(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
Legal entity types for business organizations
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
SOLE_PROPRIETORSHIP = "SOLE_PROPRIETORSHIP"
|
|
20
|
+
GENERAL_PARTNERSHIP = "GENERAL_PARTNERSHIP"
|
|
21
|
+
LIMITED_PARTNERSHIP = "LIMITED_PARTNERSHIP"
|
|
22
|
+
LIMITED_LIABILITY_PARTNERSHIP = "LIMITED_LIABILITY_PARTNERSHIP"
|
|
23
|
+
LIMITED_LIABILITY_COMPANY = "LIMITED_LIABILITY_COMPANY"
|
|
24
|
+
SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC"
|
|
25
|
+
MULTI_MEMBER_LLC = "MULTI_MEMBER_LLC"
|
|
26
|
+
C_CORPORATION = "C_CORPORATION"
|
|
27
|
+
S_CORPORATION = "S_CORPORATION"
|
|
28
|
+
B_CORPORATION = "B_CORPORATION"
|
|
29
|
+
PUBLIC_CORPORATION = "PUBLIC_CORPORATION"
|
|
30
|
+
PRIVATE_CORPORATION = "PRIVATE_CORPORATION"
|
|
31
|
+
NONPROFIT_CORPORATION = "NONPROFIT_CORPORATION"
|
|
32
|
+
COOPERATIVE = "COOPERATIVE"
|
|
33
|
+
JOINT_VENTURE = "JOINT_VENTURE"
|
|
34
|
+
HOLDING_COMPANY = "HOLDING_COMPANY"
|
|
35
|
+
SUBSIDIARY = "SUBSIDIARY"
|
|
36
|
+
FRANCHISE = "FRANCHISE"
|
|
37
|
+
GOVERNMENT_ENTITY = "GOVERNMENT_ENTITY"
|
|
38
|
+
|
|
39
|
+
# Set metadata after class creation
|
|
40
|
+
LegalEntityTypeEnum._metadata = {
|
|
41
|
+
"SOLE_PROPRIETORSHIP": {'description': 'Business owned and operated by single individual', 'annotations': {'legal_separation': 'no separation from owner', 'liability': 'unlimited personal liability', 'taxation': 'pass-through to personal returns', 'complexity': 'simplest structure', 'registration': 'minimal requirements'}},
|
|
42
|
+
"GENERAL_PARTNERSHIP": {'description': 'Business owned by two or more partners sharing responsibilities', 'annotations': {'ownership': 'shared among general partners', 'liability': 'unlimited personal liability for all partners', 'taxation': 'pass-through to partners', 'management': 'shared management responsibilities'}},
|
|
43
|
+
"LIMITED_PARTNERSHIP": {'description': 'Partnership with general and limited partners', 'annotations': {'partner_types': 'general partners and limited partners', 'liability': 'general partners have unlimited liability', 'limited_liability': 'limited partners have liability protection', 'management': 'general partners manage operations'}},
|
|
44
|
+
"LIMITED_LIABILITY_PARTNERSHIP": {'description': 'Partnership providing liability protection to all partners', 'annotations': {'liability': 'limited liability for all partners', 'professional_use': 'often used by professional services', 'taxation': 'pass-through taxation', 'management': 'flexible management structure'}},
|
|
45
|
+
"LIMITED_LIABILITY_COMPANY": {'description': 'Hybrid entity combining corporation and partnership features', 'annotations': {'liability': 'limited liability protection', 'taxation': 'flexible tax election options', 'management': 'flexible management structure', 'formality': 'fewer formal requirements than corporations'}},
|
|
46
|
+
"SINGLE_MEMBER_LLC": {'description': 'LLC with only one owner/member', 'annotations': {'ownership': 'single member', 'liability': 'limited liability protection', 'taxation': 'disregarded entity for tax purposes', 'simplicity': 'simpler than multi-member LLC'}},
|
|
47
|
+
"MULTI_MEMBER_LLC": {'description': 'LLC with multiple owners/members', 'annotations': {'ownership': 'multiple members', 'liability': 'limited liability protection', 'taxation': 'partnership taxation by default', 'operating_agreement': 'recommended operating agreement'}},
|
|
48
|
+
"C_CORPORATION": {'description': 'Traditional corporation with double taxation', 'annotations': {'legal_status': 'separate legal entity', 'liability': 'limited liability for shareholders', 'taxation': 'double taxation (corporate and dividend)', 'governance': 'formal board and officer structure', 'stock': 'can issue multiple classes of stock'}},
|
|
49
|
+
"S_CORPORATION": {'description': 'Corporation electing pass-through taxation', 'annotations': {'taxation': 'pass-through to shareholders', 'shareholders': 'limited to 100 shareholders', 'stock_types': 'single class of stock only', 'eligibility': 'restrictions on shareholder types'}},
|
|
50
|
+
"B_CORPORATION": {'description': 'Corporation with social and environmental mission', 'annotations': {'purpose': 'profit and public benefit', 'accountability': 'stakeholder governance requirements', 'transparency': 'annual benefit reporting', 'certification': 'optional third-party certification'}},
|
|
51
|
+
"PUBLIC_CORPORATION": {'description': 'Corporation with publicly traded shares', 'annotations': {'shares': 'publicly traded on stock exchanges', 'regulation': 'SEC reporting requirements', 'governance': 'extensive governance requirements', 'liquidity': 'high share liquidity'}},
|
|
52
|
+
"PRIVATE_CORPORATION": {'description': 'Corporation with privately held shares', 'annotations': {'shares': 'privately held shares', 'shareholders': 'limited number of shareholders', 'regulation': 'fewer regulatory requirements', 'liquidity': 'limited share liquidity'}},
|
|
53
|
+
"NONPROFIT_CORPORATION": {'description': 'Corporation organized for charitable or public purposes', 'annotations': {'purpose': 'charitable, educational, or public benefit', 'taxation': 'tax-exempt status possible', 'profit_distribution': 'no profit distribution to members', 'governance': 'board of directors governance'}},
|
|
54
|
+
"COOPERATIVE": {'description': 'Member-owned and democratically controlled organization', 'annotations': {'ownership': 'member ownership', 'control': 'democratic member control', 'benefits': 'benefits proportional to participation', 'purpose': 'mutual benefit of members'}},
|
|
55
|
+
"JOINT_VENTURE": {'description': 'Temporary partnership for specific project or purpose', 'annotations': {'duration': 'temporary or project-specific', 'purpose': 'specific business objective', 'ownership': 'shared ownership of venture', 'liability': 'depends on structure chosen'}},
|
|
56
|
+
"HOLDING_COMPANY": {'description': 'Company that owns controlling interests in other companies', 'annotations': {'purpose': 'own and control subsidiary companies', 'operations': 'minimal direct operations', 'structure': 'parent-subsidiary relationships', 'control': 'controls subsidiaries through ownership'}},
|
|
57
|
+
"SUBSIDIARY": {'description': 'Company controlled by another company (parent)', 'annotations': {'control': 'controlled by parent company', 'ownership': 'majority owned by parent', 'operations': 'may operate independently', 'liability': 'separate legal entity'}},
|
|
58
|
+
"FRANCHISE": {'description': "Business operating under franchisor's brand and system", 'annotations': {'relationship': 'franchisor-franchisee relationship', 'brand': 'operates under established brand', 'system': "follows franchisor's business system", 'fees': 'pays franchise fees and royalties'}},
|
|
59
|
+
"GOVERNMENT_ENTITY": {'description': 'Entity owned and operated by government', 'annotations': {'ownership': 'government ownership', 'purpose': 'public service or policy implementation', 'regulation': 'government regulations and oversight', 'funding': 'government funding sources'}},
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
class OrganizationalStructureEnum(RichEnum):
|
|
63
|
+
"""
|
|
64
|
+
Types of organizational hierarchy and reporting structures
|
|
65
|
+
"""
|
|
66
|
+
# Enum members
|
|
67
|
+
HIERARCHICAL = "HIERARCHICAL"
|
|
68
|
+
FLAT = "FLAT"
|
|
69
|
+
MATRIX = "MATRIX"
|
|
70
|
+
FUNCTIONAL = "FUNCTIONAL"
|
|
71
|
+
DIVISIONAL = "DIVISIONAL"
|
|
72
|
+
NETWORK = "NETWORK"
|
|
73
|
+
TEAM_BASED = "TEAM_BASED"
|
|
74
|
+
VIRTUAL = "VIRTUAL"
|
|
75
|
+
HYBRID = "HYBRID"
|
|
76
|
+
|
|
77
|
+
# Set metadata after class creation
|
|
78
|
+
OrganizationalStructureEnum._metadata = {
|
|
79
|
+
"HIERARCHICAL": {'description': 'Traditional pyramid structure with clear chain of command', 'annotations': {'authority_flow': 'top-down authority', 'communication': 'vertical communication channels', 'levels': 'multiple management levels', 'control': 'centralized control', 'decision_making': 'centralized decision making'}},
|
|
80
|
+
"FLAT": {'description': 'Minimal hierarchical levels with broader spans of control', 'annotations': {'levels': 'few hierarchical levels', 'span_of_control': 'broad spans of control', 'communication': 'direct communication', 'decision_making': 'decentralized decision making', 'flexibility': 'high flexibility'}},
|
|
81
|
+
"MATRIX": {'description': 'Dual reporting relationships combining functional and project lines', 'annotations': {'reporting': 'dual reporting relationships', 'authority': 'shared authority between managers', 'flexibility': 'high project flexibility', 'complexity': 'increased complexity', 'communication': 'multidirectional communication'}},
|
|
82
|
+
"FUNCTIONAL": {'description': 'Organization by business functions or departments', 'annotations': {'grouping': 'by business function', 'specialization': 'functional specialization', 'efficiency': 'operational efficiency', 'coordination': 'vertical coordination', 'expertise': 'concentrated expertise'}},
|
|
83
|
+
"DIVISIONAL": {'description': 'Organization by product lines, markets, or geography', 'annotations': {'grouping': 'by products, markets, or geography', 'autonomy': 'divisional autonomy', 'focus': 'market or product focus', 'coordination': 'horizontal coordination', 'responsibility': 'profit center responsibility'}},
|
|
84
|
+
"NETWORK": {'description': 'Flexible structure with interconnected relationships', 'annotations': {'relationships': 'network of relationships', 'flexibility': 'high flexibility', 'boundaries': 'blurred organizational boundaries', 'collaboration': 'extensive collaboration', 'adaptability': 'high adaptability'}},
|
|
85
|
+
"TEAM_BASED": {'description': 'Organization around self-managing teams', 'annotations': {'unit': 'teams as basic organizational unit', 'management': 'self-managing teams', 'collaboration': 'high collaboration', 'decision_making': 'team-based decision making', 'flexibility': 'operational flexibility'}},
|
|
86
|
+
"VIRTUAL": {'description': 'Geographically dispersed organization connected by technology', 'annotations': {'location': 'geographically dispersed', 'technology': 'technology-enabled communication', 'flexibility': 'location flexibility', 'coordination': 'virtual coordination', 'boundaries': 'minimal physical boundaries'}},
|
|
87
|
+
"HYBRID": {'description': 'Combination of multiple organizational structures', 'annotations': {'combination': 'multiple structure types', 'flexibility': 'structural flexibility', 'adaptation': 'adaptable to different needs', 'complexity': 'increased structural complexity', 'customization': 'customized to organization needs'}},
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
class ManagementLevelEnum(RichEnum):
|
|
91
|
+
"""
|
|
92
|
+
Hierarchical levels within organizational management structure
|
|
93
|
+
"""
|
|
94
|
+
# Enum members
|
|
95
|
+
BOARD_OF_DIRECTORS = "BOARD_OF_DIRECTORS"
|
|
96
|
+
C_SUITE = "C_SUITE"
|
|
97
|
+
SENIOR_EXECUTIVE = "SENIOR_EXECUTIVE"
|
|
98
|
+
VICE_PRESIDENT = "VICE_PRESIDENT"
|
|
99
|
+
DIRECTOR = "DIRECTOR"
|
|
100
|
+
MANAGER = "MANAGER"
|
|
101
|
+
SUPERVISOR = "SUPERVISOR"
|
|
102
|
+
TEAM_LEAD = "TEAM_LEAD"
|
|
103
|
+
SENIOR_INDIVIDUAL_CONTRIBUTOR = "SENIOR_INDIVIDUAL_CONTRIBUTOR"
|
|
104
|
+
INDIVIDUAL_CONTRIBUTOR = "INDIVIDUAL_CONTRIBUTOR"
|
|
105
|
+
ENTRY_LEVEL = "ENTRY_LEVEL"
|
|
106
|
+
|
|
107
|
+
# Set metadata after class creation
|
|
108
|
+
ManagementLevelEnum._metadata = {
|
|
109
|
+
"BOARD_OF_DIRECTORS": {'description': 'Governing body elected by shareholders', 'annotations': {'authority': 'highest governance authority', 'responsibility': 'fiduciary responsibility to shareholders', 'oversight': 'strategic oversight and control', 'composition': 'independent and inside directors'}},
|
|
110
|
+
"C_SUITE": {'description': 'Top executive leadership team', 'annotations': {'level': 'top executive level', 'scope': 'organization-wide responsibility', 'titles': 'CEO, CFO, COO, CTO, etc.', 'accountability': 'accountable to board of directors'}},
|
|
111
|
+
"SENIOR_EXECUTIVE": {'description': 'Senior leadership below C-suite level', 'annotations': {'level': 'senior leadership', 'scope': 'major business unit or function', 'titles': 'EVP, SVP, General Manager', 'reporting': 'reports to C-suite'}},
|
|
112
|
+
"VICE_PRESIDENT": {'description': 'Senior management responsible for major divisions', 'annotations': {'level': 'senior management', 'scope': 'division or major function', 'authority': 'significant decision-making authority', 'titles': 'VP, Assistant VP'}},
|
|
113
|
+
"DIRECTOR": {'description': 'Management responsible for departments or major programs', 'annotations': {'level': 'middle management', 'scope': 'department or program', 'responsibility': 'departmental leadership', 'oversight': 'manages multiple managers'}},
|
|
114
|
+
"MANAGER": {'description': 'Supervisory role managing teams or operations', 'annotations': {'level': 'middle management', 'scope': 'team or operational unit', 'responsibility': 'day-to-day operations', 'supervision': 'manages individual contributors'}},
|
|
115
|
+
"SUPERVISOR": {'description': 'First-line management overseeing frontline employees', 'annotations': {'level': 'first-line management', 'scope': 'small team or shift', 'responsibility': 'direct supervision', 'interface': 'employee-management interface'}},
|
|
116
|
+
"TEAM_LEAD": {'description': 'Lead role within team without formal management authority', 'annotations': {'level': 'senior individual contributor', 'authority': 'informal authority', 'responsibility': 'team coordination', 'expertise': 'technical or project leadership'}},
|
|
117
|
+
"SENIOR_INDIVIDUAL_CONTRIBUTOR": {'description': 'Experienced professional without management responsibilities', 'annotations': {'level': 'senior professional', 'expertise': 'specialized expertise', 'mentoring': 'may mentor junior staff', 'projects': 'leads complex projects'}},
|
|
118
|
+
"INDIVIDUAL_CONTRIBUTOR": {'description': 'Professional or specialist role', 'annotations': {'level': 'professional', 'responsibility': 'individual work output', 'specialization': 'functional specialization', 'career_path': 'professional career track'}},
|
|
119
|
+
"ENTRY_LEVEL": {'description': 'Beginning professional or support roles', 'annotations': {'experience': 'minimal professional experience', 'development': 'learning and development focus', 'supervision': 'close supervision', 'growth_potential': 'career growth opportunities'}},
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
class CorporateGovernanceRoleEnum(RichEnum):
|
|
123
|
+
"""
|
|
124
|
+
Roles within corporate governance structure
|
|
125
|
+
"""
|
|
126
|
+
# Enum members
|
|
127
|
+
CHAIRMAN_OF_BOARD = "CHAIRMAN_OF_BOARD"
|
|
128
|
+
LEAD_INDEPENDENT_DIRECTOR = "LEAD_INDEPENDENT_DIRECTOR"
|
|
129
|
+
INDEPENDENT_DIRECTOR = "INDEPENDENT_DIRECTOR"
|
|
130
|
+
INSIDE_DIRECTOR = "INSIDE_DIRECTOR"
|
|
131
|
+
AUDIT_COMMITTEE_CHAIR = "AUDIT_COMMITTEE_CHAIR"
|
|
132
|
+
COMPENSATION_COMMITTEE_CHAIR = "COMPENSATION_COMMITTEE_CHAIR"
|
|
133
|
+
NOMINATING_COMMITTEE_CHAIR = "NOMINATING_COMMITTEE_CHAIR"
|
|
134
|
+
CHIEF_EXECUTIVE_OFFICER = "CHIEF_EXECUTIVE_OFFICER"
|
|
135
|
+
CHIEF_FINANCIAL_OFFICER = "CHIEF_FINANCIAL_OFFICER"
|
|
136
|
+
CHIEF_OPERATING_OFFICER = "CHIEF_OPERATING_OFFICER"
|
|
137
|
+
CORPORATE_SECRETARY = "CORPORATE_SECRETARY"
|
|
138
|
+
|
|
139
|
+
# Set metadata after class creation
|
|
140
|
+
CorporateGovernanceRoleEnum._metadata = {
|
|
141
|
+
"CHAIRMAN_OF_BOARD": {'description': 'Leader of board of directors', 'annotations': {'leadership': 'board leadership', 'meetings': 'chairs board meetings', 'interface': 'shareholder interface', 'governance': 'governance oversight'}},
|
|
142
|
+
"LEAD_INDEPENDENT_DIRECTOR": {'description': 'Senior independent director when chairman is not independent', 'annotations': {'independence': 'independent from management', 'leadership': 'leads independent directors', 'oversight': 'additional oversight role', 'communication': 'shareholder communication'}},
|
|
143
|
+
"INDEPENDENT_DIRECTOR": {'description': 'Board member independent from company management', 'annotations': {'independence': 'independent from management', 'objectivity': 'objective oversight', 'committees': 'serves on key committees', 'governance': 'independent governance perspective'}},
|
|
144
|
+
"INSIDE_DIRECTOR": {'description': 'Board member who is also company employee or has material relationship', 'annotations': {'relationship': 'material relationship with company', 'expertise': 'insider knowledge', 'perspective': 'management perspective', 'potential_conflicts': 'potential conflicts of interest'}},
|
|
145
|
+
"AUDIT_COMMITTEE_CHAIR": {'description': "Chair of board's audit committee", 'annotations': {'committee': 'audit committee leadership', 'oversight': 'financial oversight', 'independence': 'must be independent', 'expertise': 'financial expertise required'}},
|
|
146
|
+
"COMPENSATION_COMMITTEE_CHAIR": {'description': "Chair of board's compensation committee", 'annotations': {'committee': 'compensation committee leadership', 'responsibility': 'executive compensation oversight', 'independence': 'must be independent', 'alignment': 'shareholder interest alignment'}},
|
|
147
|
+
"NOMINATING_COMMITTEE_CHAIR": {'description': "Chair of board's nominating and governance committee", 'annotations': {'committee': 'nominating committee leadership', 'responsibility': 'board composition and governance', 'succession': 'leadership succession planning', 'governance': 'governance best practices'}},
|
|
148
|
+
"CHIEF_EXECUTIVE_OFFICER": {'description': 'Highest-ranking executive officer', 'annotations': {'authority': 'highest executive authority', 'strategy': 'strategic leadership', 'accountability': 'accountable to board', 'representation': 'company representation'}},
|
|
149
|
+
"CHIEF_FINANCIAL_OFFICER": {'description': 'Senior executive responsible for financial management', 'annotations': {'responsibility': 'financial management', 'reporting': 'financial reporting oversight', 'compliance': 'financial compliance', 'strategy': 'financial strategy'}},
|
|
150
|
+
"CHIEF_OPERATING_OFFICER": {'description': 'Senior executive responsible for operations', 'annotations': {'responsibility': 'operational management', 'execution': 'strategy execution', 'efficiency': 'operational efficiency', 'coordination': 'cross-functional coordination'}},
|
|
151
|
+
"CORPORATE_SECRETARY": {'description': 'Officer responsible for corporate records and governance compliance', 'annotations': {'records': 'corporate records maintenance', 'compliance': 'governance compliance', 'meetings': 'board meeting coordination', 'legal': 'legal compliance oversight'}},
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
class BusinessOwnershipTypeEnum(RichEnum):
|
|
155
|
+
"""
|
|
156
|
+
Types of business ownership structures
|
|
157
|
+
"""
|
|
158
|
+
# Enum members
|
|
159
|
+
PRIVATE_OWNERSHIP = "PRIVATE_OWNERSHIP"
|
|
160
|
+
PUBLIC_OWNERSHIP = "PUBLIC_OWNERSHIP"
|
|
161
|
+
FAMILY_OWNERSHIP = "FAMILY_OWNERSHIP"
|
|
162
|
+
EMPLOYEE_OWNERSHIP = "EMPLOYEE_OWNERSHIP"
|
|
163
|
+
INSTITUTIONAL_OWNERSHIP = "INSTITUTIONAL_OWNERSHIP"
|
|
164
|
+
GOVERNMENT_OWNERSHIP = "GOVERNMENT_OWNERSHIP"
|
|
165
|
+
FOREIGN_OWNERSHIP = "FOREIGN_OWNERSHIP"
|
|
166
|
+
JOINT_OWNERSHIP = "JOINT_OWNERSHIP"
|
|
167
|
+
|
|
168
|
+
# Set metadata after class creation
|
|
169
|
+
BusinessOwnershipTypeEnum._metadata = {
|
|
170
|
+
"PRIVATE_OWNERSHIP": {'description': 'Business owned by private individuals or entities', 'annotations': {'ownership': 'private individuals or entities', 'control': 'private control', 'capital': 'private capital sources', 'disclosure': 'limited disclosure requirements'}},
|
|
171
|
+
"PUBLIC_OWNERSHIP": {'description': 'Business with publicly traded ownership shares', 'annotations': {'ownership': 'public shareholders', 'trading': 'publicly traded shares', 'regulation': 'extensive regulatory requirements', 'disclosure': 'public disclosure requirements'}},
|
|
172
|
+
"FAMILY_OWNERSHIP": {'description': 'Business owned and controlled by family members', 'annotations': {'ownership': 'family members', 'succession': 'family succession planning', 'values': 'family values integration', 'long_term': 'long-term orientation'}},
|
|
173
|
+
"EMPLOYEE_OWNERSHIP": {'description': 'Business owned by employees through stock or cooperative structure', 'annotations': {'ownership': 'employee owners', 'participation': 'employee participation', 'alignment': 'ownership-management alignment', 'structure': 'ESOP or cooperative structure'}},
|
|
174
|
+
"INSTITUTIONAL_OWNERSHIP": {'description': 'Business owned by institutional investors', 'annotations': {'ownership': 'institutional investors', 'professional': 'professional management', 'capital': 'institutional capital', 'governance': 'institutional governance'}},
|
|
175
|
+
"GOVERNMENT_OWNERSHIP": {'description': 'Business owned by government entities', 'annotations': {'ownership': 'government entities', 'purpose': 'public policy objectives', 'regulation': 'government oversight', 'funding': 'public funding'}},
|
|
176
|
+
"FOREIGN_OWNERSHIP": {'description': 'Business owned by foreign individuals or entities', 'annotations': {'ownership': 'foreign entities', 'regulation': 'foreign investment regulations', 'capital': 'foreign capital', 'compliance': 'international compliance'}},
|
|
177
|
+
"JOINT_OWNERSHIP": {'description': 'Business owned jointly by multiple parties', 'annotations': {'ownership': 'multiple ownership parties', 'agreements': 'joint ownership agreements', 'governance': 'shared governance', 'coordination': 'ownership coordination'}},
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
class BusinessSizeClassificationEnum(RichEnum):
|
|
181
|
+
"""
|
|
182
|
+
Size classifications for business entities
|
|
183
|
+
"""
|
|
184
|
+
# Enum members
|
|
185
|
+
MICRO_BUSINESS = "MICRO_BUSINESS"
|
|
186
|
+
SMALL_BUSINESS = "SMALL_BUSINESS"
|
|
187
|
+
MEDIUM_BUSINESS = "MEDIUM_BUSINESS"
|
|
188
|
+
LARGE_BUSINESS = "LARGE_BUSINESS"
|
|
189
|
+
MULTINATIONAL_CORPORATION = "MULTINATIONAL_CORPORATION"
|
|
190
|
+
FORTUNE_500 = "FORTUNE_500"
|
|
191
|
+
|
|
192
|
+
# Set metadata after class creation
|
|
193
|
+
BusinessSizeClassificationEnum._metadata = {
|
|
194
|
+
"MICRO_BUSINESS": {'description': 'Very small business with minimal employees and revenue', 'annotations': {'employees': 'typically 1-9 employees', 'revenue': 'very low revenue', 'characteristics': 'home-based or small office', 'support': 'minimal administrative support'}},
|
|
195
|
+
"SMALL_BUSINESS": {'description': 'Small business as defined by SBA standards', 'annotations': {'employees': 'varies by industry (typically <500)', 'revenue': 'varies by industry', 'sba_definition': 'meets SBA size standards', 'characteristics': 'independently owned and operated'}},
|
|
196
|
+
"MEDIUM_BUSINESS": {'description': 'Mid-sized business between small and large classifications', 'annotations': {'employees': 'typically 500-1500 employees', 'revenue': 'moderate revenue levels', 'characteristics': 'regional or specialized market presence', 'structure': 'more formal organizational structure'}},
|
|
197
|
+
"LARGE_BUSINESS": {'description': 'Major corporation with significant operations', 'annotations': {'employees': '>1500 employees', 'revenue': 'high revenue levels', 'market_presence': 'national or international presence', 'structure': 'complex organizational structure'}},
|
|
198
|
+
"MULTINATIONAL_CORPORATION": {'description': 'Large corporation operating in multiple countries', 'annotations': {'geographic_scope': 'multiple countries', 'complexity': 'high operational complexity', 'structure': 'global organizational structure', 'coordination': 'international coordination'}},
|
|
199
|
+
"FORTUNE_500": {'description': 'Among the 500 largest US corporations by revenue', 'annotations': {'ranking': 'Fortune 500 list', 'revenue': 'highest revenue levels', 'market_position': 'market leadership positions', 'recognition': 'prestigious business recognition'}},
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
class BusinessLifecycleStageEnum(RichEnum):
|
|
203
|
+
"""
|
|
204
|
+
Stages in business development lifecycle
|
|
205
|
+
"""
|
|
206
|
+
# Enum members
|
|
207
|
+
CONCEPT_STAGE = "CONCEPT_STAGE"
|
|
208
|
+
STARTUP_STAGE = "STARTUP_STAGE"
|
|
209
|
+
GROWTH_STAGE = "GROWTH_STAGE"
|
|
210
|
+
EXPANSION_STAGE = "EXPANSION_STAGE"
|
|
211
|
+
MATURITY_STAGE = "MATURITY_STAGE"
|
|
212
|
+
DECLINE_STAGE = "DECLINE_STAGE"
|
|
213
|
+
TURNAROUND_STAGE = "TURNAROUND_STAGE"
|
|
214
|
+
EXIT_STAGE = "EXIT_STAGE"
|
|
215
|
+
|
|
216
|
+
# Set metadata after class creation
|
|
217
|
+
BusinessLifecycleStageEnum._metadata = {
|
|
218
|
+
"CONCEPT_STAGE": {'description': 'Initial business idea development and validation', 'annotations': {'focus': 'idea development and validation', 'activities': 'market research, business planning', 'funding': 'personal or angel funding', 'risk': 'highest risk level'}},
|
|
219
|
+
"STARTUP_STAGE": {'description': 'Business launch and early operations', 'annotations': {'focus': 'product development and market entry', 'activities': 'building initial customer base', 'funding': 'seed funding, early investments', 'growth': 'rapid learning and adaptation'}},
|
|
220
|
+
"GROWTH_STAGE": {'description': 'Rapid expansion and scaling operations', 'annotations': {'focus': 'scaling operations and market expansion', 'activities': 'increasing market share', 'funding': 'venture capital, growth financing', 'challenges': 'scaling challenges'}},
|
|
221
|
+
"EXPANSION_STAGE": {'description': 'Market expansion and diversification', 'annotations': {'focus': 'market expansion and diversification', 'activities': 'new markets, products, or services', 'funding': 'growth capital, strategic investments', 'sophistication': 'increased operational sophistication'}},
|
|
222
|
+
"MATURITY_STAGE": {'description': 'Stable operations with established market position', 'annotations': {'focus': 'operational efficiency and market defense', 'activities': 'defending market position', 'funding': 'self-funding, debt financing', 'stability': 'stable cash flows'}},
|
|
223
|
+
"DECLINE_STAGE": {'description': 'Decreasing market relevance or performance', 'annotations': {'focus': 'cost reduction and restructuring', 'activities': 'turnaround efforts or exit planning', 'challenges': 'declining revenues or relevance', 'options': 'restructuring, sale, or closure'}},
|
|
224
|
+
"TURNAROUND_STAGE": {'description': 'Recovery efforts from decline or crisis', 'annotations': {'focus': 'crisis management and recovery', 'activities': 'restructuring and repositioning', 'leadership': 'turnaround management', 'urgency': 'urgent transformation needs'}},
|
|
225
|
+
"EXIT_STAGE": {'description': 'Business sale, merger, or closure', 'annotations': {'focus': 'exit strategy execution', 'activities': 'sale, merger, or liquidation', 'valuation': 'business valuation', 'transition': 'ownership transition'}},
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
__all__ = [
|
|
229
|
+
"LegalEntityTypeEnum",
|
|
230
|
+
"OrganizationalStructureEnum",
|
|
231
|
+
"ManagementLevelEnum",
|
|
232
|
+
"CorporateGovernanceRoleEnum",
|
|
233
|
+
"BusinessOwnershipTypeEnum",
|
|
234
|
+
"BusinessSizeClassificationEnum",
|
|
235
|
+
"BusinessLifecycleStageEnum",
|
|
236
|
+
]
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Quality Management Systems and Standards
|
|
3
|
+
|
|
4
|
+
Quality management frameworks, ISO standards, process improvement methodologies, and quality assurance systems. Based on international quality standards, continuous improvement methodologies, and quality management best practices.
|
|
5
|
+
|
|
6
|
+
Generated from: business/quality_management.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class QualityStandardEnum(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
Quality management standards and frameworks
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
ISO_9001 = "ISO_9001"
|
|
20
|
+
ISO_14001 = "ISO_14001"
|
|
21
|
+
ISO_45001 = "ISO_45001"
|
|
22
|
+
ISO_27001 = "ISO_27001"
|
|
23
|
+
TQM = "TQM"
|
|
24
|
+
EFQM = "EFQM"
|
|
25
|
+
MALCOLM_BALDRIGE = "MALCOLM_BALDRIGE"
|
|
26
|
+
SIX_SIGMA = "SIX_SIGMA"
|
|
27
|
+
LEAN_QUALITY = "LEAN_QUALITY"
|
|
28
|
+
AS9100 = "AS9100"
|
|
29
|
+
TS16949 = "TS16949"
|
|
30
|
+
ISO_13485 = "ISO_13485"
|
|
31
|
+
|
|
32
|
+
# Set metadata after class creation
|
|
33
|
+
QualityStandardEnum._metadata = {
|
|
34
|
+
"ISO_9001": {'description': 'International standard for quality management systems', 'annotations': {'standard': 'ISO 9001:2015', 'focus': 'quality management systems', 'approach': 'process-based approach', 'certification': 'third-party certification available', 'scope': 'applicable to all organizations'}},
|
|
35
|
+
"ISO_14001": {'description': 'International standard for environmental management systems', 'annotations': {'standard': 'ISO 14001:2015', 'focus': 'environmental management', 'integration': 'integrates with quality management', 'compliance': 'environmental compliance', 'sustainability': 'environmental sustainability'}},
|
|
36
|
+
"ISO_45001": {'description': 'International standard for occupational health and safety', 'annotations': {'standard': 'ISO 45001:2018', 'focus': 'occupational health and safety', 'integration': 'integrates with other management systems', 'prevention': 'injury and illness prevention', 'workplace': 'workplace safety'}},
|
|
37
|
+
"ISO_27001": {'description': 'International standard for information security management', 'annotations': {'standard': 'ISO 27001:2013', 'focus': 'information security', 'risk': 'risk-based approach', 'confidentiality': 'confidentiality, integrity, availability', 'compliance': 'regulatory compliance'}},
|
|
38
|
+
"TQM": {'description': 'Comprehensive quality management philosophy', 'annotations': {'philosophy': 'total quality philosophy', 'scope': 'organization-wide approach', 'customer': 'customer focus', 'improvement': 'continuous improvement', 'involvement': 'total employee involvement'}},
|
|
39
|
+
"EFQM": {'description': 'European excellence model for organizational performance', 'annotations': {'model': 'excellence model', 'assessment': 'self-assessment framework', 'improvement': 'organizational improvement', 'excellence': 'business excellence', 'europe': 'European standard'}},
|
|
40
|
+
"MALCOLM_BALDRIGE": {'description': 'US national quality framework and award', 'annotations': {'framework': 'performance excellence framework', 'award': 'national quality award', 'assessment': 'organizational assessment', 'excellence': 'performance excellence', 'united_states': 'US standard'}},
|
|
41
|
+
"SIX_SIGMA": {'description': 'Data-driven quality improvement methodology', 'annotations': {'methodology': 'statistical quality improvement', 'data_driven': 'data and measurement focused', 'defect_reduction': 'defect and variation reduction', 'belt_system': 'belt certification system', 'tools': 'statistical tools and techniques'}},
|
|
42
|
+
"LEAN_QUALITY": {'description': 'Waste elimination and value-focused quality approach', 'annotations': {'philosophy': 'lean philosophy', 'waste': 'waste elimination', 'value': 'value stream focus', 'efficiency': 'operational efficiency', 'improvement': 'continuous improvement'}},
|
|
43
|
+
"AS9100": {'description': 'Quality standard for aerospace industry', 'annotations': {'industry': 'aerospace and defense', 'based_on': 'based on ISO 9001', 'requirements': 'additional aerospace requirements', 'certification': 'aerospace certification', 'safety': 'safety and reliability focus'}},
|
|
44
|
+
"TS16949": {'description': 'Quality standard for automotive industry', 'annotations': {'industry': 'automotive industry', 'based_on': 'based on ISO 9001', 'requirements': 'automotive-specific requirements', 'supply_chain': 'automotive supply chain', 'defect_prevention': 'defect prevention focus'}},
|
|
45
|
+
"ISO_13485": {'description': 'Quality standard for medical device industry', 'annotations': {'industry': 'medical device industry', 'regulatory': 'regulatory compliance', 'safety': 'patient safety focus', 'design_controls': 'design controls', 'risk_management': 'risk management'}},
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
class QualityMethodologyEnum(RichEnum):
|
|
49
|
+
"""
|
|
50
|
+
Quality improvement methodologies and approaches
|
|
51
|
+
"""
|
|
52
|
+
# Enum members
|
|
53
|
+
DMAIC = "DMAIC"
|
|
54
|
+
DMADV = "DMADV"
|
|
55
|
+
PDCA = "PDCA"
|
|
56
|
+
KAIZEN = "KAIZEN"
|
|
57
|
+
LEAN_SIX_SIGMA = "LEAN_SIX_SIGMA"
|
|
58
|
+
FIVE_S = "FIVE_S"
|
|
59
|
+
ROOT_CAUSE_ANALYSIS = "ROOT_CAUSE_ANALYSIS"
|
|
60
|
+
STATISTICAL_PROCESS_CONTROL = "STATISTICAL_PROCESS_CONTROL"
|
|
61
|
+
FAILURE_MODE_ANALYSIS = "FAILURE_MODE_ANALYSIS"
|
|
62
|
+
BENCHMARKING = "BENCHMARKING"
|
|
63
|
+
|
|
64
|
+
# Set metadata after class creation
|
|
65
|
+
QualityMethodologyEnum._metadata = {
|
|
66
|
+
"DMAIC": {'description': 'Six Sigma problem-solving methodology', 'annotations': {'phases': 'Define, Measure, Analyze, Improve, Control', 'approach': 'data-driven problem solving', 'structured': 'structured improvement process', 'statistical': 'statistical analysis', 'six_sigma': 'Six Sigma methodology'}},
|
|
67
|
+
"DMADV": {'description': 'Six Sigma design methodology for new processes', 'annotations': {'phases': 'Define, Measure, Analyze, Design, Verify', 'purpose': 'new process or product design', 'design': 'design for Six Sigma', 'verification': 'design verification', 'prevention': 'defect prevention'}},
|
|
68
|
+
"PDCA": {'description': 'Continuous improvement cycle methodology', 'annotations': {'cycle': 'Plan, Do, Check, Act', 'continuous': 'continuous improvement', 'iterative': 'iterative process', 'deming': 'Deming cycle', 'simple': 'simple and versatile'}},
|
|
69
|
+
"KAIZEN": {'description': 'Japanese philosophy of continuous improvement', 'annotations': {'philosophy': 'continuous improvement philosophy', 'incremental': 'small incremental improvements', 'employee': 'employee-driven improvement', 'culture': 'improvement culture', 'daily': 'daily improvement activities'}},
|
|
70
|
+
"LEAN_SIX_SIGMA": {'description': 'Combined methodology integrating Lean and Six Sigma', 'annotations': {'combination': 'Lean and Six Sigma integration', 'waste': 'waste elimination', 'variation': 'variation reduction', 'speed': 'speed and quality', 'comprehensive': 'comprehensive improvement'}},
|
|
71
|
+
"FIVE_S": {'description': 'Workplace organization and standardization methodology', 'annotations': {'components': 'Sort, Set in Order, Shine, Standardize, Sustain', 'workplace': 'workplace organization', 'visual': 'visual management', 'foundation': 'improvement foundation', 'safety': 'safety and efficiency'}},
|
|
72
|
+
"ROOT_CAUSE_ANALYSIS": {'description': 'Systematic approach to identifying problem root causes', 'annotations': {'systematic': 'systematic problem analysis', 'causes': 'root cause identification', 'prevention': 'problem prevention', 'tools': 'various analytical tools', 'thorough': 'thorough investigation'}},
|
|
73
|
+
"STATISTICAL_PROCESS_CONTROL": {'description': 'Statistical methods for process monitoring and control', 'annotations': {'statistical': 'statistical monitoring', 'control_charts': 'control charts', 'variation': 'variation monitoring', 'prevention': 'problem prevention', 'real_time': 'real-time monitoring'}},
|
|
74
|
+
"FAILURE_MODE_ANALYSIS": {'description': 'Systematic analysis of potential failure modes', 'annotations': {'analysis': 'failure mode analysis', 'prevention': 'failure prevention', 'risk': 'risk assessment', 'systematic': 'systematic approach', 'design': 'design and process FMEA'}},
|
|
75
|
+
"BENCHMARKING": {'description': 'Performance comparison with best practices', 'annotations': {'comparison': 'performance comparison', 'best_practices': 'best practice identification', 'improvement': 'improvement opportunities', 'external': 'external benchmarking', 'internal': 'internal benchmarking'}},
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
class QualityControlTechniqueEnum(RichEnum):
|
|
79
|
+
"""
|
|
80
|
+
Quality control techniques and tools
|
|
81
|
+
"""
|
|
82
|
+
# Enum members
|
|
83
|
+
CONTROL_CHARTS = "CONTROL_CHARTS"
|
|
84
|
+
PARETO_ANALYSIS = "PARETO_ANALYSIS"
|
|
85
|
+
FISHBONE_DIAGRAM = "FISHBONE_DIAGRAM"
|
|
86
|
+
HISTOGRAM = "HISTOGRAM"
|
|
87
|
+
SCATTER_DIAGRAM = "SCATTER_DIAGRAM"
|
|
88
|
+
CHECK_SHEET = "CHECK_SHEET"
|
|
89
|
+
FLOW_CHART = "FLOW_CHART"
|
|
90
|
+
DESIGN_OF_EXPERIMENTS = "DESIGN_OF_EXPERIMENTS"
|
|
91
|
+
SAMPLING_PLANS = "SAMPLING_PLANS"
|
|
92
|
+
GAUGE_R_AND_R = "GAUGE_R_AND_R"
|
|
93
|
+
|
|
94
|
+
# Set metadata after class creation
|
|
95
|
+
QualityControlTechniqueEnum._metadata = {
|
|
96
|
+
"CONTROL_CHARTS": {'description': 'Statistical charts for monitoring process variation', 'annotations': {'statistical': 'statistical process monitoring', 'variation': 'variation tracking', 'limits': 'control limits', 'trends': 'trend identification', 'real_time': 'real-time monitoring'}},
|
|
97
|
+
"PARETO_ANALYSIS": {'description': '80/20 rule analysis for problem prioritization', 'annotations': {'prioritization': 'problem prioritization', 'rule': '80/20 rule', 'focus': 'focus on vital few', 'impact': 'impact analysis', 'resources': 'resource allocation'}},
|
|
98
|
+
"FISHBONE_DIAGRAM": {'description': 'Cause-and-effect analysis diagram', 'annotations': {'cause_effect': 'cause and effect analysis', 'brainstorming': 'structured brainstorming', 'categories': 'cause categories', 'visual': 'visual analysis tool', 'team': 'team analysis tool'}},
|
|
99
|
+
"HISTOGRAM": {'description': 'Frequency distribution chart for data analysis', 'annotations': {'distribution': 'data distribution', 'frequency': 'frequency analysis', 'patterns': 'pattern identification', 'visual': 'visual data representation', 'analysis': 'statistical analysis'}},
|
|
100
|
+
"SCATTER_DIAGRAM": {'description': 'Correlation analysis between two variables', 'annotations': {'correlation': 'correlation analysis', 'relationship': 'variable relationship', 'pattern': 'pattern identification', 'statistical': 'statistical relationship', 'visual': 'visual correlation'}},
|
|
101
|
+
"CHECK_SHEET": {'description': 'Data collection and recording tool', 'annotations': {'collection': 'data collection', 'recording': 'systematic recording', 'tracking': 'problem tracking', 'simple': 'simple data tool', 'standardized': 'standardized format'}},
|
|
102
|
+
"FLOW_CHART": {'description': 'Process flow visualization and analysis', 'annotations': {'process': 'process visualization', 'flow': 'workflow analysis', 'steps': 'process steps', 'improvement': 'process improvement', 'understanding': 'process understanding'}},
|
|
103
|
+
"DESIGN_OF_EXPERIMENTS": {'description': 'Statistical method for process optimization', 'annotations': {'statistical': 'statistical experimentation', 'optimization': 'process optimization', 'factors': 'factor analysis', 'interaction': 'interaction effects', 'efficiency': 'experimental efficiency'}},
|
|
104
|
+
"SAMPLING_PLANS": {'description': 'Systematic approach to quality sampling', 'annotations': {'sampling': 'statistical sampling', 'plans': 'sampling plans', 'acceptance': 'acceptance sampling', 'risk': 'risk control', 'efficiency': 'sampling efficiency'}},
|
|
105
|
+
"GAUGE_R_AND_R": {'description': 'Measurement system analysis technique', 'annotations': {'measurement': 'measurement system analysis', 'repeatability': 'measurement repeatability', 'reproducibility': 'measurement reproducibility', 'variation': 'measurement variation', 'capability': 'measurement capability'}},
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
class QualityAssuranceLevelEnum(RichEnum):
|
|
109
|
+
"""
|
|
110
|
+
Levels of quality assurance implementation
|
|
111
|
+
"""
|
|
112
|
+
# Enum members
|
|
113
|
+
BASIC_QA = "BASIC_QA"
|
|
114
|
+
INTERMEDIATE_QA = "INTERMEDIATE_QA"
|
|
115
|
+
ADVANCED_QA = "ADVANCED_QA"
|
|
116
|
+
WORLD_CLASS_QA = "WORLD_CLASS_QA"
|
|
117
|
+
TOTAL_QUALITY = "TOTAL_QUALITY"
|
|
118
|
+
|
|
119
|
+
# Set metadata after class creation
|
|
120
|
+
QualityAssuranceLevelEnum._metadata = {
|
|
121
|
+
"BASIC_QA": {'description': 'Fundamental quality assurance practices', 'annotations': {'level': 'basic implementation', 'practices': 'fundamental QA practices', 'inspection': 'inspection-based approach', 'reactive': 'reactive quality approach', 'compliance': 'basic compliance'}},
|
|
122
|
+
"INTERMEDIATE_QA": {'description': 'Systematic quality assurance with documented processes', 'annotations': {'level': 'intermediate implementation', 'systematic': 'systematic approach', 'documentation': 'documented processes', 'prevention': 'some prevention focus', 'training': 'quality training programs'}},
|
|
123
|
+
"ADVANCED_QA": {'description': 'Comprehensive quality management system', 'annotations': {'level': 'advanced implementation', 'comprehensive': 'comprehensive QMS', 'integration': 'integrated approach', 'prevention': 'prevention-focused', 'measurement': 'quality measurement systems'}},
|
|
124
|
+
"WORLD_CLASS_QA": {'description': 'Excellence-oriented quality management', 'annotations': {'level': 'world-class implementation', 'excellence': 'quality excellence', 'innovation': 'quality innovation', 'leadership': 'quality leadership', 'benchmarking': 'best practice benchmarking'}},
|
|
125
|
+
"TOTAL_QUALITY": {'description': 'Organization-wide quality culture and commitment', 'annotations': {'level': 'total quality implementation', 'culture': 'quality culture', 'organization_wide': 'entire organization', 'customer': 'customer-focused', 'continuous': 'continuous improvement'}},
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
class ProcessImprovementApproachEnum(RichEnum):
|
|
129
|
+
"""
|
|
130
|
+
Process improvement methodologies and approaches
|
|
131
|
+
"""
|
|
132
|
+
# Enum members
|
|
133
|
+
BUSINESS_PROCESS_REENGINEERING = "BUSINESS_PROCESS_REENGINEERING"
|
|
134
|
+
CONTINUOUS_IMPROVEMENT = "CONTINUOUS_IMPROVEMENT"
|
|
135
|
+
PROCESS_STANDARDIZATION = "PROCESS_STANDARDIZATION"
|
|
136
|
+
AUTOMATION = "AUTOMATION"
|
|
137
|
+
DIGITALIZATION = "DIGITALIZATION"
|
|
138
|
+
OUTSOURCING = "OUTSOURCING"
|
|
139
|
+
SHARED_SERVICES = "SHARED_SERVICES"
|
|
140
|
+
AGILE_PROCESS_IMPROVEMENT = "AGILE_PROCESS_IMPROVEMENT"
|
|
141
|
+
|
|
142
|
+
# Set metadata after class creation
|
|
143
|
+
ProcessImprovementApproachEnum._metadata = {
|
|
144
|
+
"BUSINESS_PROCESS_REENGINEERING": {'description': 'Radical redesign of business processes', 'annotations': {'approach': 'radical process redesign', 'dramatic': 'dramatic improvement', 'technology': 'technology-enabled', 'fundamental': 'fundamental rethinking', 'breakthrough': 'breakthrough performance'}},
|
|
145
|
+
"CONTINUOUS_IMPROVEMENT": {'description': 'Ongoing incremental process improvement', 'annotations': {'approach': 'incremental improvement', 'ongoing': 'continuous effort', 'culture': 'improvement culture', 'employee': 'employee involvement', 'sustainable': 'sustainable improvement'}},
|
|
146
|
+
"PROCESS_STANDARDIZATION": {'description': 'Establishing consistent process standards', 'annotations': {'standardization': 'process standardization', 'consistency': 'consistent execution', 'documentation': 'process documentation', 'training': 'standard training', 'compliance': 'standard compliance'}},
|
|
147
|
+
"AUTOMATION": {'description': 'Technology-driven process automation', 'annotations': {'technology': 'automation technology', 'efficiency': 'operational efficiency', 'consistency': 'consistent execution', 'cost': 'cost reduction', 'quality': 'quality improvement'}},
|
|
148
|
+
"DIGITALIZATION": {'description': 'Digital technology-enabled process transformation', 'annotations': {'digital': 'digital transformation', 'technology': 'digital technology', 'data': 'data-driven processes', 'integration': 'system integration', 'innovation': 'digital innovation'}},
|
|
149
|
+
"OUTSOURCING": {'description': 'External provider process management', 'annotations': {'external': 'external process management', 'specialization': 'specialized providers', 'cost': 'cost optimization', 'focus': 'core competency focus', 'expertise': 'external expertise'}},
|
|
150
|
+
"SHARED_SERVICES": {'description': 'Centralized shared process delivery', 'annotations': {'centralization': 'centralized delivery', 'sharing': 'shared across units', 'efficiency': 'scale efficiency', 'standardization': 'service standardization', 'optimization': 'cost optimization'}},
|
|
151
|
+
"AGILE_PROCESS_IMPROVEMENT": {'description': 'Flexible and iterative process improvement', 'annotations': {'agile': 'agile methodology', 'iterative': 'iterative improvement', 'flexible': 'flexible approach', 'responsive': 'responsive to change', 'collaboration': 'collaborative improvement'}},
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
class QualityMaturityLevelEnum(RichEnum):
|
|
155
|
+
"""
|
|
156
|
+
Organizational quality maturity levels
|
|
157
|
+
"""
|
|
158
|
+
# Enum members
|
|
159
|
+
AD_HOC = "AD_HOC"
|
|
160
|
+
DEFINED = "DEFINED"
|
|
161
|
+
MANAGED = "MANAGED"
|
|
162
|
+
OPTIMIZED = "OPTIMIZED"
|
|
163
|
+
WORLD_CLASS = "WORLD_CLASS"
|
|
164
|
+
|
|
165
|
+
# Set metadata after class creation
|
|
166
|
+
QualityMaturityLevelEnum._metadata = {
|
|
167
|
+
"AD_HOC": {'description': 'Informal and unstructured quality practices', 'annotations': {'maturity': 'initial maturity level', 'structure': 'unstructured approach', 'informal': 'informal practices', 'reactive': 'reactive quality', 'inconsistent': 'inconsistent results'}},
|
|
168
|
+
"DEFINED": {'description': 'Documented and standardized quality processes', 'annotations': {'maturity': 'defined maturity level', 'documentation': 'documented processes', 'standardization': 'standardized approach', 'training': 'process training', 'consistency': 'consistent execution'}},
|
|
169
|
+
"MANAGED": {'description': 'Measured and controlled quality management', 'annotations': {'maturity': 'managed maturity level', 'measurement': 'quality measurement', 'control': 'process control', 'monitoring': 'performance monitoring', 'improvement': 'targeted improvement'}},
|
|
170
|
+
"OPTIMIZED": {'description': 'Continuously improving quality excellence', 'annotations': {'maturity': 'optimized maturity level', 'optimization': 'continuous optimization', 'innovation': 'quality innovation', 'excellence': 'quality excellence', 'benchmarking': 'best practice adoption'}},
|
|
171
|
+
"WORLD_CLASS": {'description': 'Industry-leading quality performance and innovation', 'annotations': {'maturity': 'world-class maturity level', 'leadership': 'industry leadership', 'innovation': 'quality innovation', 'excellence': 'sustained excellence', 'recognition': 'external recognition'}},
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
__all__ = [
|
|
175
|
+
"QualityStandardEnum",
|
|
176
|
+
"QualityMethodologyEnum",
|
|
177
|
+
"QualityControlTechniqueEnum",
|
|
178
|
+
"QualityAssuranceLevelEnum",
|
|
179
|
+
"ProcessImprovementApproachEnum",
|
|
180
|
+
"QualityMaturityLevelEnum",
|
|
181
|
+
]
|