corp-extractor 0.4.0__py3-none-any.whl → 0.9.0__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.
Files changed (75) hide show
  1. {corp_extractor-0.4.0.dist-info → corp_extractor-0.9.0.dist-info}/METADATA +348 -64
  2. corp_extractor-0.9.0.dist-info/RECORD +76 -0
  3. statement_extractor/__init__.py +10 -1
  4. statement_extractor/cli.py +1663 -17
  5. statement_extractor/data/default_predicates.json +368 -0
  6. statement_extractor/data/statement_taxonomy.json +6972 -0
  7. statement_extractor/database/__init__.py +52 -0
  8. statement_extractor/database/embeddings.py +186 -0
  9. statement_extractor/database/hub.py +520 -0
  10. statement_extractor/database/importers/__init__.py +24 -0
  11. statement_extractor/database/importers/companies_house.py +545 -0
  12. statement_extractor/database/importers/gleif.py +538 -0
  13. statement_extractor/database/importers/sec_edgar.py +375 -0
  14. statement_extractor/database/importers/wikidata.py +1012 -0
  15. statement_extractor/database/importers/wikidata_people.py +632 -0
  16. statement_extractor/database/models.py +230 -0
  17. statement_extractor/database/resolver.py +245 -0
  18. statement_extractor/database/store.py +1609 -0
  19. statement_extractor/document/__init__.py +62 -0
  20. statement_extractor/document/chunker.py +410 -0
  21. statement_extractor/document/context.py +171 -0
  22. statement_extractor/document/deduplicator.py +173 -0
  23. statement_extractor/document/html_extractor.py +246 -0
  24. statement_extractor/document/loader.py +303 -0
  25. statement_extractor/document/pipeline.py +388 -0
  26. statement_extractor/document/summarizer.py +195 -0
  27. statement_extractor/extractor.py +1 -23
  28. statement_extractor/gliner_extraction.py +4 -74
  29. statement_extractor/llm.py +255 -0
  30. statement_extractor/models/__init__.py +89 -0
  31. statement_extractor/models/canonical.py +182 -0
  32. statement_extractor/models/document.py +308 -0
  33. statement_extractor/models/entity.py +102 -0
  34. statement_extractor/models/labels.py +220 -0
  35. statement_extractor/models/qualifiers.py +139 -0
  36. statement_extractor/models/statement.py +101 -0
  37. statement_extractor/models.py +4 -1
  38. statement_extractor/pipeline/__init__.py +39 -0
  39. statement_extractor/pipeline/config.py +129 -0
  40. statement_extractor/pipeline/context.py +177 -0
  41. statement_extractor/pipeline/orchestrator.py +416 -0
  42. statement_extractor/pipeline/registry.py +303 -0
  43. statement_extractor/plugins/__init__.py +55 -0
  44. statement_extractor/plugins/base.py +716 -0
  45. statement_extractor/plugins/extractors/__init__.py +13 -0
  46. statement_extractor/plugins/extractors/base.py +9 -0
  47. statement_extractor/plugins/extractors/gliner2.py +546 -0
  48. statement_extractor/plugins/labelers/__init__.py +29 -0
  49. statement_extractor/plugins/labelers/base.py +9 -0
  50. statement_extractor/plugins/labelers/confidence.py +138 -0
  51. statement_extractor/plugins/labelers/relation_type.py +87 -0
  52. statement_extractor/plugins/labelers/sentiment.py +159 -0
  53. statement_extractor/plugins/labelers/taxonomy.py +386 -0
  54. statement_extractor/plugins/labelers/taxonomy_embedding.py +477 -0
  55. statement_extractor/plugins/pdf/__init__.py +10 -0
  56. statement_extractor/plugins/pdf/pypdf.py +291 -0
  57. statement_extractor/plugins/qualifiers/__init__.py +30 -0
  58. statement_extractor/plugins/qualifiers/base.py +9 -0
  59. statement_extractor/plugins/qualifiers/companies_house.py +185 -0
  60. statement_extractor/plugins/qualifiers/embedding_company.py +420 -0
  61. statement_extractor/plugins/qualifiers/gleif.py +197 -0
  62. statement_extractor/plugins/qualifiers/person.py +785 -0
  63. statement_extractor/plugins/qualifiers/sec_edgar.py +209 -0
  64. statement_extractor/plugins/scrapers/__init__.py +10 -0
  65. statement_extractor/plugins/scrapers/http.py +236 -0
  66. statement_extractor/plugins/splitters/__init__.py +13 -0
  67. statement_extractor/plugins/splitters/base.py +9 -0
  68. statement_extractor/plugins/splitters/t5_gemma.py +293 -0
  69. statement_extractor/plugins/taxonomy/__init__.py +13 -0
  70. statement_extractor/plugins/taxonomy/embedding.py +484 -0
  71. statement_extractor/plugins/taxonomy/mnli.py +291 -0
  72. statement_extractor/scoring.py +8 -8
  73. corp_extractor-0.4.0.dist-info/RECORD +0 -12
  74. {corp_extractor-0.4.0.dist-info → corp_extractor-0.9.0.dist-info}/WHEEL +0 -0
  75. {corp_extractor-0.4.0.dist-info → corp_extractor-0.9.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,368 @@
1
+ {
2
+ "ownership_control": {
3
+ "acquires": {"description": "Acquisition where one entity purchases or takes control of another", "threshold": 0.7},
4
+ "owns": {"description": "Ownership relationship where entity has legal possession of another", "threshold": 0.7},
5
+ "controls": {"description": "Control relationship where entity has authority over another", "threshold": 0.7},
6
+ "owns_company": {"description": "Corporate ownership where entity owns shares or equity in a company", "threshold": 0.7},
7
+ "owns_land": {"description": "Land ownership where entity has property rights", "threshold": 0.7},
8
+ "owns_resource": {"description": "Resource ownership including natural resources or assets", "threshold": 0.7},
9
+ "has_subsidiary": {"description": "Parent-subsidiary relationship where company owns another company", "threshold": 0.75},
10
+ "is_subsidiary_of": {"description": "Company is owned or controlled by a parent company", "threshold": 0.75},
11
+ "subsidiary_of": {"description": "Company belongs to a larger corporate group as subsidiary", "threshold": 0.75},
12
+ "parent_company_of": {"description": "Entity is the parent company controlling another", "threshold": 0.75},
13
+ "has_controlling_interest_in": {"description": "Entity holds majority stake or voting control", "threshold": 0.75},
14
+ "corporately_controls": {"description": "Corporate control through governance or ownership", "threshold": 0.7},
15
+ "corporately_controlled_by": {"description": "Entity is under corporate control of another", "threshold": 0.7},
16
+ "holds_equity_in": {"description": "Entity has equity stake or shares in another", "threshold": 0.7},
17
+ "has_stake_in": {"description": "Entity has financial interest or investment in another", "threshold": 0.7},
18
+ "divests": {"description": "Entity sells off or disposes of assets or subsidiaries", "threshold": 0.7},
19
+ "liquidates": {"description": "Entity winds down or dissolves assets or operations", "threshold": 0.7},
20
+ "has_asset": {"description": "Entity possesses or owns an asset", "threshold": 0.65},
21
+ "is_asset_of": {"description": "Item or entity is an asset owned by another", "threshold": 0.65},
22
+ "holds_ip_rights_to": {"description": "Entity owns intellectual property rights", "threshold": 0.7}
23
+ },
24
+ "corporate_structure": {
25
+ "has_division": {"description": "Company has an internal division or business unit", "threshold": 0.7},
26
+ "is_sister_company_of": {"description": "Companies share common parent or ownership", "threshold": 0.7},
27
+ "linked_by_common_control": {"description": "Entities share common controlling shareholder", "threshold": 0.7},
28
+ "organisationally_overlaps_with": {"description": "Entities have shared organizational elements", "threshold": 0.65},
29
+ "organisationally_separate_from": {"description": "Entities are organizationally distinct", "threshold": 0.65},
30
+ "corporately_distinct_from": {"description": "Entities are separate legal corporate entities", "threshold": 0.7},
31
+ "is_same_legal_entity_as": {"description": "Two names refer to the same legal entity", "threshold": 0.75},
32
+ "is_distinct_legal_entity_from": {"description": "Entities are different legal persons", "threshold": 0.75},
33
+ "chartered_by": {"description": "Entity was legally established by another", "threshold": 0.7},
34
+ "established": {"description": "Entity founded or created another entity", "threshold": 0.7},
35
+ "disestablishes": {"description": "Entity dissolves or terminates another", "threshold": 0.7}
36
+ },
37
+ "employment_leadership": {
38
+ "employs": {"description": "Employment relationship where organization employs person", "threshold": 0.75},
39
+ "is_employed_by": {"description": "Person works for an organization as employee", "threshold": 0.75},
40
+ "is_employee_of": {"description": "Person is staff member of an organization", "threshold": 0.75},
41
+ "is_employer_of": {"description": "Organization provides employment to person", "threshold": 0.75},
42
+ "is_ceo_of": {"description": "Person serves as Chief Executive Officer", "threshold": 0.8},
43
+ "is_director_of": {"description": "Person serves on board of directors", "threshold": 0.8},
44
+ "is_executive_of": {"description": "Person holds executive position in organization", "threshold": 0.75},
45
+ "is_board_member_of": {"description": "Person is member of governing board", "threshold": 0.8},
46
+ "is_chair_of": {"description": "Person serves as chairperson of organization or board", "threshold": 0.8},
47
+ "is_chairman_of": {"description": "Person holds chairman position", "threshold": 0.8},
48
+ "is_president_of": {"description": "Person serves as president of organization", "threshold": 0.8},
49
+ "is_manager_of": {"description": "Person manages a team, department, or entity", "threshold": 0.75},
50
+ "reports_to": {"description": "Person reports to another in organizational hierarchy", "threshold": 0.75},
51
+ "leads": {"description": "Person leads or heads an organization or team", "threshold": 0.7},
52
+ "is_leader_of": {"description": "Person has leadership role in organization", "threshold": 0.7},
53
+ "is_led_by": {"description": "Organization or team is led by a person", "threshold": 0.7},
54
+ "manages": {"description": "Person has management responsibility for entity", "threshold": 0.7},
55
+ "is_managed_by": {"description": "Entity is under management of person", "threshold": 0.7},
56
+ "supervises": {"description": "Person oversees or supervises another", "threshold": 0.7},
57
+ "is_supervised_by": {"description": "Person works under supervision of another", "threshold": 0.7},
58
+ "advises": {"description": "Person provides advice to organization or individual", "threshold": 0.65},
59
+ "counsels_ethically": {"description": "Person provides ethical counsel or guidance", "threshold": 0.7},
60
+ "holds_position_with": {"description": "Person has formal position at organization", "threshold": 0.7},
61
+ "is_coworker_of": {"description": "Persons work at same organization", "threshold": 0.7},
62
+ "collaborates_with": {"description": "Entities work together professionally", "threshold": 0.65},
63
+ "works_with": {"description": "Professional working relationship", "threshold": 0.65}
64
+ },
65
+ "funding_investment": {
66
+ "funds": {"description": "Entity provides funding or financial support", "threshold": 0.7},
67
+ "finances": {"description": "Entity provides financing for activity or entity", "threshold": 0.7},
68
+ "invests_in": {"description": "Entity makes investment in another entity or venture", "threshold": 0.7},
69
+ "bankrolls": {"description": "Entity provides substantial financial backing", "threshold": 0.7},
70
+ "backs_product_venture": {"description": "Entity supports product or venture financially", "threshold": 0.7},
71
+ "is_funded_by": {"description": "Entity receives funding from another", "threshold": 0.7},
72
+ "is_financed_by": {"description": "Entity receives financing from another", "threshold": 0.7},
73
+ "receives_funding_from": {"description": "Entity obtains funding from source", "threshold": 0.7},
74
+ "makes_investment_in": {"description": "Entity invests capital in another", "threshold": 0.7},
75
+ "receives_investment_from": {"description": "Entity receives investment capital", "threshold": 0.7},
76
+ "divests_from_resource": {"description": "Entity withdraws investment from resource", "threshold": 0.7},
77
+ "provides_funds_to": {"description": "Entity transfers funds to another", "threshold": 0.7},
78
+ "receives_funds_from": {"description": "Entity receives funds from another", "threshold": 0.7},
79
+ "donates_to": {"description": "Entity makes charitable donation", "threshold": 0.7},
80
+ "receives_donations_from": {"description": "Entity receives charitable donations", "threshold": 0.7},
81
+ "subsidizes": {"description": "Entity provides subsidy or financial assistance", "threshold": 0.7},
82
+ "is_subsidized_by": {"description": "Entity receives subsidy from another", "threshold": 0.7},
83
+ "sponsors": {"description": "Entity provides sponsorship support", "threshold": 0.7},
84
+ "is_sponsored_by": {"description": "Entity receives sponsorship from another", "threshold": 0.7},
85
+ "underwrites_risk": {"description": "Entity assumes financial risk for another", "threshold": 0.7},
86
+ "securitizes": {"description": "Entity converts assets into securities", "threshold": 0.75},
87
+ "indemnifies": {"description": "Entity provides indemnification or protection", "threshold": 0.75}
88
+ },
89
+ "partnership_collaboration": {
90
+ "collaborates_with": {"description": "Entities work together on joint effort", "threshold": 0.65},
91
+ "partners_with": {"description": "Entities form partnership relationship", "threshold": 0.7},
92
+ "is_commercial_partner_of": {"description": "Entities have commercial partnership", "threshold": 0.7},
93
+ "is_joint_venture_with": {"description": "Entities participate in joint venture together", "threshold": 0.75},
94
+ "has_commercial_cooperation_with": {"description": "Entities cooperate commercially", "threshold": 0.7},
95
+ "negotiates_with": {"description": "Entities engage in negotiations", "threshold": 0.65},
96
+ "transacts_with": {"description": "Entities conduct business transactions", "threshold": 0.65},
97
+ "does_business_with": {"description": "Entities have business relationship", "threshold": 0.65},
98
+ "explores_opportunities_with": {"description": "Entities explore business opportunities together", "threshold": 0.65},
99
+ "shares_interests_with": {"description": "Entities have aligned or common interests", "threshold": 0.65}
100
+ },
101
+ "supply_chain": {
102
+ "supplies": {"description": "Entity provides goods or materials to another", "threshold": 0.7},
103
+ "supplies_product_to": {"description": "Entity supplies specific product to customer", "threshold": 0.7},
104
+ "is_supplier_of": {"description": "Entity serves as supplier to another", "threshold": 0.7},
105
+ "supplied_by": {"description": "Entity receives supplies from another", "threshold": 0.7},
106
+ "manufactures": {"description": "Entity produces goods through manufacturing", "threshold": 0.7},
107
+ "is_manufacturer_of": {"description": "Entity is the manufacturer of a product", "threshold": 0.7},
108
+ "produces": {"description": "Entity creates or produces something", "threshold": 0.65},
109
+ "is_produced_by": {"description": "Product or item is made by entity", "threshold": 0.65},
110
+ "procures_from": {"description": "Entity obtains goods or services from supplier", "threshold": 0.7},
111
+ "delivers_to": {"description": "Entity delivers goods to recipient", "threshold": 0.65},
112
+ "sources_from": {"description": "Entity obtains materials from source", "threshold": 0.7},
113
+ "distributes_for": {"description": "Entity distributes products for another", "threshold": 0.7},
114
+ "is_distributed_by": {"description": "Products are distributed by entity", "threshold": 0.7},
115
+ "mobilizes_supply": {"description": "Entity activates or organizes supply", "threshold": 0.7},
116
+ "imposes_supply_embargo_on": {"description": "Entity restricts supply to another", "threshold": 0.75},
117
+ "under_supply_embargo_from": {"description": "Entity faces supply restrictions", "threshold": 0.75}
118
+ },
119
+ "location_operations": {
120
+ "operates_in_location": {"description": "Entity has operations in geographic location", "threshold": 0.65},
121
+ "is_located_at": {"description": "Entity is physically located at place", "threshold": 0.65},
122
+ "has_office_in": {"description": "Entity has office presence in location", "threshold": 0.7},
123
+ "headquartered_in": {"description": "Entity has headquarters in location", "threshold": 0.75},
124
+ "spatially_contains": {"description": "Location contains another location", "threshold": 0.65},
125
+ "contained_within": {"description": "Location is within larger area", "threshold": 0.65},
126
+ "borders_with": {"description": "Locations share a border", "threshold": 0.7},
127
+ "is_near": {"description": "Entity is near another in proximity", "threshold": 0.6},
128
+ "is_close_to": {"description": "Entity is in close proximity to another", "threshold": 0.6},
129
+ "is_distant_from": {"description": "Entity is far from another", "threshold": 0.6},
130
+ "encloses": {"description": "Location surrounds or encloses another", "threshold": 0.7},
131
+ "is_inside": {"description": "Entity is inside another space", "threshold": 0.65},
132
+ "is_outside": {"description": "Entity is outside another space", "threshold": 0.65}
133
+ },
134
+ "competition_market": {
135
+ "competes_with": {"description": "Entities compete in same market", "threshold": 0.7},
136
+ "has_market_competitor": {"description": "Entity faces competition from another", "threshold": 0.7},
137
+ "is_direct_competitor_of": {"description": "Entities directly compete for customers", "threshold": 0.75},
138
+ "outperforms": {"description": "Entity performs better than competitor", "threshold": 0.7},
139
+ "underperforms": {"description": "Entity performs worse than benchmark", "threshold": 0.7},
140
+ "is_outperformed_by": {"description": "Entity is beaten by competitor", "threshold": 0.7},
141
+ "leads_in_market": {"description": "Entity has leading market position", "threshold": 0.7},
142
+ "lags_in_market": {"description": "Entity trails in market position", "threshold": 0.7},
143
+ "is_market_leader_over": {"description": "Entity leads market over competitor", "threshold": 0.75},
144
+ "is_category_leader": {"description": "Entity leads in product category", "threshold": 0.75},
145
+ "is_category_laggard": {"description": "Entity trails in product category", "threshold": 0.7},
146
+ "addresses_overlapping_markets": {"description": "Entities serve similar markets", "threshold": 0.65},
147
+ "addresses_distinct_markets": {"description": "Entities serve different markets", "threshold": 0.65},
148
+ "influences_market": {"description": "Entity affects market conditions", "threshold": 0.65},
149
+ "sets_market_standard": {"description": "Entity establishes industry standards", "threshold": 0.7}
150
+ },
151
+ "legal_regulatory": {
152
+ "regulates": {"description": "Entity regulates or governs another", "threshold": 0.75},
153
+ "is_regulated_by": {"description": "Entity is subject to regulation by authority", "threshold": 0.75},
154
+ "enforces": {"description": "Entity enforces rules or laws on another", "threshold": 0.75},
155
+ "is_subject_to": {"description": "Entity must comply with rule or authority", "threshold": 0.7},
156
+ "violates": {"description": "Entity breaks or infringes rule or agreement", "threshold": 0.75},
157
+ "violates_law": {"description": "Entity breaks legal requirements", "threshold": 0.8},
158
+ "abides_by_law": {"description": "Entity follows legal requirements", "threshold": 0.7},
159
+ "complies_with": {"description": "Entity meets requirements of rule or standard", "threshold": 0.7},
160
+ "legally_advises": {"description": "Entity provides legal advice", "threshold": 0.75},
161
+ "legally_audits": {"description": "Entity conducts legal audit of another", "threshold": 0.75},
162
+ "legally_possesses": {"description": "Entity has legal possession of item", "threshold": 0.7},
163
+ "has_legal_obligation_to": {"description": "Entity has legal duty to another", "threshold": 0.75},
164
+ "has_liability_for": {"description": "Entity bears legal liability", "threshold": 0.75},
165
+ "exercises_jurisdiction_over": {"description": "Authority has jurisdiction over entity", "threshold": 0.75},
166
+ "is_under_jurisdiction_of": {"description": "Entity falls under authority of another", "threshold": 0.75},
167
+ "legislates": {"description": "Entity creates legislation", "threshold": 0.8},
168
+ "repeals": {"description": "Entity revokes law or regulation", "threshold": 0.8},
169
+ "ratifies_treaty": {"description": "Entity formally approves treaty", "threshold": 0.8}
170
+ },
171
+ "product_service": {
172
+ "launched_product": {"description": "Entity introduced new product to market", "threshold": 0.7},
173
+ "launched_company": {"description": "Person or entity founded a company", "threshold": 0.7},
174
+ "unveils_product": {"description": "Entity reveals or announces new product", "threshold": 0.7},
175
+ "recalls_product": {"description": "Entity withdraws product from market", "threshold": 0.75},
176
+ "provides_service": {"description": "Entity offers service to customers", "threshold": 0.65},
177
+ "provides_service_to": {"description": "Entity delivers service to specific customer", "threshold": 0.7},
178
+ "offers_product": {"description": "Entity makes product available", "threshold": 0.65},
179
+ "has_product": {"description": "Entity has product in portfolio", "threshold": 0.65},
180
+ "is_product_of": {"description": "Item is product of entity", "threshold": 0.65},
181
+ "has_product_variant": {"description": "Product has variant or version", "threshold": 0.65},
182
+ "has_predecessor_product": {"description": "Product has earlier version", "threshold": 0.65},
183
+ "has_successor_product": {"description": "Product has newer replacement", "threshold": 0.65},
184
+ "complements_product": {"description": "Product works with another product", "threshold": 0.65},
185
+ "is_substitute_product": {"description": "Product can replace another", "threshold": 0.65},
186
+ "discontinues": {"description": "Entity stops offering product or service", "threshold": 0.7},
187
+ "ceases_product_support": {"description": "Entity ends support for product", "threshold": 0.7},
188
+ "phases_out": {"description": "Entity gradually withdraws product", "threshold": 0.7},
189
+ "manages_product_lifecycle": {"description": "Entity oversees product lifecycle", "threshold": 0.7},
190
+ "informs_product_development": {"description": "Entity influences product design", "threshold": 0.65}
191
+ },
192
+ "brand_marketing": {
193
+ "has_brand": {"description": "Entity owns or controls a brand", "threshold": 0.7},
194
+ "is_brand_of": {"description": "Brand belongs to entity", "threshold": 0.7},
195
+ "has_sub_brand": {"description": "Brand has subordinate brand", "threshold": 0.7},
196
+ "is_sub_brand_of": {"description": "Brand is subsidiary of parent brand", "threshold": 0.7},
197
+ "manages_brand": {"description": "Entity manages brand strategy", "threshold": 0.7},
198
+ "cultivates_brand": {"description": "Entity develops brand identity", "threshold": 0.7},
199
+ "leverages_brand": {"description": "Entity uses brand for advantage", "threshold": 0.7},
200
+ "is_brand_ambassador_for": {"description": "Person represents brand publicly", "threshold": 0.75},
201
+ "endorses": {"description": "Person or entity promotes another", "threshold": 0.7},
202
+ "is_endorsed_by": {"description": "Entity receives endorsement", "threshold": 0.7},
203
+ "markets": {"description": "Entity markets product or service", "threshold": 0.65},
204
+ "is_marketed_by": {"description": "Product is marketed by entity", "threshold": 0.65},
205
+ "promotes": {"description": "Entity promotes another entity or product", "threshold": 0.65},
206
+ "cross_promotes_with": {"description": "Entities promote each other", "threshold": 0.7},
207
+ "shapes_brand_perception": {"description": "Entity influences brand image", "threshold": 0.65},
208
+ "damages_brand_perception": {"description": "Entity negatively affects brand", "threshold": 0.7}
209
+ },
210
+ "communication": {
211
+ "announces": {"description": "Entity makes public announcement", "threshold": 0.65},
212
+ "states": {"description": "Entity makes formal statement", "threshold": 0.6},
213
+ "discloses_to": {"description": "Entity reveals information to another", "threshold": 0.7},
214
+ "communicates_with_person": {"description": "Entity communicates with individual", "threshold": 0.6},
215
+ "publishes": {"description": "Entity releases publication", "threshold": 0.65},
216
+ "is_publication_of": {"description": "Work is published by entity", "threshold": 0.65},
217
+ "references_work": {"description": "Entity cites or references another work", "threshold": 0.65},
218
+ "informs": {"description": "Entity provides information to another", "threshold": 0.6},
219
+ "is_informed_by": {"description": "Entity receives information from another", "threshold": 0.6},
220
+ "shares_knowledge_with": {"description": "Entity shares knowledge with another", "threshold": 0.65}
221
+ },
222
+ "risk_compliance": {
223
+ "introduces_risk": {"description": "Entity creates or brings risk", "threshold": 0.7},
224
+ "mitigates_risk": {"description": "Entity reduces or manages risk", "threshold": 0.7},
225
+ "manages_risk": {"description": "Entity oversees risk management", "threshold": 0.7},
226
+ "transfers_risk": {"description": "Entity passes risk to another party", "threshold": 0.7},
227
+ "poses_dependency_risk_to": {"description": "Entity creates dependency risk for another", "threshold": 0.7},
228
+ "has_dependency_risk_from": {"description": "Entity faces risk from dependency", "threshold": 0.7},
229
+ "exacerbates_risk_of": {"description": "Entity increases risk level", "threshold": 0.7},
230
+ "reduces_risk_of": {"description": "Entity decreases risk level", "threshold": 0.7},
231
+ "tolerates_risk": {"description": "Entity accepts certain risk level", "threshold": 0.65},
232
+ "acknowledges_risk": {"description": "Entity recognizes existence of risk", "threshold": 0.65},
233
+ "exposes_risk": {"description": "Entity reveals hidden risk", "threshold": 0.7},
234
+ "obfuscates_risk": {"description": "Entity hides or obscures risk", "threshold": 0.75},
235
+ "classified_as_risk": {"description": "Item categorized as risk factor", "threshold": 0.7},
236
+ "has_sub_risk": {"description": "Risk has component sub-risks", "threshold": 0.7},
237
+ "is_sub_risk_of": {"description": "Risk is component of larger risk", "threshold": 0.7},
238
+ "falls_under_risk_pillar": {"description": "Risk categorized under framework", "threshold": 0.7},
239
+ "shares_risk_category": {"description": "Risks share same classification", "threshold": 0.65}
240
+ },
241
+ "financial_transactions": {
242
+ "trades_as": {"description": "Entity trades under specific name or ticker", "threshold": 0.7},
243
+ "trades_with_person": {"description": "Entity conducts trade with individual", "threshold": 0.65},
244
+ "barters": {"description": "Entities exchange goods without money", "threshold": 0.7},
245
+ "sells_to": {"description": "Entity sells goods or services to buyer", "threshold": 0.65},
246
+ "has_revenue_from": {"description": "Entity earns revenue from source", "threshold": 0.7},
247
+ "expends_budget": {"description": "Entity spends allocated funds", "threshold": 0.65},
248
+ "conserves_funds": {"description": "Entity preserves financial resources", "threshold": 0.65},
249
+ "squanders_funds": {"description": "Entity wastes financial resources", "threshold": 0.7},
250
+ "audits_financially": {"description": "Entity conducts financial audit", "threshold": 0.75},
251
+ "is_audited_by": {"description": "Entity is subject to financial audit", "threshold": 0.75},
252
+ "has_price": {"description": "Item has specific price", "threshold": 0.6},
253
+ "is_valued_at": {"description": "Entity or item has valuation", "threshold": 0.65},
254
+ "increases_value_of": {"description": "Action increases value", "threshold": 0.65},
255
+ "reduces_value_of": {"description": "Action decreases value", "threshold": 0.65}
256
+ },
257
+ "environmental_esg": {
258
+ "pollutes": {"description": "Entity causes environmental pollution", "threshold": 0.75},
259
+ "is_polluted_by": {"description": "Entity suffers pollution from source", "threshold": 0.75},
260
+ "degrades_habitat": {"description": "Entity damages natural habitat", "threshold": 0.75},
261
+ "harms_habitat": {"description": "Entity negatively affects ecosystem", "threshold": 0.75},
262
+ "reduces_emissions": {"description": "Entity decreases emissions output", "threshold": 0.7},
263
+ "preserves_habitat": {"description": "Entity protects natural habitat", "threshold": 0.7},
264
+ "sustains_biodiversity": {"description": "Entity supports biological diversity", "threshold": 0.7},
265
+ "deploys_conservation_strategy": {"description": "Entity implements conservation measures", "threshold": 0.7},
266
+ "has_environmental_impact": {"description": "Entity affects environment", "threshold": 0.65},
267
+ "invests_in_habitat": {"description": "Entity funds habitat protection", "threshold": 0.7},
268
+ "invests_in_workers": {"description": "Entity supports worker welfare", "threshold": 0.7},
269
+ "exploits_workers": {"description": "Entity takes advantage of workers", "threshold": 0.8},
270
+ "promotes_welfare": {"description": "Entity supports welfare initiatives", "threshold": 0.7},
271
+ "harms_welfare": {"description": "Entity damages welfare", "threshold": 0.75},
272
+ "supports_welfare": {"description": "Entity contributes to welfare", "threshold": 0.7},
273
+ "respects_workers": {"description": "Entity treats workers fairly", "threshold": 0.7},
274
+ "neglects_workers": {"description": "Entity fails to support workers", "threshold": 0.75}
275
+ },
276
+ "political_governance": {
277
+ "politically_backs": {"description": "Entity supports politically", "threshold": 0.7},
278
+ "is_political_ally_of": {"description": "Entities share political alignment", "threshold": 0.7},
279
+ "is_political_adversary_of": {"description": "Entities have opposing political positions", "threshold": 0.7},
280
+ "lobbies_for": {"description": "Entity lobbies in support of cause", "threshold": 0.75},
281
+ "funds_political_group": {"description": "Entity provides political funding", "threshold": 0.75},
282
+ "defunds_political_group": {"description": "Entity withdraws political funding", "threshold": 0.75},
283
+ "donates_to_campaign": {"description": "Entity contributes to political campaign", "threshold": 0.75},
284
+ "receives_campaign_donation_from": {"description": "Entity receives campaign contribution", "threshold": 0.75},
285
+ "governs": {"description": "Entity exercises governance authority", "threshold": 0.75},
286
+ "presides_over": {"description": "Entity presides or chairs proceedings", "threshold": 0.75},
287
+ "exercises_jurisdiction_over": {"description": "Authority has legal power over area", "threshold": 0.75}
288
+ },
289
+ "technology_innovation": {
290
+ "uses_technology": {"description": "Entity utilizes specific technology", "threshold": 0.65},
291
+ "utilizes_technology": {"description": "Entity employs technology in operations", "threshold": 0.65},
292
+ "pioneers": {"description": "Entity leads in developing new approach", "threshold": 0.7},
293
+ "creates_technical_product": {"description": "Entity develops technical product", "threshold": 0.7},
294
+ "integrates_technical_module": {"description": "Entity incorporates technical component", "threshold": 0.7},
295
+ "technically_supports": {"description": "Entity provides technical support", "threshold": 0.65},
296
+ "technically_owns": {"description": "Entity has technical ownership", "threshold": 0.7},
297
+ "invests_tech_in": {"description": "Entity invests technology resources", "threshold": 0.7},
298
+ "receives_tech_investment_from": {"description": "Entity receives technology investment", "threshold": 0.7},
299
+ "implements_specification": {"description": "Entity implements technical standard", "threshold": 0.7},
300
+ "infringes_on_specification": {"description": "Entity violates technical standard", "threshold": 0.75}
301
+ },
302
+ "intellectual_research": {
303
+ "researches": {"description": "Entity conducts research", "threshold": 0.65},
304
+ "conducts_research_on": {"description": "Entity researches specific topic", "threshold": 0.65},
305
+ "invents": {"description": "Entity creates new invention", "threshold": 0.7},
306
+ "develops_from": {"description": "Entity develops something from basis", "threshold": 0.65},
307
+ "theorizes": {"description": "Entity proposes theory", "threshold": 0.65},
308
+ "applies_theory": {"description": "Entity puts theory into practice", "threshold": 0.65},
309
+ "builds_upon": {"description": "Entity extends previous work", "threshold": 0.65},
310
+ "derives_from": {"description": "Entity originates from source", "threshold": 0.65},
311
+ "inspires": {"description": "Entity motivates or influences another", "threshold": 0.6},
312
+ "is_inspired_by": {"description": "Entity draws inspiration from source", "threshold": 0.6},
313
+ "influences_conceptually": {"description": "Entity affects thinking or concepts", "threshold": 0.6}
314
+ },
315
+ "advocacy_opposition": {
316
+ "advocates_for": {"description": "Entity publicly supports or promotes cause or policy", "threshold": 0.65},
317
+ "supports": {"description": "Entity supports or backs another entity or cause", "threshold": 0.6},
318
+ "endorses_policy": {"description": "Entity endorses or approves policy or position", "threshold": 0.7},
319
+ "champions": {"description": "Entity actively champions or defends cause", "threshold": 0.65},
320
+ "defends": {"description": "Entity defends or protects another from criticism", "threshold": 0.65},
321
+ "backs": {"description": "Entity provides backing or support", "threshold": 0.6},
322
+ "promotes_cause": {"description": "Entity promotes or advances a cause", "threshold": 0.65},
323
+ "opposes": {"description": "Entity opposes or is against another entity or policy", "threshold": 0.65},
324
+ "criticizes": {"description": "Entity criticizes or finds fault with another", "threshold": 0.65},
325
+ "objects_to": {"description": "Entity objects to or disagrees with something", "threshold": 0.65},
326
+ "protests_against": {"description": "Entity protests or demonstrates against something", "threshold": 0.7},
327
+ "challenges": {"description": "Entity challenges or disputes something", "threshold": 0.65},
328
+ "disputes": {"description": "Entity disputes or contests a claim or action", "threshold": 0.65},
329
+ "rejects": {"description": "Entity rejects or refuses something", "threshold": 0.7},
330
+ "condemns": {"description": "Entity strongly criticizes or condemns another", "threshold": 0.7},
331
+ "denounces": {"description": "Entity publicly denounces another", "threshold": 0.7},
332
+ "raises_concerns_about": {"description": "Entity raises concerns or issues about something", "threshold": 0.6},
333
+ "has_concerns_about": {"description": "Entity has concerns or worries about something", "threshold": 0.6},
334
+ "cites_concerns_about": {"description": "Entity cites or mentions concerns about something", "threshold": 0.6},
335
+ "expresses_concern_about": {"description": "Entity expresses worry or concern about something", "threshold": 0.6},
336
+ "questions": {"description": "Entity questions or doubts something", "threshold": 0.6},
337
+ "warns_about": {"description": "Entity warns or cautions about something", "threshold": 0.65},
338
+ "highlights_issue_with": {"description": "Entity highlights or draws attention to issue", "threshold": 0.65},
339
+ "takes_position_on": {"description": "Entity takes a stance or position on issue", "threshold": 0.65},
340
+ "responds_to": {"description": "Entity responds or reacts to something", "threshold": 0.6},
341
+ "addresses_issue": {"description": "Entity addresses or tackles an issue", "threshold": 0.65},
342
+ "comments_on": {"description": "Entity comments or remarks on something", "threshold": 0.6}
343
+ },
344
+ "actions_effects": {
345
+ "affects": {"description": "Entity affects or has effect on another", "threshold": 0.6},
346
+ "impacts": {"description": "Entity impacts or influences another", "threshold": 0.6},
347
+ "causes": {"description": "Entity causes or brings about something", "threshold": 0.65},
348
+ "results_in": {"description": "Action results in or leads to outcome", "threshold": 0.65},
349
+ "leads_to": {"description": "Entity or action leads to consequence", "threshold": 0.65},
350
+ "triggers": {"description": "Entity triggers or initiates something", "threshold": 0.65},
351
+ "prevents": {"description": "Entity prevents or stops something", "threshold": 0.65},
352
+ "enables": {"description": "Entity enables or allows something", "threshold": 0.65},
353
+ "hinders": {"description": "Entity hinders or obstructs something", "threshold": 0.65},
354
+ "facilitates": {"description": "Entity facilitates or makes easier", "threshold": 0.65}
355
+ },
356
+ "relationships": {
357
+ "is_associated_with": {"description": "Entity is associated or connected with another", "threshold": 0.6},
358
+ "is_related_to": {"description": "Entity is related to another", "threshold": 0.6},
359
+ "is_linked_to": {"description": "Entity is linked or connected to another", "threshold": 0.6},
360
+ "involves": {"description": "Entity involves or includes another", "threshold": 0.6},
361
+ "concerns": {"description": "Matter concerns or is about something", "threshold": 0.6},
362
+ "pertains_to": {"description": "Entity pertains or relates to another", "threshold": 0.6},
363
+ "resembles": {"description": "Entity resembles or is similar to another", "threshold": 0.6},
364
+ "differs_from": {"description": "Entity differs or is distinct from another", "threshold": 0.6},
365
+ "exceeds": {"description": "Entity exceeds or surpasses another", "threshold": 0.65},
366
+ "matches": {"description": "Entity matches or equals another", "threshold": 0.65}
367
+ }
368
+ }