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,502 @@
|
|
|
1
|
+
name: quality_management
|
|
2
|
+
title: Quality Management Systems and Standards
|
|
3
|
+
description: 'Quality management frameworks, ISO standards, process improvement methodologies,
|
|
4
|
+
and quality assurance systems. Based on international quality standards, continuous
|
|
5
|
+
improvement methodologies, and quality management best practices.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/business/quality_management
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
ISO: https://www.iso.org/
|
|
12
|
+
TQM: https://www.asq.org/
|
|
13
|
+
LEAN: https://www.lean.org/
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
quality_standard:
|
|
17
|
+
description: Quality management standard or framework
|
|
18
|
+
range: QualityStandardEnum
|
|
19
|
+
quality_methodology:
|
|
20
|
+
description: Quality improvement methodology
|
|
21
|
+
range: QualityMethodologyEnum
|
|
22
|
+
quality_control_technique:
|
|
23
|
+
description: Quality control technique or tool
|
|
24
|
+
range: QualityControlTechniqueEnum
|
|
25
|
+
quality_assurance_level:
|
|
26
|
+
description: Level of quality assurance implementation
|
|
27
|
+
range: QualityAssuranceLevelEnum
|
|
28
|
+
process_improvement_approach:
|
|
29
|
+
description: Process improvement methodology
|
|
30
|
+
range: ProcessImprovementApproachEnum
|
|
31
|
+
quality_maturity_level:
|
|
32
|
+
description: Organizational quality maturity level
|
|
33
|
+
range: QualityMaturityLevelEnum
|
|
34
|
+
enums:
|
|
35
|
+
QualityStandardEnum:
|
|
36
|
+
description: Quality management standards and frameworks
|
|
37
|
+
permissible_values:
|
|
38
|
+
ISO_9001:
|
|
39
|
+
title: ISO 9001 Quality Management Systems
|
|
40
|
+
description: International standard for quality management systems
|
|
41
|
+
annotations:
|
|
42
|
+
standard: "ISO 9001:2015"
|
|
43
|
+
focus: "quality management systems"
|
|
44
|
+
approach: "process-based approach"
|
|
45
|
+
certification: "third-party certification available"
|
|
46
|
+
scope: "applicable to all organizations"
|
|
47
|
+
ISO_14001:
|
|
48
|
+
title: ISO 14001 Environmental Management
|
|
49
|
+
description: International standard for environmental management systems
|
|
50
|
+
annotations:
|
|
51
|
+
standard: "ISO 14001:2015"
|
|
52
|
+
focus: "environmental management"
|
|
53
|
+
integration: "integrates with quality management"
|
|
54
|
+
compliance: "environmental compliance"
|
|
55
|
+
sustainability: "environmental sustainability"
|
|
56
|
+
ISO_45001:
|
|
57
|
+
title: ISO 45001 Occupational Health and Safety
|
|
58
|
+
description: International standard for occupational health and safety
|
|
59
|
+
annotations:
|
|
60
|
+
standard: "ISO 45001:2018"
|
|
61
|
+
focus: "occupational health and safety"
|
|
62
|
+
integration: "integrates with other management systems"
|
|
63
|
+
prevention: "injury and illness prevention"
|
|
64
|
+
workplace: "workplace safety"
|
|
65
|
+
ISO_27001:
|
|
66
|
+
title: ISO 27001 Information Security Management
|
|
67
|
+
description: International standard for information security management
|
|
68
|
+
annotations:
|
|
69
|
+
standard: "ISO 27001:2013"
|
|
70
|
+
focus: "information security"
|
|
71
|
+
risk: "risk-based approach"
|
|
72
|
+
confidentiality: "confidentiality, integrity, availability"
|
|
73
|
+
compliance: "regulatory compliance"
|
|
74
|
+
TQM:
|
|
75
|
+
title: Total Quality Management
|
|
76
|
+
description: Comprehensive quality management philosophy
|
|
77
|
+
annotations:
|
|
78
|
+
philosophy: "total quality philosophy"
|
|
79
|
+
scope: "organization-wide approach"
|
|
80
|
+
customer: "customer focus"
|
|
81
|
+
improvement: "continuous improvement"
|
|
82
|
+
involvement: "total employee involvement"
|
|
83
|
+
EFQM:
|
|
84
|
+
title: European Foundation for Quality Management
|
|
85
|
+
description: European excellence model for organizational performance
|
|
86
|
+
annotations:
|
|
87
|
+
model: "excellence model"
|
|
88
|
+
assessment: "self-assessment framework"
|
|
89
|
+
improvement: "organizational improvement"
|
|
90
|
+
excellence: "business excellence"
|
|
91
|
+
europe: "European standard"
|
|
92
|
+
MALCOLM_BALDRIGE:
|
|
93
|
+
title: Malcolm Baldrige National Quality Award
|
|
94
|
+
description: US national quality framework and award
|
|
95
|
+
annotations:
|
|
96
|
+
framework: "performance excellence framework"
|
|
97
|
+
award: "national quality award"
|
|
98
|
+
assessment: "organizational assessment"
|
|
99
|
+
excellence: "performance excellence"
|
|
100
|
+
united_states: "US standard"
|
|
101
|
+
SIX_SIGMA:
|
|
102
|
+
title: Six Sigma Quality Management
|
|
103
|
+
description: Data-driven quality improvement methodology
|
|
104
|
+
annotations:
|
|
105
|
+
methodology: "statistical quality improvement"
|
|
106
|
+
data_driven: "data and measurement focused"
|
|
107
|
+
defect_reduction: "defect and variation reduction"
|
|
108
|
+
belt_system: "belt certification system"
|
|
109
|
+
tools: "statistical tools and techniques"
|
|
110
|
+
LEAN_QUALITY:
|
|
111
|
+
title: Lean Quality Management
|
|
112
|
+
description: Waste elimination and value-focused quality approach
|
|
113
|
+
annotations:
|
|
114
|
+
philosophy: "lean philosophy"
|
|
115
|
+
waste: "waste elimination"
|
|
116
|
+
value: "value stream focus"
|
|
117
|
+
efficiency: "operational efficiency"
|
|
118
|
+
improvement: "continuous improvement"
|
|
119
|
+
AS9100:
|
|
120
|
+
title: AS9100 Aerospace Quality Standard
|
|
121
|
+
description: Quality standard for aerospace industry
|
|
122
|
+
annotations:
|
|
123
|
+
industry: "aerospace and defense"
|
|
124
|
+
based_on: "based on ISO 9001"
|
|
125
|
+
requirements: "additional aerospace requirements"
|
|
126
|
+
certification: "aerospace certification"
|
|
127
|
+
safety: "safety and reliability focus"
|
|
128
|
+
TS16949:
|
|
129
|
+
title: TS 16949 Automotive Quality Standard
|
|
130
|
+
description: Quality standard for automotive industry
|
|
131
|
+
annotations:
|
|
132
|
+
industry: "automotive industry"
|
|
133
|
+
based_on: "based on ISO 9001"
|
|
134
|
+
requirements: "automotive-specific requirements"
|
|
135
|
+
supply_chain: "automotive supply chain"
|
|
136
|
+
defect_prevention: "defect prevention focus"
|
|
137
|
+
ISO_13485:
|
|
138
|
+
title: ISO 13485 Medical Device Quality
|
|
139
|
+
description: Quality standard for medical device industry
|
|
140
|
+
annotations:
|
|
141
|
+
industry: "medical device industry"
|
|
142
|
+
regulatory: "regulatory compliance"
|
|
143
|
+
safety: "patient safety focus"
|
|
144
|
+
design_controls: "design controls"
|
|
145
|
+
risk_management: "risk management"
|
|
146
|
+
QualityMethodologyEnum:
|
|
147
|
+
description: Quality improvement methodologies and approaches
|
|
148
|
+
permissible_values:
|
|
149
|
+
DMAIC:
|
|
150
|
+
title: DMAIC (Define, Measure, Analyze, Improve, Control)
|
|
151
|
+
description: Six Sigma problem-solving methodology
|
|
152
|
+
annotations:
|
|
153
|
+
phases: "Define, Measure, Analyze, Improve, Control"
|
|
154
|
+
approach: "data-driven problem solving"
|
|
155
|
+
structured: "structured improvement process"
|
|
156
|
+
statistical: "statistical analysis"
|
|
157
|
+
six_sigma: "Six Sigma methodology"
|
|
158
|
+
DMADV:
|
|
159
|
+
title: DMADV (Define, Measure, Analyze, Design, Verify)
|
|
160
|
+
description: Six Sigma design methodology for new processes
|
|
161
|
+
annotations:
|
|
162
|
+
phases: "Define, Measure, Analyze, Design, Verify"
|
|
163
|
+
purpose: "new process or product design"
|
|
164
|
+
design: "design for Six Sigma"
|
|
165
|
+
verification: "design verification"
|
|
166
|
+
prevention: "defect prevention"
|
|
167
|
+
PDCA:
|
|
168
|
+
title: PDCA (Plan, Do, Check, Act)
|
|
169
|
+
description: Continuous improvement cycle methodology
|
|
170
|
+
annotations:
|
|
171
|
+
cycle: "Plan, Do, Check, Act"
|
|
172
|
+
continuous: "continuous improvement"
|
|
173
|
+
iterative: "iterative process"
|
|
174
|
+
deming: "Deming cycle"
|
|
175
|
+
simple: "simple and versatile"
|
|
176
|
+
KAIZEN:
|
|
177
|
+
title: Kaizen Continuous Improvement
|
|
178
|
+
description: Japanese philosophy of continuous improvement
|
|
179
|
+
annotations:
|
|
180
|
+
philosophy: "continuous improvement philosophy"
|
|
181
|
+
incremental: "small incremental improvements"
|
|
182
|
+
employee: "employee-driven improvement"
|
|
183
|
+
culture: "improvement culture"
|
|
184
|
+
daily: "daily improvement activities"
|
|
185
|
+
LEAN_SIX_SIGMA:
|
|
186
|
+
title: Lean Six Sigma
|
|
187
|
+
description: Combined methodology integrating Lean and Six Sigma
|
|
188
|
+
annotations:
|
|
189
|
+
combination: "Lean and Six Sigma integration"
|
|
190
|
+
waste: "waste elimination"
|
|
191
|
+
variation: "variation reduction"
|
|
192
|
+
speed: "speed and quality"
|
|
193
|
+
comprehensive: "comprehensive improvement"
|
|
194
|
+
FIVE_S:
|
|
195
|
+
title: 5S Workplace Organization
|
|
196
|
+
description: Workplace organization and standardization methodology
|
|
197
|
+
annotations:
|
|
198
|
+
components: "Sort, Set in Order, Shine, Standardize, Sustain"
|
|
199
|
+
workplace: "workplace organization"
|
|
200
|
+
visual: "visual management"
|
|
201
|
+
foundation: "improvement foundation"
|
|
202
|
+
safety: "safety and efficiency"
|
|
203
|
+
ROOT_CAUSE_ANALYSIS:
|
|
204
|
+
title: Root Cause Analysis
|
|
205
|
+
description: Systematic approach to identifying problem root causes
|
|
206
|
+
annotations:
|
|
207
|
+
systematic: "systematic problem analysis"
|
|
208
|
+
causes: "root cause identification"
|
|
209
|
+
prevention: "problem prevention"
|
|
210
|
+
tools: "various analytical tools"
|
|
211
|
+
thorough: "thorough investigation"
|
|
212
|
+
STATISTICAL_PROCESS_CONTROL:
|
|
213
|
+
title: Statistical Process Control (SPC)
|
|
214
|
+
description: Statistical methods for process monitoring and control
|
|
215
|
+
annotations:
|
|
216
|
+
statistical: "statistical monitoring"
|
|
217
|
+
control_charts: "control charts"
|
|
218
|
+
variation: "variation monitoring"
|
|
219
|
+
prevention: "problem prevention"
|
|
220
|
+
real_time: "real-time monitoring"
|
|
221
|
+
FAILURE_MODE_ANALYSIS:
|
|
222
|
+
title: Failure Mode and Effects Analysis (FMEA)
|
|
223
|
+
description: Systematic analysis of potential failure modes
|
|
224
|
+
annotations:
|
|
225
|
+
analysis: "failure mode analysis"
|
|
226
|
+
prevention: "failure prevention"
|
|
227
|
+
risk: "risk assessment"
|
|
228
|
+
systematic: "systematic approach"
|
|
229
|
+
design: "design and process FMEA"
|
|
230
|
+
BENCHMARKING:
|
|
231
|
+
title: Benchmarking
|
|
232
|
+
description: Performance comparison with best practices
|
|
233
|
+
annotations:
|
|
234
|
+
comparison: "performance comparison"
|
|
235
|
+
best_practices: "best practice identification"
|
|
236
|
+
improvement: "improvement opportunities"
|
|
237
|
+
external: "external benchmarking"
|
|
238
|
+
internal: "internal benchmarking"
|
|
239
|
+
QualityControlTechniqueEnum:
|
|
240
|
+
description: Quality control techniques and tools
|
|
241
|
+
permissible_values:
|
|
242
|
+
CONTROL_CHARTS:
|
|
243
|
+
title: Control Charts
|
|
244
|
+
description: Statistical charts for monitoring process variation
|
|
245
|
+
annotations:
|
|
246
|
+
statistical: "statistical process monitoring"
|
|
247
|
+
variation: "variation tracking"
|
|
248
|
+
limits: "control limits"
|
|
249
|
+
trends: "trend identification"
|
|
250
|
+
real_time: "real-time monitoring"
|
|
251
|
+
PARETO_ANALYSIS:
|
|
252
|
+
title: Pareto Analysis
|
|
253
|
+
description: 80/20 rule analysis for problem prioritization
|
|
254
|
+
annotations:
|
|
255
|
+
prioritization: "problem prioritization"
|
|
256
|
+
rule: "80/20 rule"
|
|
257
|
+
focus: "focus on vital few"
|
|
258
|
+
impact: "impact analysis"
|
|
259
|
+
resources: "resource allocation"
|
|
260
|
+
FISHBONE_DIAGRAM:
|
|
261
|
+
title: Fishbone Diagram (Ishikawa)
|
|
262
|
+
description: Cause-and-effect analysis diagram
|
|
263
|
+
annotations:
|
|
264
|
+
cause_effect: "cause and effect analysis"
|
|
265
|
+
brainstorming: "structured brainstorming"
|
|
266
|
+
categories: "cause categories"
|
|
267
|
+
visual: "visual analysis tool"
|
|
268
|
+
team: "team analysis tool"
|
|
269
|
+
HISTOGRAM:
|
|
270
|
+
title: Histogram
|
|
271
|
+
description: Frequency distribution chart for data analysis
|
|
272
|
+
annotations:
|
|
273
|
+
distribution: "data distribution"
|
|
274
|
+
frequency: "frequency analysis"
|
|
275
|
+
patterns: "pattern identification"
|
|
276
|
+
visual: "visual data representation"
|
|
277
|
+
analysis: "statistical analysis"
|
|
278
|
+
SCATTER_DIAGRAM:
|
|
279
|
+
title: Scatter Diagram
|
|
280
|
+
description: Correlation analysis between two variables
|
|
281
|
+
annotations:
|
|
282
|
+
correlation: "correlation analysis"
|
|
283
|
+
relationship: "variable relationship"
|
|
284
|
+
pattern: "pattern identification"
|
|
285
|
+
statistical: "statistical relationship"
|
|
286
|
+
visual: "visual correlation"
|
|
287
|
+
CHECK_SHEET:
|
|
288
|
+
title: Check Sheet
|
|
289
|
+
description: Data collection and recording tool
|
|
290
|
+
annotations:
|
|
291
|
+
collection: "data collection"
|
|
292
|
+
recording: "systematic recording"
|
|
293
|
+
tracking: "problem tracking"
|
|
294
|
+
simple: "simple data tool"
|
|
295
|
+
standardized: "standardized format"
|
|
296
|
+
FLOW_CHART:
|
|
297
|
+
title: Flow Chart
|
|
298
|
+
description: Process flow visualization and analysis
|
|
299
|
+
annotations:
|
|
300
|
+
process: "process visualization"
|
|
301
|
+
flow: "workflow analysis"
|
|
302
|
+
steps: "process steps"
|
|
303
|
+
improvement: "process improvement"
|
|
304
|
+
understanding: "process understanding"
|
|
305
|
+
DESIGN_OF_EXPERIMENTS:
|
|
306
|
+
title: Design of Experiments (DOE)
|
|
307
|
+
description: Statistical method for process optimization
|
|
308
|
+
annotations:
|
|
309
|
+
statistical: "statistical experimentation"
|
|
310
|
+
optimization: "process optimization"
|
|
311
|
+
factors: "factor analysis"
|
|
312
|
+
interaction: "interaction effects"
|
|
313
|
+
efficiency: "experimental efficiency"
|
|
314
|
+
SAMPLING_PLANS:
|
|
315
|
+
title: Statistical Sampling Plans
|
|
316
|
+
description: Systematic approach to quality sampling
|
|
317
|
+
annotations:
|
|
318
|
+
sampling: "statistical sampling"
|
|
319
|
+
plans: "sampling plans"
|
|
320
|
+
acceptance: "acceptance sampling"
|
|
321
|
+
risk: "risk control"
|
|
322
|
+
efficiency: "sampling efficiency"
|
|
323
|
+
GAUGE_R_AND_R:
|
|
324
|
+
title: Gauge R&R (Repeatability and Reproducibility)
|
|
325
|
+
description: Measurement system analysis technique
|
|
326
|
+
annotations:
|
|
327
|
+
measurement: "measurement system analysis"
|
|
328
|
+
repeatability: "measurement repeatability"
|
|
329
|
+
reproducibility: "measurement reproducibility"
|
|
330
|
+
variation: "measurement variation"
|
|
331
|
+
capability: "measurement capability"
|
|
332
|
+
QualityAssuranceLevelEnum:
|
|
333
|
+
description: Levels of quality assurance implementation
|
|
334
|
+
permissible_values:
|
|
335
|
+
BASIC_QA:
|
|
336
|
+
title: Basic Quality Assurance
|
|
337
|
+
description: Fundamental quality assurance practices
|
|
338
|
+
annotations:
|
|
339
|
+
level: "basic implementation"
|
|
340
|
+
practices: "fundamental QA practices"
|
|
341
|
+
inspection: "inspection-based approach"
|
|
342
|
+
reactive: "reactive quality approach"
|
|
343
|
+
compliance: "basic compliance"
|
|
344
|
+
INTERMEDIATE_QA:
|
|
345
|
+
title: Intermediate Quality Assurance
|
|
346
|
+
description: Systematic quality assurance with documented processes
|
|
347
|
+
annotations:
|
|
348
|
+
level: "intermediate implementation"
|
|
349
|
+
systematic: "systematic approach"
|
|
350
|
+
documentation: "documented processes"
|
|
351
|
+
prevention: "some prevention focus"
|
|
352
|
+
training: "quality training programs"
|
|
353
|
+
ADVANCED_QA:
|
|
354
|
+
title: Advanced Quality Assurance
|
|
355
|
+
description: Comprehensive quality management system
|
|
356
|
+
annotations:
|
|
357
|
+
level: "advanced implementation"
|
|
358
|
+
comprehensive: "comprehensive QMS"
|
|
359
|
+
integration: "integrated approach"
|
|
360
|
+
prevention: "prevention-focused"
|
|
361
|
+
measurement: "quality measurement systems"
|
|
362
|
+
WORLD_CLASS_QA:
|
|
363
|
+
title: World-Class Quality Assurance
|
|
364
|
+
description: Excellence-oriented quality management
|
|
365
|
+
annotations:
|
|
366
|
+
level: "world-class implementation"
|
|
367
|
+
excellence: "quality excellence"
|
|
368
|
+
innovation: "quality innovation"
|
|
369
|
+
leadership: "quality leadership"
|
|
370
|
+
benchmarking: "best practice benchmarking"
|
|
371
|
+
TOTAL_QUALITY:
|
|
372
|
+
title: Total Quality Management
|
|
373
|
+
description: Organization-wide quality culture and commitment
|
|
374
|
+
annotations:
|
|
375
|
+
level: "total quality implementation"
|
|
376
|
+
culture: "quality culture"
|
|
377
|
+
organization_wide: "entire organization"
|
|
378
|
+
customer: "customer-focused"
|
|
379
|
+
continuous: "continuous improvement"
|
|
380
|
+
ProcessImprovementApproachEnum:
|
|
381
|
+
description: Process improvement methodologies and approaches
|
|
382
|
+
permissible_values:
|
|
383
|
+
BUSINESS_PROCESS_REENGINEERING:
|
|
384
|
+
title: Business Process Reengineering (BPR)
|
|
385
|
+
description: Radical redesign of business processes
|
|
386
|
+
annotations:
|
|
387
|
+
approach: "radical process redesign"
|
|
388
|
+
dramatic: "dramatic improvement"
|
|
389
|
+
technology: "technology-enabled"
|
|
390
|
+
fundamental: "fundamental rethinking"
|
|
391
|
+
breakthrough: "breakthrough performance"
|
|
392
|
+
CONTINUOUS_IMPROVEMENT:
|
|
393
|
+
title: Continuous Improvement
|
|
394
|
+
description: Ongoing incremental process improvement
|
|
395
|
+
annotations:
|
|
396
|
+
approach: "incremental improvement"
|
|
397
|
+
ongoing: "continuous effort"
|
|
398
|
+
culture: "improvement culture"
|
|
399
|
+
employee: "employee involvement"
|
|
400
|
+
sustainable: "sustainable improvement"
|
|
401
|
+
PROCESS_STANDARDIZATION:
|
|
402
|
+
title: Process Standardization
|
|
403
|
+
description: Establishing consistent process standards
|
|
404
|
+
annotations:
|
|
405
|
+
standardization: "process standardization"
|
|
406
|
+
consistency: "consistent execution"
|
|
407
|
+
documentation: "process documentation"
|
|
408
|
+
training: "standard training"
|
|
409
|
+
compliance: "standard compliance"
|
|
410
|
+
AUTOMATION:
|
|
411
|
+
title: Process Automation
|
|
412
|
+
description: Technology-driven process automation
|
|
413
|
+
annotations:
|
|
414
|
+
technology: "automation technology"
|
|
415
|
+
efficiency: "operational efficiency"
|
|
416
|
+
consistency: "consistent execution"
|
|
417
|
+
cost: "cost reduction"
|
|
418
|
+
quality: "quality improvement"
|
|
419
|
+
DIGITALIZATION:
|
|
420
|
+
title: Digital Process Transformation
|
|
421
|
+
description: Digital technology-enabled process transformation
|
|
422
|
+
annotations:
|
|
423
|
+
digital: "digital transformation"
|
|
424
|
+
technology: "digital technology"
|
|
425
|
+
data: "data-driven processes"
|
|
426
|
+
integration: "system integration"
|
|
427
|
+
innovation: "digital innovation"
|
|
428
|
+
OUTSOURCING:
|
|
429
|
+
title: Process Outsourcing
|
|
430
|
+
description: External provider process management
|
|
431
|
+
annotations:
|
|
432
|
+
external: "external process management"
|
|
433
|
+
specialization: "specialized providers"
|
|
434
|
+
cost: "cost optimization"
|
|
435
|
+
focus: "core competency focus"
|
|
436
|
+
expertise: "external expertise"
|
|
437
|
+
SHARED_SERVICES:
|
|
438
|
+
title: Shared Services Model
|
|
439
|
+
description: Centralized shared process delivery
|
|
440
|
+
annotations:
|
|
441
|
+
centralization: "centralized delivery"
|
|
442
|
+
sharing: "shared across units"
|
|
443
|
+
efficiency: "scale efficiency"
|
|
444
|
+
standardization: "service standardization"
|
|
445
|
+
optimization: "cost optimization"
|
|
446
|
+
AGILE_PROCESS_IMPROVEMENT:
|
|
447
|
+
title: Agile Process Improvement
|
|
448
|
+
description: Flexible and iterative process improvement
|
|
449
|
+
annotations:
|
|
450
|
+
agile: "agile methodology"
|
|
451
|
+
iterative: "iterative improvement"
|
|
452
|
+
flexible: "flexible approach"
|
|
453
|
+
responsive: "responsive to change"
|
|
454
|
+
collaboration: "collaborative improvement"
|
|
455
|
+
QualityMaturityLevelEnum:
|
|
456
|
+
description: Organizational quality maturity levels
|
|
457
|
+
permissible_values:
|
|
458
|
+
AD_HOC:
|
|
459
|
+
title: Ad Hoc Quality Approach
|
|
460
|
+
description: Informal and unstructured quality practices
|
|
461
|
+
annotations:
|
|
462
|
+
maturity: "initial maturity level"
|
|
463
|
+
structure: "unstructured approach"
|
|
464
|
+
informal: "informal practices"
|
|
465
|
+
reactive: "reactive quality"
|
|
466
|
+
inconsistent: "inconsistent results"
|
|
467
|
+
DEFINED:
|
|
468
|
+
title: Defined Quality Processes
|
|
469
|
+
description: Documented and standardized quality processes
|
|
470
|
+
annotations:
|
|
471
|
+
maturity: "defined maturity level"
|
|
472
|
+
documentation: "documented processes"
|
|
473
|
+
standardization: "standardized approach"
|
|
474
|
+
training: "process training"
|
|
475
|
+
consistency: "consistent execution"
|
|
476
|
+
MANAGED:
|
|
477
|
+
title: Managed Quality System
|
|
478
|
+
description: Measured and controlled quality management
|
|
479
|
+
annotations:
|
|
480
|
+
maturity: "managed maturity level"
|
|
481
|
+
measurement: "quality measurement"
|
|
482
|
+
control: "process control"
|
|
483
|
+
monitoring: "performance monitoring"
|
|
484
|
+
improvement: "targeted improvement"
|
|
485
|
+
OPTIMIZED:
|
|
486
|
+
title: Optimized Quality Performance
|
|
487
|
+
description: Continuously improving quality excellence
|
|
488
|
+
annotations:
|
|
489
|
+
maturity: "optimized maturity level"
|
|
490
|
+
optimization: "continuous optimization"
|
|
491
|
+
innovation: "quality innovation"
|
|
492
|
+
excellence: "quality excellence"
|
|
493
|
+
benchmarking: "best practice adoption"
|
|
494
|
+
WORLD_CLASS:
|
|
495
|
+
title: World-Class Quality Leadership
|
|
496
|
+
description: Industry-leading quality performance and innovation
|
|
497
|
+
annotations:
|
|
498
|
+
maturity: "world-class maturity level"
|
|
499
|
+
leadership: "industry leadership"
|
|
500
|
+
innovation: "quality innovation"
|
|
501
|
+
excellence: "sustained excellence"
|
|
502
|
+
recognition: "external recognition"
|