@yottagraph-app/data-model-skill 0.0.37 → 0.0.39

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.
@@ -0,0 +1,515 @@
1
+ # Dataset schema for IAPD (SEC Investment Adviser Public Disclosure).
2
+ #
3
+ # This schema describes entity types, properties, and relationships produced
4
+ # by atomizing the IAPD Form ADV Part 1A daily XML compilation feeds:
5
+ #
6
+ # - IA_FIRM_SEC_Feed_*.xml.gz — SEC-registered RIAs + Exempt Reporting
7
+ # Advisers. Source name: "iapd_sec".
8
+ # - IA_FIRM_STATE_Feed_*.xml.gz — State-registered Investment Advisers.
9
+ # Source name: "iapd_state".
10
+ #
11
+ # Both feeds emit the same entity types. crd_number is the canonical
12
+ # strong ID — chosen to align with the cross-source convention (edgar
13
+ # also uses an unprefixed crd_number on its organization flavor), so
14
+ # IAPD firms and EDGAR registrants collapse to one entity per CRD.
15
+ # sec_file_number is a secondary strong ID for SEC-feed firms.
16
+ # company_cik and lei are declared as strong-ID slots so the slots
17
+ # exist when downstream cross-walks (Form ADV Schedule R, third-party
18
+ # CRD↔LEI mappings) start populating them — adding strong-ID slots
19
+ # later is a breaking schema change.
20
+ #
21
+ # Scope: Form ADV Part 1A only. Part 1B (state addenda), Part 2 (brochures),
22
+ # and Part 3 (CRS) are per-firm PDFs not in the bulk feed; they are
23
+ # deferred to a future iteration.
24
+ name: "iapd"
25
+ description: "SEC Investment Adviser Public Disclosure (IAPD) Form ADV Part 1A data for SEC-registered Registered Investment Advisers, Exempt Reporting Advisers, and state-registered Investment Advisers, sourced from the daily IAPD compilation XML feeds"
26
+
27
+ extraction:
28
+ flavors: closed
29
+ properties: closed
30
+ relationships: closed
31
+ attributes: closed
32
+ events: closed
33
+
34
+ flavors:
35
+ - name: "organization"
36
+ description: "A particular business, institution, or organization such as a corporation, university, government agency, or non-profit"
37
+ display_name: "Organization"
38
+ mergeability: not_mergeable
39
+ # Property-name alignment matters: strong-ID matches key on
40
+ # (flavor, property, value), so crd_number / sec_file_number /
41
+ # company_cik / lei here match the same-named strong-IDs on
42
+ # edgar's organization flavor and gleif's organization flavor.
43
+ strong_id_properties: ["crd_number", "sec_file_number", "company_cik", "lei"]
44
+ passive: true
45
+
46
+ - name: "location"
47
+ description: "A specific named geographic location such as a city, country, region, or landmark"
48
+ display_name: "Location"
49
+ mergeability: not_mergeable
50
+ examples: ["New York City", "San Francisco", "North America", "Bakery Square"]
51
+ passive: true
52
+
53
+ properties:
54
+ # --- Identity and Registration ---
55
+
56
+ - name: "crd_number"
57
+ type: string
58
+ description: "FINRA-assigned firm CRD (Central Registration Depository) number, the canonical unique identifier for SEC-registered and state-registered investment advisory firms; stable across registration status changes. Derived from the FirmCrdNb attribute on the IAPD <Firm> element. Property name is unprefixed to match edgar's organization.crd_number so an iapd firm and an edgar registrant with the same CRD resolve to the same entity"
59
+ display_name: "CRD Number"
60
+ mergeability: not_mergeable
61
+ domain_flavors: ["organization"]
62
+ examples: ["283882", "312360", "324069"]
63
+ passive: true
64
+
65
+ - name: "sec_file_number"
66
+ type: string
67
+ description: "SEC file number — registrant identifier assigned by the SEC (e.g. 801-XXXXX for advisers, 084-XXXXX for funds). For IAPD firms the 801-prefix denotes a fully SEC-registered Registered Investment Adviser and the 802-prefix denotes an Exempt Reporting Adviser; derived from the SECNb attribute on the IAPD <Firm> element (SEC feed only). Promoted to a strong-ID on organization so iapd firms cross-resolve with edgar registrants by SEC file number when CRD is missing on one side"
68
+ display_name: "SEC File Number"
69
+ mergeability: not_mergeable
70
+ domain_flavors: ["organization"]
71
+ examples: ["801-135399", "802-120553"]
72
+ passive: true
73
+
74
+ - name: "company_cik"
75
+ type: string
76
+ description: "SEC Central Index Key (CIK) assigned by EDGAR to entities that file with the SEC. Property name matches edgar's organization.company_cik so iapd firms that also file via EDGAR (e.g. publicly-traded asset managers, fund advisers) cross-resolve to the same organization entity. Not present in the IAPD bulk XML — the slot is declared so downstream CRD↔CIK cross-walks (Form ADV Schedule R or third-party feeds) can populate it without a breaking schema change"
77
+ display_name: "Company CIK"
78
+ mergeability: not_mergeable
79
+ domain_flavors: ["organization"]
80
+ examples: ["1234567"]
81
+ passive: true
82
+
83
+ - name: "lei"
84
+ type: string
85
+ description: "Legal Entity Identifier — 20-character ISO 17442 code globally identifying a legal entity. Property name matches gleif's organization.lei and edgar's organization.lei so iapd firms cross-resolve to GLEIF and EDGAR records by LEI. Not present in the IAPD bulk Part 1A XML — the slot is declared so per-firm IAPD detail XML (Schedule R) or third-party cross-walks can populate it without a breaking schema change"
86
+ display_name: "LEI"
87
+ mergeability: not_mergeable
88
+ domain_flavors: ["organization"]
89
+ examples: ["549300LQQAVPLATTSU38"]
90
+ passive: true
91
+
92
+ - name: "primary_business_name"
93
+ type: string
94
+ description: "Primary business name under which the firm conducts advisory business; may differ from the legal name when the firm operates under a trade name or DBA. Derived from the BusNm attribute on the IAPD <Firm> element"
95
+ display_name: "Primary Business Name"
96
+ mergeability: not_mergeable
97
+ domain_flavors: ["organization"]
98
+ examples: ["RABENOLD ADVISORS, INC.", "MK CAPITAL"]
99
+ passive: true
100
+
101
+ - name: "legal_name"
102
+ type: string
103
+ description: "Firm's full legal name as registered with regulators; derived from the LegalNm attribute on the IAPD <Firm> element"
104
+ display_name: "Legal Name"
105
+ mergeability: not_mergeable
106
+ domain_flavors: ["organization"]
107
+ examples: ["RABENOLD ADVISORS, INC.", "MK CAPITAL COMPANY"]
108
+ passive: true
109
+
110
+ - name: "is_umbrella_registration"
111
+ type: string
112
+ description: "String-encoded boolean (\"true\"/\"false\") indicating whether this Form ADV filing represents an umbrella registration covering multiple filing-adviser/relying-adviser entities under a single filing. Derived from the UmbrRgstn attribute on the IAPD <Firm> element"
113
+ display_name: "Umbrella Registration"
114
+ mergeability: not_mergeable
115
+ domain_flavors: ["organization"]
116
+ examples: ["true", "false"]
117
+ passive: true
118
+
119
+ - name: "sec_region_code"
120
+ type: string
121
+ description: "SEC regional office code with supervisory jurisdiction over the firm. Derived from the SECRgnCD attribute on the IAPD <Firm> element (SEC-registered firms only)"
122
+ display_name: "SEC Region Code"
123
+ mergeability: not_mergeable
124
+ domain_flavors: ["organization"]
125
+ examples: ["NYRO", "CHRO", "LARO"]
126
+ passive: true
127
+
128
+ - name: "firm_registration_type"
129
+ type: string
130
+ description: "Firm's registration disposition with the SEC. \"Registered\" denotes a fully SEC-registered Registered Investment Adviser; \"ERA\" denotes an Exempt Reporting Adviser that files but is not fully registered. Derived from the Rgstn FirmType attribute on the IAPD <Firm> element (SEC feed only)"
131
+ display_name: "Firm Registration Type"
132
+ mergeability: not_mergeable
133
+ domain_flavors: ["organization"]
134
+ examples: ["Registered", "ERA"]
135
+ passive: true
136
+
137
+ - name: "firm_registration_status"
138
+ type: string
139
+ description: "Status of the firm's registration with its primary securities regulator (SEC or a US state); distinct from LEI registration status. For SEC-registered firms, derived from the Rgstn St attribute. For state-registered firms, derived from the first state regulator's status under StateRgstn/Rgltrs"
140
+ display_name: "Firm Registration Status"
141
+ mergeability: not_mergeable
142
+ domain_flavors: ["organization"]
143
+ examples: ["APPROVED", "ACTIVE", "PENDING", "TERMINATED"]
144
+ passive: true
145
+
146
+ - name: "firm_registration_date"
147
+ type: string
148
+ description: "Date the firm was approved or registered by its primary securities regulator (SEC or a US state), formatted YYYY-MM-DD. Derived from the Rgstn Dt attribute (SEC feed) or the first state regulator's Dt under StateRgstn/Rgltrs (state feed)"
149
+ display_name: "Firm Registration Date"
150
+ mergeability: not_mergeable
151
+ domain_flavors: ["organization"]
152
+ examples: ["2026-02-24", "2021-02-16"]
153
+ passive: true
154
+
155
+ - name: "notice_filed_state_count"
156
+ type: float
157
+ description: "Number of US states where the SEC-registered firm has filed notice filings; counts <States> elements under <NoticeFiled> on the IAPD <Firm> element (SEC feed only)"
158
+ display_name: "Notice-Filed State Count"
159
+ mergeability: not_mergeable
160
+ domain_flavors: ["organization"]
161
+ passive: true
162
+
163
+ - name: "state_registration_count"
164
+ type: float
165
+ description: "Number of US state and territorial securities regulators with which the firm is state-registered; counts <Rgltr> elements under StateRgstn/Rgltrs on the IAPD <Firm> element (state feed only)"
166
+ display_name: "State Registration Count"
167
+ mergeability: not_mergeable
168
+ domain_flavors: ["organization"]
169
+ passive: true
170
+
171
+ - name: "latest_filing_date"
172
+ type: string
173
+ description: "Date of the most recent Form ADV filing represented in this IAPD snapshot, formatted YYYY-MM-DD. Derived from the Filing Dt attribute on the <Firm> element; also used as the record-level timestamp because it bounds the freshness of the Form ADV data"
174
+ display_name: "Latest Form ADV Filing Date"
175
+ mergeability: not_mergeable
176
+ domain_flavors: ["organization"]
177
+ examples: ["2026-03-04", "2025-08-01"]
178
+ passive: true
179
+
180
+ - name: "form_adv_version"
181
+ type: string
182
+ description: "Version label of the Form ADV template used for the firm's most recent filing. Derived from the Filing FormVrsn attribute on the <Firm> element"
183
+ display_name: "Form ADV Version"
184
+ mergeability: not_mergeable
185
+ domain_flavors: ["organization"]
186
+ examples: ["10/2021"]
187
+ passive: true
188
+
189
+ # --- Address and Contact ---
190
+
191
+ - name: "physical_address"
192
+ type: string
193
+ description: "Physical street address of the entity"
194
+ display_name: "Physical Address"
195
+ mergeability: not_mergeable
196
+ domain_flavors: ["organization"]
197
+ examples: ["5930 MAIN STREET, SUITE 400, WILLIAMSVILLE, NY 14221, United States"]
198
+ passive: true
199
+
200
+ - name: "mailing_address"
201
+ type: string
202
+ description: "Mailing address as formatted string"
203
+ display_name: "Mailing Address"
204
+ mergeability: not_mergeable
205
+ domain_flavors: ["organization"]
206
+ examples: ["PO BOX 1234, ALBANY, NY 12201, United States"]
207
+ passive: true
208
+
209
+ - name: "main_phone_number"
210
+ type: string
211
+ description: "Main office phone number as published by the firm; not normalized. Derived from the MainAddr PhNb attribute on the <Firm> element"
212
+ display_name: "Main Phone Number"
213
+ mergeability: not_mergeable
214
+ domain_flavors: ["organization"]
215
+ examples: ["716-568-8790", "6033037688"]
216
+ passive: true
217
+
218
+ - name: "main_fax_number"
219
+ type: string
220
+ description: "Main office fax number as published by the firm. Derived from the MainAddr FaxNb attribute on the <Firm> element; often missing"
221
+ display_name: "Main Fax Number"
222
+ mergeability: not_mergeable
223
+ domain_flavors: ["organization"]
224
+ examples: ["716-568-8791"]
225
+ passive: true
226
+
227
+ - name: "website"
228
+ type: string
229
+ description: "Primary website URL of the institution, derived from the WEBADDR field; omitted when blank"
230
+ display_name: "Website"
231
+ mergeability: not_mergeable
232
+ domain_flavors: ["organization"]
233
+ examples: ["http://www.rabenoldadvisors.com", "https://www.mkcapital.com/"]
234
+ passive: true
235
+
236
+ # --- Organization Form ---
237
+
238
+ - name: "organization_form"
239
+ type: string
240
+ description: "Legal organization form of the firm as reported on Form ADV Item 3A. Derived from the Item3A OrgFormNm attribute"
241
+ display_name: "Organization Form"
242
+ mergeability: not_mergeable
243
+ domain_flavors: ["organization"]
244
+ examples: ["Corporation", "Limited Partnership", "Limited Liability Company", "Sole Proprietorship"]
245
+ passive: true
246
+
247
+ - name: "fiscal_year_end_month"
248
+ type: string
249
+ description: "Month in which the firm's fiscal year ends, as reported on Form ADV Item 3B. Derived from the Item3B Q3B attribute"
250
+ display_name: "Fiscal Year End Month"
251
+ mergeability: not_mergeable
252
+ domain_flavors: ["organization"]
253
+ examples: ["DECEMBER", "JUNE"]
254
+ passive: true
255
+
256
+ - name: "state_of_formation"
257
+ type: string
258
+ description: "US state (2-letter code) or non-US country in which the firm was organized, as reported on Form ADV Item 3C. Derived from Item3C StateCD when inside the US, otherwise CntryNm"
259
+ display_name: "State of Formation"
260
+ mergeability: not_mergeable
261
+ domain_flavors: ["organization"]
262
+ examples: ["NY", "DE", "IL"]
263
+ passive: true
264
+
265
+ - name: "country_of_formation"
266
+ type: string
267
+ description: "Country in which the firm was organized, as reported on Form ADV Item 3C. Derived from the Item3C CntryNm attribute"
268
+ display_name: "Country of Formation"
269
+ mergeability: not_mergeable
270
+ domain_flavors: ["organization"]
271
+ examples: ["United States", "Cayman Islands"]
272
+ passive: true
273
+
274
+ # --- Employees and Clients ---
275
+
276
+ - name: "total_employees"
277
+ type: float
278
+ description: "Total number of employees worldwide as of the firm's most recent fiscal year-end; from Form ADV Item 5A. Derived from the Item5A TtlEmp attribute"
279
+ display_name: "Total Employees"
280
+ mergeability: not_mergeable
281
+ domain_flavors: ["organization"]
282
+ passive: true
283
+
284
+ - name: "employees_providing_investment_advice"
285
+ type: float
286
+ description: "Number of employees who perform investment-advisory functions including research; from Form ADV Item 5B(1). Derived from the Item5B Q5B1 attribute"
287
+ display_name: "Employees Providing Investment Advice"
288
+ mergeability: not_mergeable
289
+ domain_flavors: ["organization"]
290
+ passive: true
291
+
292
+ - name: "client_count_band"
293
+ type: string
294
+ description: "Coarse band for the firm's total number of advisory clients; the SEC publishes a band rather than an exact count for privacy. From Form ADV Item 5H. Derived from the Item5H Q5H attribute"
295
+ display_name: "Client Count Band"
296
+ mergeability: not_mergeable
297
+ domain_flavors: ["organization"]
298
+ examples: ["0", "1-10", "11-25", "26-100", "51-100", "101-250", "251-500", "More than 500"]
299
+ passive: true
300
+
301
+ # --- Assets Under Management ---
302
+
303
+ - name: "assets_under_management"
304
+ type: float
305
+ description: "Total regulatory assets under management (RAUM) reported on Form ADV Item 5F(2)(c), in USD; the sum of discretionary and non-discretionary RAUM. Derived from the Item5F Q5F2C attribute"
306
+ display_name: "Assets Under Management"
307
+ mergeability: not_mergeable
308
+ domain_flavors: ["organization"]
309
+ passive: true
310
+
311
+ - name: "discretionary_assets_under_management"
312
+ type: float
313
+ description: "Regulatory assets under management for which the firm has discretionary authority, in USD; from Form ADV Item 5F(2)(a). Derived from the Item5F Q5F2A attribute"
314
+ display_name: "Discretionary Assets Under Management"
315
+ mergeability: not_mergeable
316
+ domain_flavors: ["organization"]
317
+ passive: true
318
+
319
+ - name: "non_discretionary_assets_under_management"
320
+ type: float
321
+ description: "Regulatory assets under management for which the firm advises without discretionary authority, in USD; from Form ADV Item 5F(2)(b). Derived from the Item5F Q5F2B attribute"
322
+ display_name: "Non-Discretionary Assets Under Management"
323
+ mergeability: not_mergeable
324
+ domain_flavors: ["organization"]
325
+ passive: true
326
+
327
+ - name: "non_us_assets_under_management"
328
+ type: float
329
+ description: "Portion of regulatory assets under management attributable to non-US clients, in USD; from Form ADV Item 5F(3). Derived from the Item5F Q5F3 attribute"
330
+ display_name: "Non-US Assets Under Management"
331
+ mergeability: not_mergeable
332
+ domain_flavors: ["organization"]
333
+ passive: true
334
+
335
+ - name: "discretionary_account_count"
336
+ type: float
337
+ description: "Number of discretionary advisory accounts; from Form ADV Item 5F(2)(d). Derived from the Item5F Q5F2D attribute"
338
+ display_name: "Discretionary Account Count"
339
+ mergeability: not_mergeable
340
+ domain_flavors: ["organization"]
341
+ passive: true
342
+
343
+ - name: "non_discretionary_account_count"
344
+ type: float
345
+ description: "Number of non-discretionary advisory accounts; from Form ADV Item 5F(2)(e). Derived from the Item5F Q5F2E attribute"
346
+ display_name: "Non-Discretionary Account Count"
347
+ mergeability: not_mergeable
348
+ domain_flavors: ["organization"]
349
+ passive: true
350
+
351
+ - name: "total_account_count"
352
+ type: float
353
+ description: "Total number of advisory accounts; from Form ADV Item 5F(2)(f). Derived from the Item5F Q5F2F attribute"
354
+ display_name: "Total Account Count"
355
+ mergeability: not_mergeable
356
+ domain_flavors: ["organization"]
357
+ passive: true
358
+
359
+ # --- Advisory Services (emitted only when firm answered Y on Form ADV Item 5G) ---
360
+
361
+ - name: "provides_financial_planning_services"
362
+ type: string
363
+ description: "String-encoded boolean (\"true\") indicating that the firm provides financial planning services; from Form ADV Item 5G(1). The atom is emitted ONLY when the firm answered Y (i.e. value is always \"true\" when present); an absent atom means the firm answered N or left it blank. Derived from the Item5G Q5G1 attribute"
364
+ display_name: "Provides Financial Planning Services"
365
+ mergeability: not_mergeable
366
+ domain_flavors: ["organization"]
367
+ examples: ["true"]
368
+ passive: true
369
+
370
+ - name: "provides_individual_portfolio_management"
371
+ type: string
372
+ description: "String-encoded boolean (\"true\") indicating that the firm manages portfolios for individuals (other than high-net-worth individuals); from Form ADV Item 5G(2). Emitted only when true. Derived from the Item5G Q5G2 attribute"
373
+ display_name: "Provides Individual Portfolio Management"
374
+ mergeability: not_mergeable
375
+ domain_flavors: ["organization"]
376
+ examples: ["true"]
377
+ passive: true
378
+
379
+ - name: "provides_institutional_portfolio_management"
380
+ type: string
381
+ description: "String-encoded boolean (\"true\") indicating that the firm manages portfolios for institutional clients; from Form ADV Item 5G(5). Emitted only when true. Derived from the Item5G Q5G5 attribute"
382
+ display_name: "Provides Institutional Portfolio Management"
383
+ mergeability: not_mergeable
384
+ domain_flavors: ["organization"]
385
+ examples: ["true"]
386
+ passive: true
387
+
388
+ - name: "provides_pooled_vehicle_portfolio_management"
389
+ type: string
390
+ description: "String-encoded boolean (\"true\") indicating that the firm manages portfolios for pooled investment vehicles (registered investment companies and/or unregistered pooled vehicles such as hedge funds); from Form ADV Items 5G(3) and 5G(4). Emitted only when true on either subitem. Derived from the Item5G Q5G3 or Q5G4 attribute"
391
+ display_name: "Provides Pooled Vehicle Portfolio Management"
392
+ mergeability: not_mergeable
393
+ domain_flavors: ["organization"]
394
+ examples: ["true"]
395
+ passive: true
396
+
397
+ - name: "provides_pension_consulting_services"
398
+ type: string
399
+ description: "String-encoded boolean (\"true\") indicating that the firm provides pension consulting services; from Form ADV Item 5G(8). Emitted only when true. Derived from the Item5G Q5G8 attribute"
400
+ display_name: "Provides Pension Consulting Services"
401
+ mergeability: not_mergeable
402
+ domain_flavors: ["organization"]
403
+ examples: ["true"]
404
+ passive: true
405
+
406
+ - name: "provides_selection_of_other_advisers"
407
+ type: string
408
+ description: "String-encoded boolean (\"true\") indicating that the firm selects other investment advisers on behalf of its clients (including via wrap programs); from Form ADV Item 5G(9). Emitted only when true. Derived from the Item5G Q5G9 attribute"
409
+ display_name: "Provides Selection of Other Advisers"
410
+ mergeability: not_mergeable
411
+ domain_flavors: ["organization"]
412
+ examples: ["true"]
413
+ passive: true
414
+
415
+ - name: "provides_market_timing_services"
416
+ type: string
417
+ description: "String-encoded boolean (\"true\") indicating that the firm offers market-timing services; from Form ADV Item 5G(10). Emitted only when true. Derived from the Item5G Q5G10 attribute"
418
+ display_name: "Provides Market Timing Services"
419
+ mergeability: not_mergeable
420
+ domain_flavors: ["organization"]
421
+ examples: ["true"]
422
+ passive: true
423
+
424
+ - name: "provides_security_ratings_services"
425
+ type: string
426
+ description: "String-encoded boolean (\"true\") indicating that the firm provides securities ratings or pricing services; from Form ADV Item 5G(11). Emitted only when true. Derived from the Item5G Q5G11 attribute"
427
+ display_name: "Provides Security Ratings Services"
428
+ mergeability: not_mergeable
429
+ domain_flavors: ["organization"]
430
+ examples: ["true"]
431
+ passive: true
432
+
433
+ - name: "provides_other_advisory_services"
434
+ type: string
435
+ description: "String-encoded boolean (\"true\") indicating that the firm provides other advisory services not specifically enumerated on Form ADV Item 5G; from Item 5G(12). Emitted only when true. Derived from the Item5G Q5G12 attribute. The free-form description (when present) is captured in the other_advisory_services_description property"
436
+ display_name: "Provides Other Advisory Services"
437
+ mergeability: not_mergeable
438
+ domain_flavors: ["organization"]
439
+ examples: ["true"]
440
+ passive: true
441
+
442
+ - name: "other_advisory_services_description"
443
+ type: string
444
+ description: "Free-text description of the \"other\" advisory services the firm offers when provides_other_advisory_services is true; from Form ADV Item 5G(12) freeform field. Derived from the Item5G Q5G12Oth attribute"
445
+ display_name: "Other Advisory Services Description"
446
+ mergeability: not_mergeable
447
+ domain_flavors: ["organization"]
448
+ examples: ["NEGOTIATED FINANCIAL PLANNING FEE", "INVESTMENT RESEARCH AND SECURITIES ANALYSIS"]
449
+ passive: true
450
+
451
+ # --- Wrap Fee Programs ---
452
+
453
+ - name: "is_wrap_fee_program_sponsor"
454
+ type: string
455
+ description: "String-encoded boolean (\"true\"/\"false\") indicating whether the firm sponsors a wrap fee program (a program that bundles advisory, brokerage, custody, and other services for a single fee); from Form ADV Item 5I(1). Derived from the Item5I Q5I1 attribute"
456
+ display_name: "Wrap Fee Program Sponsor"
457
+ mergeability: not_mergeable
458
+ domain_flavors: ["organization"]
459
+ examples: ["true", "false"]
460
+ passive: true
461
+
462
+ - name: "wrap_fee_sponsor_assets"
463
+ type: float
464
+ description: "Total assets in wrap fee programs the firm sponsors, in USD; from Form ADV Item 5I(2)(a). Derived from the Item5I Q5I2A attribute"
465
+ display_name: "Wrap Fee Sponsor Assets"
466
+ mergeability: not_mergeable
467
+ domain_flavors: ["organization"]
468
+ passive: true
469
+
470
+ - name: "wrap_fee_portfolio_assets"
471
+ type: float
472
+ description: "Total assets in wrap fee programs for which the firm acts as portfolio manager, in USD; from Form ADV Item 5I(2)(b). Derived from the Item5I Q5I2B attribute"
473
+ display_name: "Wrap Fee Portfolio Assets"
474
+ mergeability: not_mergeable
475
+ domain_flavors: ["organization"]
476
+ passive: true
477
+
478
+ # --- Disciplinary Disclosures (rollups only; per-item DRP detail not in bulk feed) ---
479
+
480
+ - name: "has_disciplinary_disclosure"
481
+ type: string
482
+ description: "String-encoded boolean rollup (\"true\"/\"false\") indicating that the firm or any of its advisory affiliates has answered Yes to at least one question in Form ADV Item 11 (criminal, regulatory, civil, or bankruptcy). False means clean across all Item 11 subquestions. Derived from the Item11 Q11 attribute"
483
+ display_name: "Has Disciplinary Disclosure"
484
+ mergeability: not_mergeable
485
+ domain_flavors: ["organization"]
486
+ examples: ["true", "false"]
487
+ passive: true
488
+
489
+ - name: "has_criminal_disclosure"
490
+ type: string
491
+ description: "String-encoded boolean rollup (\"true\"/\"false\") of Form ADV Item 11A indicating whether the firm or an advisory affiliate has a criminal conviction or pending criminal charge. Derived from logical-OR of the Item11A Q11A1 and Q11A2 attributes"
492
+ display_name: "Has Criminal Disclosure"
493
+ mergeability: not_mergeable
494
+ domain_flavors: ["organization"]
495
+ examples: ["true", "false"]
496
+ passive: true
497
+
498
+ - name: "has_regulatory_action_disclosure"
499
+ type: string
500
+ description: "String-encoded boolean rollup (\"true\"/\"false\") of Form ADV Items 11B-11E indicating whether the firm or an advisory affiliate has been the subject of any regulatory action by the SEC, CFTC, another federal regulator, a state regulator, a foreign regulator, or a self-regulatory organization. Derived from logical-OR of all Q11B*/Q11C*/Q11D*/Q11E* attributes"
501
+ display_name: "Has Regulatory Action Disclosure"
502
+ mergeability: not_mergeable
503
+ domain_flavors: ["organization"]
504
+ examples: ["true", "false"]
505
+ passive: true
506
+
507
+ relationships:
508
+ - name: "is_located_at"
509
+ description: "An entity is located at, operates in, resides in, is headquartered in, was born in, visits, or died in a location"
510
+ display_name: "Located At"
511
+ mergeability: not_mergeable
512
+ domain_flavors: ["organization"]
513
+ target_flavors: ["location"]
514
+ examples: ["Rabenold Advisors, Inc. is located at Williamsville, NY"]
515
+ passive: true