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,688 @@
|
|
|
1
|
+
name: supply_chain
|
|
2
|
+
title: Supply Chain Management and Procurement
|
|
3
|
+
description: 'Supply chain management classifications including procurement types, vendor
|
|
4
|
+
management, logistics operations, and supply chain strategies. Based on supply chain
|
|
5
|
+
management best practices, procurement standards, and logistics frameworks.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/business/supply_chain
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
SCOR: https://www.apics.org/apics-for-business/frameworks/scor
|
|
12
|
+
CSCMP: https://cscmp.org/
|
|
13
|
+
ISM: https://www.ismworld.org/
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
procurement_type:
|
|
17
|
+
description: Type of procurement activity or approach
|
|
18
|
+
range: ProcurementTypeEnum
|
|
19
|
+
vendor_category:
|
|
20
|
+
description: Vendor classification category
|
|
21
|
+
range: VendorCategoryEnum
|
|
22
|
+
supply_chain_strategy:
|
|
23
|
+
description: Supply chain strategic approach
|
|
24
|
+
range: SupplyChainStrategyEnum
|
|
25
|
+
logistics_operation:
|
|
26
|
+
description: Type of logistics operation
|
|
27
|
+
range: LogisticsOperationEnum
|
|
28
|
+
sourcing_strategy:
|
|
29
|
+
description: Sourcing strategy approach
|
|
30
|
+
range: SourcingStrategyEnum
|
|
31
|
+
supplier_relationship_type:
|
|
32
|
+
description: Type of supplier relationship management
|
|
33
|
+
range: SupplierRelationshipTypeEnum
|
|
34
|
+
inventory_management_approach:
|
|
35
|
+
description: Inventory management methodology
|
|
36
|
+
range: InventoryManagementApproachEnum
|
|
37
|
+
enums:
|
|
38
|
+
ProcurementTypeEnum:
|
|
39
|
+
description: Types of procurement activities and approaches
|
|
40
|
+
permissible_values:
|
|
41
|
+
DIRECT_PROCUREMENT:
|
|
42
|
+
title: Direct Procurement
|
|
43
|
+
description: Procurement of materials directly used in production
|
|
44
|
+
annotations:
|
|
45
|
+
category: "direct materials"
|
|
46
|
+
purpose: "production input"
|
|
47
|
+
impact: "direct impact on product"
|
|
48
|
+
examples: "raw materials, components, subassemblies"
|
|
49
|
+
strategic: "strategically important"
|
|
50
|
+
INDIRECT_PROCUREMENT:
|
|
51
|
+
title: Indirect Procurement
|
|
52
|
+
description: Procurement of goods and services supporting operations
|
|
53
|
+
annotations:
|
|
54
|
+
category: "indirect materials and services"
|
|
55
|
+
purpose: "operational support"
|
|
56
|
+
impact: "indirect impact on product"
|
|
57
|
+
examples: "office supplies, maintenance, professional services"
|
|
58
|
+
cost_focus: "cost optimization focus"
|
|
59
|
+
SERVICES_PROCUREMENT:
|
|
60
|
+
title: Services Procurement
|
|
61
|
+
description: Procurement of professional and business services
|
|
62
|
+
annotations:
|
|
63
|
+
category: "services"
|
|
64
|
+
intangible: "intangible deliverables"
|
|
65
|
+
examples: "consulting, IT services, maintenance"
|
|
66
|
+
relationship: "relationship-based"
|
|
67
|
+
management: "service level management"
|
|
68
|
+
CAPITAL_PROCUREMENT:
|
|
69
|
+
title: Capital Procurement
|
|
70
|
+
description: Procurement of capital equipment and assets
|
|
71
|
+
annotations:
|
|
72
|
+
category: "capital expenditure"
|
|
73
|
+
long_term: "long-term assets"
|
|
74
|
+
high_value: "high value purchases"
|
|
75
|
+
examples: "machinery, equipment, facilities"
|
|
76
|
+
approval: "capital approval process"
|
|
77
|
+
STRATEGIC_PROCUREMENT:
|
|
78
|
+
title: Strategic Procurement
|
|
79
|
+
description: Procurement of strategically important items
|
|
80
|
+
annotations:
|
|
81
|
+
importance: "strategic importance"
|
|
82
|
+
risk: "high business risk"
|
|
83
|
+
value: "high value impact"
|
|
84
|
+
partnership: "strategic partnerships"
|
|
85
|
+
long_term: "long-term relationships"
|
|
86
|
+
TACTICAL_PROCUREMENT:
|
|
87
|
+
title: Tactical Procurement
|
|
88
|
+
description: Routine procurement of standard items
|
|
89
|
+
annotations:
|
|
90
|
+
routine: "routine purchases"
|
|
91
|
+
standard: "standardized items"
|
|
92
|
+
efficiency: "efficiency focused"
|
|
93
|
+
transactional: "transactional approach"
|
|
94
|
+
volume: "volume-based"
|
|
95
|
+
EMERGENCY_PROCUREMENT:
|
|
96
|
+
title: Emergency Procurement
|
|
97
|
+
description: Urgent procurement due to immediate needs
|
|
98
|
+
annotations:
|
|
99
|
+
urgency: "urgent requirements"
|
|
100
|
+
expedited: "expedited process"
|
|
101
|
+
higher_cost: "potentially higher costs"
|
|
102
|
+
risk_mitigation: "business continuity"
|
|
103
|
+
limited_sourcing: "limited supplier options"
|
|
104
|
+
FRAMEWORK_PROCUREMENT:
|
|
105
|
+
title: Framework Procurement
|
|
106
|
+
description: Pre-negotiated procurement agreements
|
|
107
|
+
annotations:
|
|
108
|
+
agreement: "pre-negotiated terms"
|
|
109
|
+
efficiency: "procurement efficiency"
|
|
110
|
+
compliance: "standardized compliance"
|
|
111
|
+
multiple_suppliers: "multiple approved suppliers"
|
|
112
|
+
call_off: "call-off contracts"
|
|
113
|
+
E_PROCUREMENT:
|
|
114
|
+
title: Electronic Procurement
|
|
115
|
+
description: Technology-enabled procurement processes
|
|
116
|
+
annotations:
|
|
117
|
+
technology: "electronic platforms"
|
|
118
|
+
automation: "process automation"
|
|
119
|
+
efficiency: "operational efficiency"
|
|
120
|
+
transparency: "process transparency"
|
|
121
|
+
data: "procurement data analytics"
|
|
122
|
+
SUSTAINABLE_PROCUREMENT:
|
|
123
|
+
title: Sustainable Procurement
|
|
124
|
+
description: Environmentally and socially responsible procurement
|
|
125
|
+
annotations:
|
|
126
|
+
sustainability: "environmental and social criteria"
|
|
127
|
+
responsibility: "corporate responsibility"
|
|
128
|
+
lifecycle: "lifecycle considerations"
|
|
129
|
+
certification: "sustainability certifications"
|
|
130
|
+
stakeholder: "stakeholder value"
|
|
131
|
+
VendorCategoryEnum:
|
|
132
|
+
description: Vendor classification categories
|
|
133
|
+
permissible_values:
|
|
134
|
+
STRATEGIC_SUPPLIER:
|
|
135
|
+
title: Strategic Supplier
|
|
136
|
+
description: Critical suppliers with strategic importance
|
|
137
|
+
annotations:
|
|
138
|
+
importance: "strategic business importance"
|
|
139
|
+
relationship: "partnership relationship"
|
|
140
|
+
risk: "high business risk if disrupted"
|
|
141
|
+
collaboration: "collaborative planning"
|
|
142
|
+
long_term: "long-term agreements"
|
|
143
|
+
PREFERRED_SUPPLIER:
|
|
144
|
+
title: Preferred Supplier
|
|
145
|
+
description: Suppliers with proven performance and preferred status
|
|
146
|
+
annotations:
|
|
147
|
+
performance: "proven performance history"
|
|
148
|
+
preferred: "preferred supplier status"
|
|
149
|
+
reliability: "reliable delivery"
|
|
150
|
+
quality: "consistent quality"
|
|
151
|
+
relationship: "ongoing relationship"
|
|
152
|
+
APPROVED_SUPPLIER:
|
|
153
|
+
title: Approved Supplier
|
|
154
|
+
description: Suppliers meeting qualification requirements
|
|
155
|
+
annotations:
|
|
156
|
+
qualification: "meets qualification criteria"
|
|
157
|
+
approved: "approved for business"
|
|
158
|
+
standards: "meets quality standards"
|
|
159
|
+
compliance: "regulatory compliance"
|
|
160
|
+
monitoring: "performance monitoring"
|
|
161
|
+
TRANSACTIONAL_SUPPLIER:
|
|
162
|
+
title: Transactional Supplier
|
|
163
|
+
description: Suppliers for routine, low-risk purchases
|
|
164
|
+
annotations:
|
|
165
|
+
routine: "routine transactions"
|
|
166
|
+
low_risk: "low business risk"
|
|
167
|
+
standard: "standard products/services"
|
|
168
|
+
efficiency: "cost and efficiency focus"
|
|
169
|
+
limited_relationship: "limited relationship"
|
|
170
|
+
SINGLE_SOURCE:
|
|
171
|
+
title: Single Source Supplier
|
|
172
|
+
description: Only available supplier for specific requirement
|
|
173
|
+
annotations:
|
|
174
|
+
uniqueness: "unique product or service"
|
|
175
|
+
monopoly: "single source situation"
|
|
176
|
+
dependency: "high dependency"
|
|
177
|
+
risk: "supply risk concentration"
|
|
178
|
+
relationship: "close relationship management"
|
|
179
|
+
SOLE_SOURCE:
|
|
180
|
+
title: Sole Source Supplier
|
|
181
|
+
description: Deliberately chosen single supplier
|
|
182
|
+
annotations:
|
|
183
|
+
choice: "deliberate single supplier choice"
|
|
184
|
+
partnership: "strategic partnership"
|
|
185
|
+
specialization: "specialized capability"
|
|
186
|
+
integration: "integrated operations"
|
|
187
|
+
exclusive: "exclusive relationship"
|
|
188
|
+
MINORITY_SUPPLIER:
|
|
189
|
+
title: Minority/Diverse Supplier
|
|
190
|
+
description: Suppliers meeting diversity criteria
|
|
191
|
+
annotations:
|
|
192
|
+
diversity: "supplier diversity program"
|
|
193
|
+
certification: "diversity certification"
|
|
194
|
+
inclusion: "supplier inclusion"
|
|
195
|
+
social_responsibility: "corporate social responsibility"
|
|
196
|
+
development: "supplier development"
|
|
197
|
+
LOCAL_SUPPLIER:
|
|
198
|
+
title: Local Supplier
|
|
199
|
+
description: Geographically local suppliers
|
|
200
|
+
annotations:
|
|
201
|
+
geography: "local geographic proximity"
|
|
202
|
+
community: "local community support"
|
|
203
|
+
logistics: "reduced logistics costs"
|
|
204
|
+
responsiveness: "quick response capability"
|
|
205
|
+
sustainability: "reduced carbon footprint"
|
|
206
|
+
GLOBAL_SUPPLIER:
|
|
207
|
+
title: Global Supplier
|
|
208
|
+
description: Suppliers with global capabilities
|
|
209
|
+
annotations:
|
|
210
|
+
global: "global presence and capability"
|
|
211
|
+
scale: "economies of scale"
|
|
212
|
+
standardization: "global standardization"
|
|
213
|
+
complexity: "complex management"
|
|
214
|
+
risk: "global supply chain risk"
|
|
215
|
+
SPOT_SUPPLIER:
|
|
216
|
+
title: Spot Market Supplier
|
|
217
|
+
description: Suppliers for one-time or spot purchases
|
|
218
|
+
annotations:
|
|
219
|
+
spot_market: "spot market transactions"
|
|
220
|
+
one_time: "one-time purchases"
|
|
221
|
+
price_driven: "price-driven selection"
|
|
222
|
+
no_relationship: "no ongoing relationship"
|
|
223
|
+
market_based: "market-based pricing"
|
|
224
|
+
SupplyChainStrategyEnum:
|
|
225
|
+
description: Supply chain strategic approaches
|
|
226
|
+
permissible_values:
|
|
227
|
+
LEAN_SUPPLY_CHAIN:
|
|
228
|
+
title: Lean Supply Chain
|
|
229
|
+
description: Waste elimination and efficiency-focused supply chain
|
|
230
|
+
annotations:
|
|
231
|
+
philosophy: "lean philosophy"
|
|
232
|
+
waste: "waste elimination"
|
|
233
|
+
efficiency: "operational efficiency"
|
|
234
|
+
flow: "smooth material flow"
|
|
235
|
+
inventory: "minimal inventory"
|
|
236
|
+
AGILE_SUPPLY_CHAIN:
|
|
237
|
+
title: Agile Supply Chain
|
|
238
|
+
description: Flexible and responsive supply chain
|
|
239
|
+
annotations:
|
|
240
|
+
flexibility: "high flexibility"
|
|
241
|
+
responsiveness: "rapid response capability"
|
|
242
|
+
adaptation: "quick adaptation"
|
|
243
|
+
variability: "handles demand variability"
|
|
244
|
+
customer: "customer responsiveness"
|
|
245
|
+
RESILIENT_SUPPLY_CHAIN:
|
|
246
|
+
title: Resilient Supply Chain
|
|
247
|
+
description: Risk-resistant and robust supply chain
|
|
248
|
+
annotations:
|
|
249
|
+
resilience: "supply chain resilience"
|
|
250
|
+
risk_management: "comprehensive risk management"
|
|
251
|
+
redundancy: "built-in redundancy"
|
|
252
|
+
recovery: "quick recovery capability"
|
|
253
|
+
continuity: "business continuity focus"
|
|
254
|
+
SUSTAINABLE_SUPPLY_CHAIN:
|
|
255
|
+
title: Sustainable Supply Chain
|
|
256
|
+
description: Environmentally and socially responsible supply chain
|
|
257
|
+
annotations:
|
|
258
|
+
sustainability: "environmental and social sustainability"
|
|
259
|
+
responsibility: "corporate responsibility"
|
|
260
|
+
lifecycle: "lifecycle assessment"
|
|
261
|
+
circular: "circular economy principles"
|
|
262
|
+
stakeholder: "stakeholder value"
|
|
263
|
+
GLOBAL_SUPPLY_CHAIN:
|
|
264
|
+
title: Global Supply Chain
|
|
265
|
+
description: Internationally distributed supply chain
|
|
266
|
+
annotations:
|
|
267
|
+
global: "global geographic distribution"
|
|
268
|
+
scale: "economies of scale"
|
|
269
|
+
complexity: "increased complexity"
|
|
270
|
+
risk: "global risks"
|
|
271
|
+
coordination: "global coordination"
|
|
272
|
+
LOCAL_SUPPLY_CHAIN:
|
|
273
|
+
title: Local/Regional Supply Chain
|
|
274
|
+
description: Geographically concentrated supply chain
|
|
275
|
+
annotations:
|
|
276
|
+
local: "local or regional focus"
|
|
277
|
+
proximity: "geographic proximity"
|
|
278
|
+
responsiveness: "local responsiveness"
|
|
279
|
+
community: "community support"
|
|
280
|
+
sustainability: "reduced transportation"
|
|
281
|
+
DIGITAL_SUPPLY_CHAIN:
|
|
282
|
+
title: Digital Supply Chain
|
|
283
|
+
description: Technology-enabled and data-driven supply chain
|
|
284
|
+
annotations:
|
|
285
|
+
digital: "digital transformation"
|
|
286
|
+
technology: "advanced technology"
|
|
287
|
+
data: "data-driven decisions"
|
|
288
|
+
automation: "process automation"
|
|
289
|
+
visibility: "end-to-end visibility"
|
|
290
|
+
COLLABORATIVE_SUPPLY_CHAIN:
|
|
291
|
+
title: Collaborative Supply Chain
|
|
292
|
+
description: Partnership-based collaborative supply chain
|
|
293
|
+
annotations:
|
|
294
|
+
collaboration: "supply chain collaboration"
|
|
295
|
+
partnership: "strategic partnerships"
|
|
296
|
+
integration: "process integration"
|
|
297
|
+
sharing: "information sharing"
|
|
298
|
+
joint_planning: "collaborative planning"
|
|
299
|
+
COST_FOCUSED_SUPPLY_CHAIN:
|
|
300
|
+
title: Cost-Focused Supply Chain
|
|
301
|
+
description: Cost optimization-focused supply chain
|
|
302
|
+
annotations:
|
|
303
|
+
cost: "cost optimization"
|
|
304
|
+
efficiency: "cost efficiency"
|
|
305
|
+
standardization: "process standardization"
|
|
306
|
+
scale: "economies of scale"
|
|
307
|
+
procurement: "cost-focused procurement"
|
|
308
|
+
CUSTOMER_FOCUSED_SUPPLY_CHAIN:
|
|
309
|
+
title: Customer-Focused Supply Chain
|
|
310
|
+
description: Customer service-oriented supply chain
|
|
311
|
+
annotations:
|
|
312
|
+
customer: "customer-centric"
|
|
313
|
+
service: "customer service focus"
|
|
314
|
+
customization: "product customization"
|
|
315
|
+
responsiveness: "customer responsiveness"
|
|
316
|
+
satisfaction: "customer satisfaction"
|
|
317
|
+
LogisticsOperationEnum:
|
|
318
|
+
description: Types of logistics operations
|
|
319
|
+
permissible_values:
|
|
320
|
+
INBOUND_LOGISTICS:
|
|
321
|
+
title: Inbound Logistics
|
|
322
|
+
description: Management of incoming materials and supplies
|
|
323
|
+
annotations:
|
|
324
|
+
direction: "inbound to organization"
|
|
325
|
+
materials: "raw materials and supplies"
|
|
326
|
+
suppliers: "supplier coordination"
|
|
327
|
+
receiving: "receiving operations"
|
|
328
|
+
quality: "incoming quality control"
|
|
329
|
+
OUTBOUND_LOGISTICS:
|
|
330
|
+
title: Outbound Logistics
|
|
331
|
+
description: Management of finished goods distribution
|
|
332
|
+
annotations:
|
|
333
|
+
direction: "outbound from organization"
|
|
334
|
+
products: "finished goods"
|
|
335
|
+
customers: "customer delivery"
|
|
336
|
+
distribution: "distribution management"
|
|
337
|
+
service: "customer service"
|
|
338
|
+
REVERSE_LOGISTICS:
|
|
339
|
+
title: Reverse Logistics
|
|
340
|
+
description: Management of product returns and recycling
|
|
341
|
+
annotations:
|
|
342
|
+
direction: "reverse flow"
|
|
343
|
+
returns: "product returns"
|
|
344
|
+
recycling: "recycling and disposal"
|
|
345
|
+
recovery: "value recovery"
|
|
346
|
+
sustainability: "environmental responsibility"
|
|
347
|
+
THIRD_PARTY_LOGISTICS:
|
|
348
|
+
title: Third-Party Logistics (3PL)
|
|
349
|
+
description: Outsourced logistics services
|
|
350
|
+
annotations:
|
|
351
|
+
outsourcing: "logistics outsourcing"
|
|
352
|
+
service_provider: "third-party provider"
|
|
353
|
+
specialization: "logistics specialization"
|
|
354
|
+
cost: "cost optimization"
|
|
355
|
+
expertise: "logistics expertise"
|
|
356
|
+
FOURTH_PARTY_LOGISTICS:
|
|
357
|
+
title: Fourth-Party Logistics (4PL)
|
|
358
|
+
description: Supply chain integration and management services
|
|
359
|
+
annotations:
|
|
360
|
+
integration: "supply chain integration"
|
|
361
|
+
management: "end-to-end management"
|
|
362
|
+
coordination: "multi-provider coordination"
|
|
363
|
+
strategy: "strategic logistics"
|
|
364
|
+
technology: "technology integration"
|
|
365
|
+
WAREHOUSING:
|
|
366
|
+
title: Warehousing Operations
|
|
367
|
+
description: Storage and inventory management operations
|
|
368
|
+
annotations:
|
|
369
|
+
storage: "product storage"
|
|
370
|
+
inventory: "inventory management"
|
|
371
|
+
handling: "material handling"
|
|
372
|
+
distribution: "distribution center"
|
|
373
|
+
automation: "warehouse automation"
|
|
374
|
+
TRANSPORTATION:
|
|
375
|
+
title: Transportation Management
|
|
376
|
+
description: Movement of goods between locations
|
|
377
|
+
annotations:
|
|
378
|
+
movement: "goods movement"
|
|
379
|
+
modes: "transportation modes"
|
|
380
|
+
routing: "route optimization"
|
|
381
|
+
scheduling: "delivery scheduling"
|
|
382
|
+
cost: "transportation cost"
|
|
383
|
+
CROSS_DOCKING:
|
|
384
|
+
title: Cross-Docking Operations
|
|
385
|
+
description: Direct transfer without storage
|
|
386
|
+
annotations:
|
|
387
|
+
transfer: "direct transfer"
|
|
388
|
+
minimal_storage: "minimal inventory storage"
|
|
389
|
+
efficiency: "operational efficiency"
|
|
390
|
+
speed: "fast throughput"
|
|
391
|
+
consolidation: "shipment consolidation"
|
|
392
|
+
DISTRIBUTION:
|
|
393
|
+
title: Distribution Management
|
|
394
|
+
description: Product distribution and delivery operations
|
|
395
|
+
annotations:
|
|
396
|
+
distribution: "product distribution"
|
|
397
|
+
network: "distribution network"
|
|
398
|
+
delivery: "customer delivery"
|
|
399
|
+
service: "delivery service"
|
|
400
|
+
coverage: "market coverage"
|
|
401
|
+
FREIGHT_FORWARDING:
|
|
402
|
+
title: Freight Forwarding
|
|
403
|
+
description: International shipping and customs management
|
|
404
|
+
annotations:
|
|
405
|
+
international: "international shipping"
|
|
406
|
+
customs: "customs clearance"
|
|
407
|
+
documentation: "shipping documentation"
|
|
408
|
+
coordination: "multi-modal coordination"
|
|
409
|
+
compliance: "regulatory compliance"
|
|
410
|
+
SourcingStrategyEnum:
|
|
411
|
+
description: Sourcing strategy approaches
|
|
412
|
+
permissible_values:
|
|
413
|
+
SINGLE_SOURCING:
|
|
414
|
+
title: Single Sourcing
|
|
415
|
+
description: Deliberate use of one supplier for strategic reasons
|
|
416
|
+
annotations:
|
|
417
|
+
suppliers: "single supplier"
|
|
418
|
+
strategic: "strategic decision"
|
|
419
|
+
partnership: "close partnership"
|
|
420
|
+
risk: "supply concentration risk"
|
|
421
|
+
benefits: "economies of scale"
|
|
422
|
+
MULTIPLE_SOURCING:
|
|
423
|
+
title: Multiple Sourcing
|
|
424
|
+
description: Use of multiple suppliers for risk mitigation
|
|
425
|
+
annotations:
|
|
426
|
+
suppliers: "multiple suppliers"
|
|
427
|
+
risk_mitigation: "supply risk mitigation"
|
|
428
|
+
competition: "supplier competition"
|
|
429
|
+
flexibility: "sourcing flexibility"
|
|
430
|
+
management: "complex supplier management"
|
|
431
|
+
DUAL_SOURCING:
|
|
432
|
+
title: Dual Sourcing
|
|
433
|
+
description: Use of two suppliers for balance of risk and efficiency
|
|
434
|
+
annotations:
|
|
435
|
+
suppliers: "two suppliers"
|
|
436
|
+
balance: "risk and efficiency balance"
|
|
437
|
+
backup: "backup supply capability"
|
|
438
|
+
competition: "limited competition"
|
|
439
|
+
management: "manageable complexity"
|
|
440
|
+
GLOBAL_SOURCING:
|
|
441
|
+
title: Global Sourcing
|
|
442
|
+
description: Worldwide sourcing for best value
|
|
443
|
+
annotations:
|
|
444
|
+
geographic: "global geographic scope"
|
|
445
|
+
cost: "cost optimization"
|
|
446
|
+
capability: "access to capabilities"
|
|
447
|
+
complexity: "increased complexity"
|
|
448
|
+
risk: "global supply risks"
|
|
449
|
+
DOMESTIC_SOURCING:
|
|
450
|
+
title: Domestic Sourcing
|
|
451
|
+
description: Sourcing within domestic market
|
|
452
|
+
annotations:
|
|
453
|
+
geographic: "domestic market only"
|
|
454
|
+
proximity: "geographic proximity"
|
|
455
|
+
responsiveness: "local responsiveness"
|
|
456
|
+
compliance: "regulatory compliance"
|
|
457
|
+
support: "domestic economy support"
|
|
458
|
+
NEAR_SOURCING:
|
|
459
|
+
title: Near Sourcing
|
|
460
|
+
description: Sourcing from nearby geographic regions
|
|
461
|
+
annotations:
|
|
462
|
+
geographic: "nearby regions"
|
|
463
|
+
balance: "cost and proximity balance"
|
|
464
|
+
risk: "reduced supply chain risk"
|
|
465
|
+
responsiveness: "improved responsiveness"
|
|
466
|
+
cost: "moderate cost advantage"
|
|
467
|
+
VERTICAL_INTEGRATION:
|
|
468
|
+
title: Vertical Integration
|
|
469
|
+
description: Internal production instead of external sourcing
|
|
470
|
+
annotations:
|
|
471
|
+
internal: "internal production"
|
|
472
|
+
control: "direct control"
|
|
473
|
+
capability: "internal capability development"
|
|
474
|
+
investment: "significant investment"
|
|
475
|
+
flexibility: "reduced flexibility"
|
|
476
|
+
OUTSOURCING:
|
|
477
|
+
title: Outsourcing
|
|
478
|
+
description: External sourcing of non-core activities
|
|
479
|
+
annotations:
|
|
480
|
+
external: "external providers"
|
|
481
|
+
focus: "core competency focus"
|
|
482
|
+
cost: "cost optimization"
|
|
483
|
+
expertise: "access to expertise"
|
|
484
|
+
dependency: "external dependency"
|
|
485
|
+
INSOURCING:
|
|
486
|
+
title: Insourcing
|
|
487
|
+
description: Bringing previously outsourced activities internal
|
|
488
|
+
annotations:
|
|
489
|
+
internal: "bring activities internal"
|
|
490
|
+
control: "increased control"
|
|
491
|
+
capability: "internal capability building"
|
|
492
|
+
cost: "potential cost increase"
|
|
493
|
+
strategic: "strategic importance"
|
|
494
|
+
CONSORTIUM_SOURCING:
|
|
495
|
+
title: Consortium Sourcing
|
|
496
|
+
description: Collaborative sourcing with other organizations
|
|
497
|
+
annotations:
|
|
498
|
+
collaboration: "multi-organization collaboration"
|
|
499
|
+
leverage: "increased buying leverage"
|
|
500
|
+
cost: "cost reduction through scale"
|
|
501
|
+
complexity: "coordination complexity"
|
|
502
|
+
relationships: "multi-party relationships"
|
|
503
|
+
SupplierRelationshipTypeEnum:
|
|
504
|
+
description: Types of supplier relationship management
|
|
505
|
+
permissible_values:
|
|
506
|
+
TRANSACTIONAL:
|
|
507
|
+
title: Transactional Relationship
|
|
508
|
+
description: Arms-length, price-focused supplier relationship
|
|
509
|
+
annotations:
|
|
510
|
+
focus: "price and terms focus"
|
|
511
|
+
interaction: "minimal interaction"
|
|
512
|
+
duration: "short-term orientation"
|
|
513
|
+
switching: "easy supplier switching"
|
|
514
|
+
competition: "competitive bidding"
|
|
515
|
+
PREFERRED_SUPPLIER:
|
|
516
|
+
title: Preferred Supplier Relationship
|
|
517
|
+
description: Ongoing relationship with proven suppliers
|
|
518
|
+
annotations:
|
|
519
|
+
status: "preferred supplier status"
|
|
520
|
+
performance: "proven performance"
|
|
521
|
+
priority: "priority consideration"
|
|
522
|
+
benefits: "preferential treatment"
|
|
523
|
+
stability: "stable relationship"
|
|
524
|
+
STRATEGIC_PARTNERSHIP:
|
|
525
|
+
title: Strategic Partnership
|
|
526
|
+
description: Collaborative long-term strategic relationship
|
|
527
|
+
annotations:
|
|
528
|
+
collaboration: "strategic collaboration"
|
|
529
|
+
integration: "business integration"
|
|
530
|
+
planning: "joint planning"
|
|
531
|
+
development: "joint development"
|
|
532
|
+
mutual_benefit: "mutual value creation"
|
|
533
|
+
ALLIANCE:
|
|
534
|
+
title: Strategic Alliance
|
|
535
|
+
description: Formal alliance with shared objectives
|
|
536
|
+
annotations:
|
|
537
|
+
formal: "formal alliance agreement"
|
|
538
|
+
objectives: "shared strategic objectives"
|
|
539
|
+
resources: "shared resources"
|
|
540
|
+
risks: "shared risks and rewards"
|
|
541
|
+
governance: "joint governance"
|
|
542
|
+
JOINT_VENTURE:
|
|
543
|
+
title: Joint Venture
|
|
544
|
+
description: Separate entity created with supplier
|
|
545
|
+
annotations:
|
|
546
|
+
entity: "separate legal entity"
|
|
547
|
+
ownership: "shared ownership"
|
|
548
|
+
investment: "joint investment"
|
|
549
|
+
control: "shared control"
|
|
550
|
+
separate: "separate business unit"
|
|
551
|
+
VENDOR_MANAGED_INVENTORY:
|
|
552
|
+
title: Vendor Managed Inventory (VMI)
|
|
553
|
+
description: Supplier manages customer inventory
|
|
554
|
+
annotations:
|
|
555
|
+
management: "supplier manages inventory"
|
|
556
|
+
visibility: "demand visibility"
|
|
557
|
+
responsibility: "supplier responsibility"
|
|
558
|
+
efficiency: "inventory efficiency"
|
|
559
|
+
integration: "systems integration"
|
|
560
|
+
CONSIGNMENT:
|
|
561
|
+
title: Consignment Relationship
|
|
562
|
+
description: Supplier owns inventory until consumption
|
|
563
|
+
annotations:
|
|
564
|
+
ownership: "supplier retains ownership"
|
|
565
|
+
location: "customer location"
|
|
566
|
+
payment: "payment on consumption"
|
|
567
|
+
cash_flow: "improved customer cash flow"
|
|
568
|
+
risk: "supplier inventory risk"
|
|
569
|
+
COLLABORATIVE_PLANNING:
|
|
570
|
+
title: Collaborative Planning Relationship
|
|
571
|
+
description: Joint planning and forecasting relationship
|
|
572
|
+
annotations:
|
|
573
|
+
planning: "collaborative planning"
|
|
574
|
+
forecasting: "joint forecasting"
|
|
575
|
+
information: "information sharing"
|
|
576
|
+
coordination: "demand coordination"
|
|
577
|
+
efficiency: "supply chain efficiency"
|
|
578
|
+
DEVELOPMENT_PARTNERSHIP:
|
|
579
|
+
title: Supplier Development Partnership
|
|
580
|
+
description: Investment in supplier capability development
|
|
581
|
+
annotations:
|
|
582
|
+
development: "supplier capability development"
|
|
583
|
+
investment: "customer investment"
|
|
584
|
+
improvement: "supplier improvement"
|
|
585
|
+
capability: "capability building"
|
|
586
|
+
long_term: "long-term commitment"
|
|
587
|
+
RISK_SHARING:
|
|
588
|
+
title: Risk Sharing Partnership
|
|
589
|
+
description: Shared risk and reward relationship
|
|
590
|
+
annotations:
|
|
591
|
+
risk: "shared risk and reward"
|
|
592
|
+
incentives: "aligned incentives"
|
|
593
|
+
performance: "performance-based"
|
|
594
|
+
outcomes: "shared outcomes"
|
|
595
|
+
collaboration: "collaborative approach"
|
|
596
|
+
InventoryManagementApproachEnum:
|
|
597
|
+
description: Inventory management methodologies
|
|
598
|
+
permissible_values:
|
|
599
|
+
JUST_IN_TIME:
|
|
600
|
+
title: Just-in-Time (JIT)
|
|
601
|
+
description: Minimal inventory with precise timing
|
|
602
|
+
annotations:
|
|
603
|
+
timing: "precise delivery timing"
|
|
604
|
+
waste: "inventory waste elimination"
|
|
605
|
+
flow: "continuous flow"
|
|
606
|
+
supplier: "supplier integration"
|
|
607
|
+
quality: "zero defect requirement"
|
|
608
|
+
ECONOMIC_ORDER_QUANTITY:
|
|
609
|
+
title: Economic Order Quantity (EOQ)
|
|
610
|
+
description: Optimal order quantity calculation
|
|
611
|
+
annotations:
|
|
612
|
+
optimization: "cost optimization"
|
|
613
|
+
calculation: "mathematical calculation"
|
|
614
|
+
trade_off: "ordering vs holding cost trade-off"
|
|
615
|
+
static: "static demand assumption"
|
|
616
|
+
classical: "classical inventory model"
|
|
617
|
+
ABC_ANALYSIS:
|
|
618
|
+
title: ABC Analysis
|
|
619
|
+
description: Inventory classification by value importance
|
|
620
|
+
annotations:
|
|
621
|
+
classification: "value-based classification"
|
|
622
|
+
focus: "priority focus on high-value items"
|
|
623
|
+
management: "differentiated management"
|
|
624
|
+
efficiency: "resource allocation efficiency"
|
|
625
|
+
pareto: "Pareto principle application"
|
|
626
|
+
SAFETY_STOCK:
|
|
627
|
+
title: Safety Stock Management
|
|
628
|
+
description: Buffer inventory for demand/supply uncertainty
|
|
629
|
+
annotations:
|
|
630
|
+
buffer: "inventory buffer"
|
|
631
|
+
uncertainty: "demand and supply uncertainty"
|
|
632
|
+
service_level: "service level protection"
|
|
633
|
+
cost: "additional holding cost"
|
|
634
|
+
risk: "stockout risk mitigation"
|
|
635
|
+
VENDOR_MANAGED_INVENTORY:
|
|
636
|
+
title: Vendor Managed Inventory (VMI)
|
|
637
|
+
description: Supplier-controlled inventory management
|
|
638
|
+
annotations:
|
|
639
|
+
control: "supplier inventory control"
|
|
640
|
+
visibility: "demand visibility"
|
|
641
|
+
automation: "automated replenishment"
|
|
642
|
+
efficiency: "inventory efficiency"
|
|
643
|
+
partnership: "supplier partnership"
|
|
644
|
+
CONSIGNMENT_INVENTORY:
|
|
645
|
+
title: Consignment Inventory
|
|
646
|
+
description: Supplier-owned inventory at customer location
|
|
647
|
+
annotations:
|
|
648
|
+
ownership: "supplier ownership"
|
|
649
|
+
location: "customer location"
|
|
650
|
+
cash_flow: "improved cash flow"
|
|
651
|
+
availability: "immediate availability"
|
|
652
|
+
risk: "supplier risk"
|
|
653
|
+
KANBAN:
|
|
654
|
+
title: Kanban System
|
|
655
|
+
description: Visual pull-based inventory system
|
|
656
|
+
annotations:
|
|
657
|
+
visual: "visual control system"
|
|
658
|
+
pull: "pull-based replenishment"
|
|
659
|
+
lean: "lean methodology"
|
|
660
|
+
signals: "kanban signals"
|
|
661
|
+
flow: "smooth material flow"
|
|
662
|
+
TWO_BIN_SYSTEM:
|
|
663
|
+
title: Two-Bin System
|
|
664
|
+
description: Simple reorder point system using two bins
|
|
665
|
+
annotations:
|
|
666
|
+
simplicity: "simple reorder system"
|
|
667
|
+
visual: "visual reorder point"
|
|
668
|
+
bins: "two-bin methodology"
|
|
669
|
+
automatic: "automatic reordering"
|
|
670
|
+
low_cost: "low-cost implementation"
|
|
671
|
+
CONTINUOUS_REVIEW:
|
|
672
|
+
title: Continuous Review System
|
|
673
|
+
description: Continuous monitoring with fixed reorder point
|
|
674
|
+
annotations:
|
|
675
|
+
monitoring: "continuous inventory monitoring"
|
|
676
|
+
reorder_point: "fixed reorder point"
|
|
677
|
+
quantity: "fixed order quantity"
|
|
678
|
+
responsiveness: "responsive to demand"
|
|
679
|
+
cost: "higher monitoring cost"
|
|
680
|
+
PERIODIC_REVIEW:
|
|
681
|
+
title: Periodic Review System
|
|
682
|
+
description: Periodic inventory review with variable order quantity
|
|
683
|
+
annotations:
|
|
684
|
+
periodic: "periodic review intervals"
|
|
685
|
+
variable: "variable order quantity"
|
|
686
|
+
target: "target inventory level"
|
|
687
|
+
aggregation: "order aggregation"
|
|
688
|
+
efficiency: "administrative efficiency"
|