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.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,645 @@
1
+ name: organizational_structures
2
+ title: Business Organizational Structures and Legal Entities
3
+ description: 'Classifications of business organizational structures including legal entity types,
4
+ corporate hierarchies, management levels, and organizational frameworks. Based on business
5
+ law standards, corporate governance frameworks, and organizational behavior research.'
6
+ id: https://w3id.org/linkml/valuesets/business/organizational_structures
7
+ imports:
8
+ - linkml:types
9
+ prefixes:
10
+ valuesets: https://w3id.org/valuesets/
11
+ SBA: https://www.sba.gov/
12
+ IRS: https://www.irs.gov/
13
+ SEC: https://www.sec.gov/
14
+ default_prefix: valuesets
15
+ slots:
16
+ legal_entity_type:
17
+ description: Legal structure of business entity
18
+ range: LegalEntityTypeEnum
19
+ organizational_structure:
20
+ description: Organizational hierarchy and reporting structure
21
+ range: OrganizationalStructureEnum
22
+ management_level:
23
+ description: Level within organizational hierarchy
24
+ range: ManagementLevelEnum
25
+ corporate_governance_role:
26
+ description: Role in corporate governance structure
27
+ range: CorporateGovernanceRoleEnum
28
+ business_ownership_type:
29
+ description: Type of business ownership structure
30
+ range: BusinessOwnershipTypeEnum
31
+ business_size_classification:
32
+ description: Size classification of business entity
33
+ range: BusinessSizeClassificationEnum
34
+ business_lifecycle_stage:
35
+ description: Stage in business development lifecycle
36
+ range: BusinessLifecycleStageEnum
37
+ enums:
38
+ LegalEntityTypeEnum:
39
+ description: Legal entity types for business organizations
40
+ permissible_values:
41
+ SOLE_PROPRIETORSHIP:
42
+ title: Sole Proprietorship
43
+ description: Business owned and operated by single individual
44
+ annotations:
45
+ legal_separation: no separation from owner
46
+ liability: unlimited personal liability
47
+ taxation: pass-through to personal returns
48
+ complexity: simplest structure
49
+ registration: minimal requirements
50
+ GENERAL_PARTNERSHIP:
51
+ title: General Partnership
52
+ description: Business owned by two or more partners sharing responsibilities
53
+ annotations:
54
+ ownership: shared among general partners
55
+ liability: unlimited personal liability for all partners
56
+ taxation: pass-through to partners
57
+ management: shared management responsibilities
58
+ LIMITED_PARTNERSHIP:
59
+ title: Limited Partnership (LP)
60
+ description: Partnership with general and limited partners
61
+ annotations:
62
+ partner_types: general partners and limited partners
63
+ liability: general partners have unlimited liability
64
+ limited_liability: limited partners have liability protection
65
+ management: general partners manage operations
66
+ LIMITED_LIABILITY_PARTNERSHIP:
67
+ title: Limited Liability Partnership (LLP)
68
+ description: Partnership providing liability protection to all partners
69
+ annotations:
70
+ liability: limited liability for all partners
71
+ professional_use: often used by professional services
72
+ taxation: pass-through taxation
73
+ management: flexible management structure
74
+ LIMITED_LIABILITY_COMPANY:
75
+ title: Limited Liability Company (LLC)
76
+ description: Hybrid entity combining corporation and partnership features
77
+ annotations:
78
+ liability: limited liability protection
79
+ taxation: flexible tax election options
80
+ management: flexible management structure
81
+ formality: fewer formal requirements than corporations
82
+ SINGLE_MEMBER_LLC:
83
+ title: Single Member LLC
84
+ description: LLC with only one owner/member
85
+ annotations:
86
+ ownership: single member
87
+ liability: limited liability protection
88
+ taxation: disregarded entity for tax purposes
89
+ simplicity: simpler than multi-member LLC
90
+ MULTI_MEMBER_LLC:
91
+ title: Multi-Member LLC
92
+ description: LLC with multiple owners/members
93
+ annotations:
94
+ ownership: multiple members
95
+ liability: limited liability protection
96
+ taxation: partnership taxation by default
97
+ operating_agreement: recommended operating agreement
98
+ C_CORPORATION:
99
+ title: C Corporation
100
+ description: Traditional corporation with double taxation
101
+ annotations:
102
+ legal_status: separate legal entity
103
+ liability: limited liability for shareholders
104
+ taxation: double taxation (corporate and dividend)
105
+ governance: formal board and officer structure
106
+ stock: can issue multiple classes of stock
107
+ S_CORPORATION:
108
+ title: S Corporation
109
+ description: Corporation electing pass-through taxation
110
+ annotations:
111
+ taxation: pass-through to shareholders
112
+ shareholders: limited to 100 shareholders
113
+ stock_types: single class of stock only
114
+ eligibility: restrictions on shareholder types
115
+ B_CORPORATION:
116
+ title: Benefit Corporation (B-Corp)
117
+ description: Corporation with social and environmental mission
118
+ annotations:
119
+ purpose: profit and public benefit
120
+ accountability: stakeholder governance requirements
121
+ transparency: annual benefit reporting
122
+ certification: optional third-party certification
123
+ PUBLIC_CORPORATION:
124
+ title: Public Corporation
125
+ description: Corporation with publicly traded shares
126
+ annotations:
127
+ shares: publicly traded on stock exchanges
128
+ regulation: SEC reporting requirements
129
+ governance: extensive governance requirements
130
+ liquidity: high share liquidity
131
+ PRIVATE_CORPORATION:
132
+ title: Private Corporation
133
+ description: Corporation with privately held shares
134
+ annotations:
135
+ shares: privately held shares
136
+ shareholders: limited number of shareholders
137
+ regulation: fewer regulatory requirements
138
+ liquidity: limited share liquidity
139
+ NONPROFIT_CORPORATION:
140
+ title: Nonprofit Corporation
141
+ description: Corporation organized for charitable or public purposes
142
+ annotations:
143
+ purpose: charitable, educational, or public benefit
144
+ taxation: tax-exempt status possible
145
+ profit_distribution: no profit distribution to members
146
+ governance: board of directors governance
147
+ COOPERATIVE:
148
+ title: Cooperative
149
+ description: Member-owned and democratically controlled organization
150
+ annotations:
151
+ ownership: member ownership
152
+ control: democratic member control
153
+ benefits: benefits proportional to participation
154
+ purpose: mutual benefit of members
155
+ JOINT_VENTURE:
156
+ title: Joint Venture
157
+ description: Temporary partnership for specific project or purpose
158
+ annotations:
159
+ duration: temporary or project-specific
160
+ purpose: specific business objective
161
+ ownership: shared ownership of venture
162
+ liability: depends on structure chosen
163
+ HOLDING_COMPANY:
164
+ title: Holding Company
165
+ description: Company that owns controlling interests in other companies
166
+ annotations:
167
+ purpose: own and control subsidiary companies
168
+ operations: minimal direct operations
169
+ structure: parent-subsidiary relationships
170
+ control: controls subsidiaries through ownership
171
+ SUBSIDIARY:
172
+ title: Subsidiary
173
+ description: Company controlled by another company (parent)
174
+ annotations:
175
+ control: controlled by parent company
176
+ ownership: majority owned by parent
177
+ operations: may operate independently
178
+ liability: separate legal entity
179
+ FRANCHISE:
180
+ title: Franchise
181
+ description: Business operating under franchisor's brand and system
182
+ annotations:
183
+ relationship: franchisor-franchisee relationship
184
+ brand: operates under established brand
185
+ system: follows franchisor's business system
186
+ fees: pays franchise fees and royalties
187
+ GOVERNMENT_ENTITY:
188
+ title: Government Entity
189
+ description: Entity owned and operated by government
190
+ annotations:
191
+ ownership: government ownership
192
+ purpose: public service or policy implementation
193
+ regulation: government regulations and oversight
194
+ funding: government funding sources
195
+ OrganizationalStructureEnum:
196
+ description: Types of organizational hierarchy and reporting structures
197
+ permissible_values:
198
+ HIERARCHICAL:
199
+ title: Hierarchical Structure
200
+ description: Traditional pyramid structure with clear chain of command
201
+ annotations:
202
+ authority_flow: top-down authority
203
+ communication: vertical communication channels
204
+ levels: multiple management levels
205
+ control: centralized control
206
+ decision_making: centralized decision making
207
+ FLAT:
208
+ title: Flat Structure
209
+ description: Minimal hierarchical levels with broader spans of control
210
+ annotations:
211
+ levels: few hierarchical levels
212
+ span_of_control: broad spans of control
213
+ communication: direct communication
214
+ decision_making: decentralized decision making
215
+ flexibility: high flexibility
216
+ MATRIX:
217
+ title: Matrix Structure
218
+ description: Dual reporting relationships combining functional and project lines
219
+ annotations:
220
+ reporting: dual reporting relationships
221
+ authority: shared authority between managers
222
+ flexibility: high project flexibility
223
+ complexity: increased complexity
224
+ communication: multidirectional communication
225
+ FUNCTIONAL:
226
+ title: Functional Structure
227
+ description: Organization by business functions or departments
228
+ annotations:
229
+ grouping: by business function
230
+ specialization: functional specialization
231
+ efficiency: operational efficiency
232
+ coordination: vertical coordination
233
+ expertise: concentrated expertise
234
+ DIVISIONAL:
235
+ title: Divisional Structure
236
+ description: Organization by product lines, markets, or geography
237
+ annotations:
238
+ grouping: by products, markets, or geography
239
+ autonomy: divisional autonomy
240
+ focus: market or product focus
241
+ coordination: horizontal coordination
242
+ responsibility: profit center responsibility
243
+ NETWORK:
244
+ title: Network Structure
245
+ description: Flexible structure with interconnected relationships
246
+ annotations:
247
+ relationships: network of relationships
248
+ flexibility: high flexibility
249
+ boundaries: blurred organizational boundaries
250
+ collaboration: extensive collaboration
251
+ adaptability: high adaptability
252
+ TEAM_BASED:
253
+ title: Team-Based Structure
254
+ description: Organization around self-managing teams
255
+ annotations:
256
+ unit: teams as basic organizational unit
257
+ management: self-managing teams
258
+ collaboration: high collaboration
259
+ decision_making: team-based decision making
260
+ flexibility: operational flexibility
261
+ VIRTUAL:
262
+ title: Virtual Structure
263
+ description: Geographically dispersed organization connected by technology
264
+ annotations:
265
+ location: geographically dispersed
266
+ technology: technology-enabled communication
267
+ flexibility: location flexibility
268
+ coordination: virtual coordination
269
+ boundaries: minimal physical boundaries
270
+ HYBRID:
271
+ title: Hybrid Structure
272
+ description: Combination of multiple organizational structures
273
+ annotations:
274
+ combination: multiple structure types
275
+ flexibility: structural flexibility
276
+ adaptation: adaptable to different needs
277
+ complexity: increased structural complexity
278
+ customization: customized to organization needs
279
+ ManagementLevelEnum:
280
+ description: Hierarchical levels within organizational management structure
281
+ permissible_values:
282
+ BOARD_OF_DIRECTORS:
283
+ title: Board of Directors
284
+ description: Governing body elected by shareholders
285
+ annotations:
286
+ authority: highest governance authority
287
+ responsibility: fiduciary responsibility to shareholders
288
+ oversight: strategic oversight and control
289
+ composition: independent and inside directors
290
+ C_SUITE:
291
+ title: C-Suite/Chief Officers
292
+ description: Top executive leadership team
293
+ annotations:
294
+ level: top executive level
295
+ scope: organization-wide responsibility
296
+ titles: CEO, CFO, COO, CTO, etc.
297
+ accountability: accountable to board of directors
298
+ SENIOR_EXECUTIVE:
299
+ title: Senior Executive
300
+ description: Senior leadership below C-suite level
301
+ annotations:
302
+ level: senior leadership
303
+ scope: major business unit or function
304
+ titles: EVP, SVP, General Manager
305
+ reporting: reports to C-suite
306
+ VICE_PRESIDENT:
307
+ title: Vice President
308
+ description: Senior management responsible for major divisions
309
+ annotations:
310
+ level: senior management
311
+ scope: division or major function
312
+ authority: significant decision-making authority
313
+ titles: VP, Assistant VP
314
+ DIRECTOR:
315
+ title: Director
316
+ description: Management responsible for departments or major programs
317
+ annotations:
318
+ level: middle management
319
+ scope: department or program
320
+ responsibility: departmental leadership
321
+ oversight: manages multiple managers
322
+ MANAGER:
323
+ title: Manager
324
+ description: Supervisory role managing teams or operations
325
+ annotations:
326
+ level: middle management
327
+ scope: team or operational unit
328
+ responsibility: day-to-day operations
329
+ supervision: manages individual contributors
330
+ SUPERVISOR:
331
+ title: Supervisor
332
+ description: First-line management overseeing frontline employees
333
+ annotations:
334
+ level: first-line management
335
+ scope: small team or shift
336
+ responsibility: direct supervision
337
+ interface: employee-management interface
338
+ TEAM_LEAD:
339
+ title: Team Lead
340
+ description: Lead role within team without formal management authority
341
+ annotations:
342
+ level: senior individual contributor
343
+ authority: informal authority
344
+ responsibility: team coordination
345
+ expertise: technical or project leadership
346
+ SENIOR_INDIVIDUAL_CONTRIBUTOR:
347
+ title: Senior Individual Contributor
348
+ description: Experienced professional without management responsibilities
349
+ annotations:
350
+ level: senior professional
351
+ expertise: specialized expertise
352
+ mentoring: may mentor junior staff
353
+ projects: leads complex projects
354
+ INDIVIDUAL_CONTRIBUTOR:
355
+ title: Individual Contributor
356
+ description: Professional or specialist role
357
+ annotations:
358
+ level: professional
359
+ responsibility: individual work output
360
+ specialization: functional specialization
361
+ career_path: professional career track
362
+ ENTRY_LEVEL:
363
+ title: Entry Level
364
+ description: Beginning professional or support roles
365
+ annotations:
366
+ experience: minimal professional experience
367
+ development: learning and development focus
368
+ supervision: close supervision
369
+ growth_potential: career growth opportunities
370
+ CorporateGovernanceRoleEnum:
371
+ description: Roles within corporate governance structure
372
+ permissible_values:
373
+ CHAIRMAN_OF_BOARD:
374
+ title: Chairman of the Board
375
+ description: Leader of board of directors
376
+ annotations:
377
+ leadership: board leadership
378
+ meetings: chairs board meetings
379
+ interface: shareholder interface
380
+ governance: governance oversight
381
+ LEAD_INDEPENDENT_DIRECTOR:
382
+ title: Lead Independent Director
383
+ description: Senior independent director when chairman is not independent
384
+ annotations:
385
+ independence: independent from management
386
+ leadership: leads independent directors
387
+ oversight: additional oversight role
388
+ communication: shareholder communication
389
+ INDEPENDENT_DIRECTOR:
390
+ title: Independent Director
391
+ description: Board member independent from company management
392
+ annotations:
393
+ independence: independent from management
394
+ objectivity: objective oversight
395
+ committees: serves on key committees
396
+ governance: independent governance perspective
397
+ INSIDE_DIRECTOR:
398
+ title: Inside Director
399
+ description: Board member who is also company employee or has material relationship
400
+ annotations:
401
+ relationship: material relationship with company
402
+ expertise: insider knowledge
403
+ perspective: management perspective
404
+ potential_conflicts: potential conflicts of interest
405
+ AUDIT_COMMITTEE_CHAIR:
406
+ title: Audit Committee Chair
407
+ description: Chair of board's audit committee
408
+ annotations:
409
+ committee: audit committee leadership
410
+ oversight: financial oversight
411
+ independence: must be independent
412
+ expertise: financial expertise required
413
+ COMPENSATION_COMMITTEE_CHAIR:
414
+ title: Compensation Committee Chair
415
+ description: Chair of board's compensation committee
416
+ annotations:
417
+ committee: compensation committee leadership
418
+ responsibility: executive compensation oversight
419
+ independence: must be independent
420
+ alignment: shareholder interest alignment
421
+ NOMINATING_COMMITTEE_CHAIR:
422
+ title: Nominating Committee Chair
423
+ description: Chair of board's nominating and governance committee
424
+ annotations:
425
+ committee: nominating committee leadership
426
+ responsibility: board composition and governance
427
+ succession: leadership succession planning
428
+ governance: governance best practices
429
+ CHIEF_EXECUTIVE_OFFICER:
430
+ title: Chief Executive Officer (CEO)
431
+ description: Highest-ranking executive officer
432
+ annotations:
433
+ authority: highest executive authority
434
+ strategy: strategic leadership
435
+ accountability: accountable to board
436
+ representation: company representation
437
+ CHIEF_FINANCIAL_OFFICER:
438
+ title: Chief Financial Officer (CFO)
439
+ description: Senior executive responsible for financial management
440
+ annotations:
441
+ responsibility: financial management
442
+ reporting: financial reporting oversight
443
+ compliance: financial compliance
444
+ strategy: financial strategy
445
+ CHIEF_OPERATING_OFFICER:
446
+ title: Chief Operating Officer (COO)
447
+ description: Senior executive responsible for operations
448
+ annotations:
449
+ responsibility: operational management
450
+ execution: strategy execution
451
+ efficiency: operational efficiency
452
+ coordination: cross-functional coordination
453
+ CORPORATE_SECRETARY:
454
+ title: Corporate Secretary
455
+ description: Officer responsible for corporate records and governance compliance
456
+ annotations:
457
+ records: corporate records maintenance
458
+ compliance: governance compliance
459
+ meetings: board meeting coordination
460
+ legal: legal compliance oversight
461
+ BusinessOwnershipTypeEnum:
462
+ description: Types of business ownership structures
463
+ permissible_values:
464
+ PRIVATE_OWNERSHIP:
465
+ title: Private Ownership
466
+ description: Business owned by private individuals or entities
467
+ annotations:
468
+ ownership: private individuals or entities
469
+ control: private control
470
+ capital: private capital sources
471
+ disclosure: limited disclosure requirements
472
+ PUBLIC_OWNERSHIP:
473
+ title: Public Ownership
474
+ description: Business with publicly traded ownership shares
475
+ annotations:
476
+ ownership: public shareholders
477
+ trading: publicly traded shares
478
+ regulation: extensive regulatory requirements
479
+ disclosure: public disclosure requirements
480
+ FAMILY_OWNERSHIP:
481
+ title: Family Ownership
482
+ description: Business owned and controlled by family members
483
+ annotations:
484
+ ownership: family members
485
+ succession: family succession planning
486
+ values: family values integration
487
+ long_term: long-term orientation
488
+ EMPLOYEE_OWNERSHIP:
489
+ title: Employee Ownership
490
+ description: Business owned by employees through stock or cooperative structure
491
+ annotations:
492
+ ownership: employee owners
493
+ participation: employee participation
494
+ alignment: ownership-management alignment
495
+ structure: ESOP or cooperative structure
496
+ INSTITUTIONAL_OWNERSHIP:
497
+ title: Institutional Ownership
498
+ description: Business owned by institutional investors
499
+ annotations:
500
+ ownership: institutional investors
501
+ professional: professional management
502
+ capital: institutional capital
503
+ governance: institutional governance
504
+ GOVERNMENT_OWNERSHIP:
505
+ title: Government Ownership
506
+ description: Business owned by government entities
507
+ annotations:
508
+ ownership: government entities
509
+ purpose: public policy objectives
510
+ regulation: government oversight
511
+ funding: public funding
512
+ FOREIGN_OWNERSHIP:
513
+ title: Foreign Ownership
514
+ description: Business owned by foreign individuals or entities
515
+ annotations:
516
+ ownership: foreign entities
517
+ regulation: foreign investment regulations
518
+ capital: foreign capital
519
+ compliance: international compliance
520
+ JOINT_OWNERSHIP:
521
+ title: Joint Ownership
522
+ description: Business owned jointly by multiple parties
523
+ annotations:
524
+ ownership: multiple ownership parties
525
+ agreements: joint ownership agreements
526
+ governance: shared governance
527
+ coordination: ownership coordination
528
+ BusinessSizeClassificationEnum:
529
+ description: Size classifications for business entities
530
+ permissible_values:
531
+ MICRO_BUSINESS:
532
+ title: Micro Business
533
+ description: Very small business with minimal employees and revenue
534
+ annotations:
535
+ employees: "typically 1-9 employees"
536
+ revenue: "very low revenue"
537
+ characteristics: "home-based or small office"
538
+ support: "minimal administrative support"
539
+ SMALL_BUSINESS:
540
+ title: Small Business
541
+ description: Small business as defined by SBA standards
542
+ annotations:
543
+ employees: "varies by industry (typically <500)"
544
+ revenue: "varies by industry"
545
+ sba_definition: "meets SBA size standards"
546
+ characteristics: "independently owned and operated"
547
+ MEDIUM_BUSINESS:
548
+ title: Medium Business
549
+ description: Mid-sized business between small and large classifications
550
+ annotations:
551
+ employees: "typically 500-1500 employees"
552
+ revenue: "moderate revenue levels"
553
+ characteristics: "regional or specialized market presence"
554
+ structure: "more formal organizational structure"
555
+ LARGE_BUSINESS:
556
+ title: Large Business
557
+ description: Major corporation with significant operations
558
+ annotations:
559
+ employees: ">1500 employees"
560
+ revenue: "high revenue levels"
561
+ market_presence: "national or international presence"
562
+ structure: "complex organizational structure"
563
+ MULTINATIONAL_CORPORATION:
564
+ title: Multinational Corporation
565
+ description: Large corporation operating in multiple countries
566
+ annotations:
567
+ geographic_scope: "multiple countries"
568
+ complexity: "high operational complexity"
569
+ structure: "global organizational structure"
570
+ coordination: "international coordination"
571
+ FORTUNE_500:
572
+ title: Fortune 500 Company
573
+ description: Among the 500 largest US corporations by revenue
574
+ annotations:
575
+ ranking: "Fortune 500 list"
576
+ revenue: "highest revenue levels"
577
+ market_position: "market leadership positions"
578
+ recognition: "prestigious business recognition"
579
+ BusinessLifecycleStageEnum:
580
+ description: Stages in business development lifecycle
581
+ permissible_values:
582
+ CONCEPT_STAGE:
583
+ title: Concept Stage
584
+ description: Initial business idea development and validation
585
+ annotations:
586
+ focus: "idea development and validation"
587
+ activities: "market research, business planning"
588
+ funding: "personal or angel funding"
589
+ risk: "highest risk level"
590
+ STARTUP_STAGE:
591
+ title: Startup Stage
592
+ description: Business launch and early operations
593
+ annotations:
594
+ focus: "product development and market entry"
595
+ activities: "building initial customer base"
596
+ funding: "seed funding, early investments"
597
+ growth: "rapid learning and adaptation"
598
+ GROWTH_STAGE:
599
+ title: Growth Stage
600
+ description: Rapid expansion and scaling operations
601
+ annotations:
602
+ focus: "scaling operations and market expansion"
603
+ activities: "increasing market share"
604
+ funding: "venture capital, growth financing"
605
+ challenges: "scaling challenges"
606
+ EXPANSION_STAGE:
607
+ title: Expansion Stage
608
+ description: Market expansion and diversification
609
+ annotations:
610
+ focus: "market expansion and diversification"
611
+ activities: "new markets, products, or services"
612
+ funding: "growth capital, strategic investments"
613
+ sophistication: "increased operational sophistication"
614
+ MATURITY_STAGE:
615
+ title: Maturity Stage
616
+ description: Stable operations with established market position
617
+ annotations:
618
+ focus: "operational efficiency and market defense"
619
+ activities: "defending market position"
620
+ funding: "self-funding, debt financing"
621
+ stability: "stable cash flows"
622
+ DECLINE_STAGE:
623
+ title: Decline Stage
624
+ description: Decreasing market relevance or performance
625
+ annotations:
626
+ focus: "cost reduction and restructuring"
627
+ activities: "turnaround efforts or exit planning"
628
+ challenges: "declining revenues or relevance"
629
+ options: "restructuring, sale, or closure"
630
+ TURNAROUND_STAGE:
631
+ title: Turnaround Stage
632
+ description: Recovery efforts from decline or crisis
633
+ annotations:
634
+ focus: "crisis management and recovery"
635
+ activities: "restructuring and repositioning"
636
+ leadership: "turnaround management"
637
+ urgency: "urgent transformation needs"
638
+ EXIT_STAGE:
639
+ title: Exit Stage
640
+ description: Business sale, merger, or closure
641
+ annotations:
642
+ focus: "exit strategy execution"
643
+ activities: "sale, merger, or liquidation"
644
+ valuation: "business valuation"
645
+ transition: "ownership transition"