datamule 2.0.4__py3-none-any.whl → 2.0.6__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.
- datamule/datamule/datamule_mysql_rds.py +22 -2
- datamule/document/document.py +33 -18
- datamule/document/tables/tables.py +129 -0
- datamule/document/{mappings/thirteenfhr.py → tables/tables_13fhr.py} +8 -4
- datamule/document/{mappings/twentyfivense.py → tables/tables_25nse.py} +7 -2
- datamule/document/{mappings/information_table.py → tables/tables_informationtable.py} +7 -3
- datamule/document/{mappings/npx.py → tables/tables_npx.py} +7 -0
- datamule/document/{mappings/ownership.py → tables/tables_ownership.py} +37 -9
- datamule/document/{mappings/proxy_voting_record.py → tables/tables_proxyvotingrecord.py} +7 -0
- datamule/document/{mappings/sbsef.py → tables/tables_sbsef.py} +7 -0
- datamule/document/{mappings/sdr.py → tables/tables_sdr.py} +7 -0
- datamule/document/tables/utils.py +26 -0
- datamule/submission.py +47 -12
- {datamule-2.0.4.dist-info → datamule-2.0.6.dist-info}/METADATA +1 -1
- {datamule-2.0.4.dist-info → datamule-2.0.6.dist-info}/RECORD +18 -33
- datamule/document/mappings/atsn.py +0 -208
- datamule/document/mappings/cfportal.py +0 -346
- datamule/document/mappings/d.py +0 -125
- datamule/document/mappings/ex102_abs.py +0 -63
- datamule/document/mappings/ex99a_sdr.py +0 -1
- datamule/document/mappings/ex99c_sdr.py +0 -0
- datamule/document/mappings/ex99g_sdr.py +0 -0
- datamule/document/mappings/ex99i_sdr.py +0 -0
- datamule/document/mappings/nmfp.py +0 -275
- datamule/document/mappings/onefourtyfour.py +0 -68
- datamule/document/mappings/sbs.py +0 -0
- datamule/document/mappings/schedule13.py +0 -117
- datamule/document/mappings/submission_metadata.py +0 -9
- datamule/document/mappings/ta.py +0 -0
- datamule/document/mappings/twentyfourf2nt.py +0 -100
- datamule/document/processing.py +0 -732
- datamule/document/table.py +0 -315
- /datamule/document/{mappings → tables}/__init__.py +0 -0
- {datamule-2.0.4.dist-info → datamule-2.0.6.dist-info}/WHEEL +0 -0
- {datamule-2.0.4.dist-info → datamule-2.0.6.dist-info}/top_level.txt +0 -0
@@ -1,346 +0,0 @@
|
|
1
|
-
# CFPORTAL Metadata mapping
|
2
|
-
metadata_cfportal_dict = {
|
3
|
-
'filerInfo_filer_fileNumber': 'fileNumber',
|
4
|
-
'filerInfo_filer_filerCredentials_filerCcc': 'filerCcc',
|
5
|
-
'filerInfo_filer_filerCredentials_filerCik': 'filerCik',
|
6
|
-
'filerInfo_flags_overrideInternetFlag': 'overrideInternetFlag',
|
7
|
-
'filerInfo_flags_returnCopyFlag': 'returnCopyFlag',
|
8
|
-
'submissionType': 'submissionType'
|
9
|
-
}
|
10
|
-
|
11
|
-
# CFPORTAL Identifying Information mapping
|
12
|
-
identifying_information_cfportal_dict = {
|
13
|
-
'amendmentExplanation': 'amendmentExplanation',
|
14
|
-
'anyForeignRegistrations': 'anyForeignRegistrations',
|
15
|
-
'anyPreviousRegistrations': 'anyPreviousRegistrations',
|
16
|
-
'contactEmployeeName_firstName': 'contactFirstName',
|
17
|
-
'contactEmployeeName_lastName': 'contactLastName',
|
18
|
-
'contactEmployeeName_middleName': 'contactMiddleName',
|
19
|
-
'contactEmployeeName_prefix': 'contactPrefix',
|
20
|
-
'contactEmployeeName_suffix': 'contactSuffix',
|
21
|
-
'contactEmployeeTitle': 'contactTitle',
|
22
|
-
'fiscalYearEnd': 'fiscalYearEnd',
|
23
|
-
'irsEmployerIdNumber': 'irsEmployerIdNumber',
|
24
|
-
'legalNameChange': 'legalNameChange',
|
25
|
-
'mailingAddressDifferent': 'mailingAddressDifferent',
|
26
|
-
'nameOfPortal': 'nameOfPortal',
|
27
|
-
'otherNamesAndWebsiteUrls': 'otherNamesAndWebsiteUrls',
|
28
|
-
'otherNamesAndWebsiteUrls_otherNamesUsedPortal': 'otherNamesUsedPortal',
|
29
|
-
'otherNamesAndWebsiteUrls_webSiteOfPortal': 'websiteOfPortal',
|
30
|
-
'otherOfficeLocationAddress_city': 'otherOfficeCity',
|
31
|
-
'otherOfficeLocationAddress_stateOrCountry': 'otherOfficeStateOrCountry',
|
32
|
-
'otherOfficeLocationAddress_street1': 'otherOfficeStreet1',
|
33
|
-
'otherOfficeLocationAddress_street2': 'otherOfficeStreet2',
|
34
|
-
'otherOfficeLocationAddress_zipCode': 'otherOfficeZipCode',
|
35
|
-
'portalAddress_city': 'portalCity',
|
36
|
-
'portalAddress_stateOrCountry': 'portalStateOrCountry',
|
37
|
-
'portalAddress_street1': 'portalStreet1',
|
38
|
-
'portalAddress_street2': 'portalStreet2',
|
39
|
-
'portalAddress_zipCode': 'portalZipCode',
|
40
|
-
'portalContact_portalContactEmail': 'portalContactEmail',
|
41
|
-
'portalContact_portalContactFax': 'portalContactFax',
|
42
|
-
'portalContact_portalContactPhone': 'portalContactPhone',
|
43
|
-
'portalMailingAddress_city': 'portalMailingCity',
|
44
|
-
'portalMailingAddress_stateOrCountry': 'portalMailingStateOrCountry',
|
45
|
-
'portalMailingAddress_street1': 'portalMailingStreet1',
|
46
|
-
'portalMailingAddress_street2': 'portalMailingStreet2',
|
47
|
-
'portalMailingAddress_zipCode': 'portalMailingZipCode',
|
48
|
-
'prevNamesAndWebsiteUrls': 'prevNamesAndWebsiteUrls',
|
49
|
-
'prevNamesAndWebsiteUrls_prevNamesOfPortal': 'prevNamesOfPortal',
|
50
|
-
'prevNamesAndWebsiteUrls_prevWebSiteUrls': 'prevWebsiteUrls',
|
51
|
-
'secFileNumbers': 'secFileNumbers'
|
52
|
-
}
|
53
|
-
|
54
|
-
# CFPORTAL Form of Organization mapping
|
55
|
-
form_of_organization_cfportal_dict = {
|
56
|
-
'dateIncorporation': 'dateIncorporation',
|
57
|
-
'jurisdictionOrganization': 'jurisdictionOrganization',
|
58
|
-
'legalStatusForm': 'legalStatusForm',
|
59
|
-
'legalStatusOtherDesc': 'legalStatusOtherDescription'
|
60
|
-
}
|
61
|
-
|
62
|
-
# CFPORTAL Successions mapping
|
63
|
-
successions_cfportal_dict = {
|
64
|
-
'acquiredHistoryDetails_acquiredDesc': 'acquiredDescription',
|
65
|
-
'acquiredHistoryDetails_acquiredFundingPortal': 'acquiredFundingPortal',
|
66
|
-
'acquiredHistoryDetails_acquiredPortalFileNumber': 'acquiredPortalFileNumber',
|
67
|
-
'isSucceedingBusiness': 'isSucceedingBusiness'
|
68
|
-
}
|
69
|
-
|
70
|
-
# CFPORTAL Control Relationships mapping
|
71
|
-
control_relationships_cfportal_dict = {
|
72
|
-
'fullLegalNames': 'fullLegalNames',
|
73
|
-
'fullLegalNames_fullLegalName': 'fullLegalName'
|
74
|
-
}
|
75
|
-
|
76
|
-
# CFPORTAL Disclosure Answers mapping
|
77
|
-
disclosure_answers_cfportal_dict = {
|
78
|
-
'civilJudicialActionDisclosure_isDismissed': 'civilJudicialIsDismissed',
|
79
|
-
'civilJudicialActionDisclosure_isEnjoined': 'civilJudicialIsEnjoined',
|
80
|
-
'civilJudicialActionDisclosure_isFoundInViolationOfRegulation': 'civilJudicialIsFoundInViolationOfRegulation',
|
81
|
-
'civilJudicialActionDisclosure_isNamedInCivilProceeding': 'civilJudicialIsNamedInCivilProceeding',
|
82
|
-
'criminalDisclosure_isChargedMisdemeanor': 'criminalIsChargedMisdemeanor',
|
83
|
-
'criminalDisclosure_isChargedWithFelony': 'criminalIsChargedWithFelony',
|
84
|
-
'criminalDisclosure_isConvictedMisdemeanor': 'criminalIsConvictedMisdemeanor',
|
85
|
-
'criminalDisclosure_isConvictedOfFelony': 'criminalIsConvictedOfFelony',
|
86
|
-
'financialDisclosure_doesAppHaveLiens': 'financialDoesApplicantHaveLiens',
|
87
|
-
'financialDisclosure_hasBondDenied': 'financialHasBondDenied',
|
88
|
-
'financialDisclosure_hasSubjectOfBankruptcy': 'financialHasSubjectOfBankruptcy',
|
89
|
-
'financialDisclosure_hasTrusteeAppointed': 'financialHasTrusteeAppointed',
|
90
|
-
'regulatoryActionDisclosure_isAuthorizedToActAttorney': 'regulatoryIsAuthorizedToActAttorney',
|
91
|
-
'regulatoryActionDisclosure_isCauseOfDenial': 'regulatoryIsCauseOfDenial',
|
92
|
-
'regulatoryActionDisclosure_isDeniedLicense': 'regulatoryIsDeniedLicense',
|
93
|
-
'regulatoryActionDisclosure_isDisciplined': 'regulatoryIsDisciplined',
|
94
|
-
'regulatoryActionDisclosure_isFoundInCauseOfDenial': 'regulatoryIsFoundInCauseOfDenial',
|
95
|
-
'regulatoryActionDisclosure_isFoundInCauseOfSuspension': 'regulatoryIsFoundInCauseOfSuspension',
|
96
|
-
'regulatoryActionDisclosure_isFoundInViolationOfRegulation': 'regulatoryIsFoundInViolationOfRegulation',
|
97
|
-
'regulatoryActionDisclosure_isFoundInViolationOfRules': 'regulatoryIsFoundInViolationOfRules',
|
98
|
-
'regulatoryActionDisclosure_isFoundMadeFalseStatement': 'regulatoryIsFoundMadeFalseStatement',
|
99
|
-
'regulatoryActionDisclosure_isImposedPenalty': 'regulatoryIsImposedPenalty',
|
100
|
-
'regulatoryActionDisclosure_isMadeFalseStatement': 'regulatoryIsMadeFalseStatement',
|
101
|
-
'regulatoryActionDisclosure_isOrderAgainst': 'regulatoryIsOrderAgainst',
|
102
|
-
'regulatoryActionDisclosure_isOrderAgainstActivity': 'regulatoryIsOrderAgainstActivity',
|
103
|
-
'regulatoryActionDisclosure_isRegulatoryComplaint': 'regulatoryIsRegulatoryComplaint',
|
104
|
-
'regulatoryActionDisclosure_isUnEthical': 'regulatoryIsUnethical',
|
105
|
-
'regulatoryActionDisclosure_isViolatedRegulation': 'regulatoryIsViolatedRegulation'
|
106
|
-
}
|
107
|
-
|
108
|
-
# CFPORTAL Non-Securities Related Business mapping
|
109
|
-
non_securities_related_business_cfportal_dict = {
|
110
|
-
'isEngagedInNonSecurities': 'isEngagedInNonSecurities',
|
111
|
-
'nonSecuritiesBusinessDesc': 'nonSecuritiesBusinessDescription'
|
112
|
-
}
|
113
|
-
|
114
|
-
# CFPORTAL Escrow Arrangements mapping
|
115
|
-
escrow_arrangements_cfportal_dict = {
|
116
|
-
'compensationDesc': 'compensationDescription',
|
117
|
-
'investorFundsContacts': 'investorFundsContacts',
|
118
|
-
'investorFundsContacts_investorFundsAddress_city': 'investorFundsCity',
|
119
|
-
'investorFundsContacts_investorFundsAddress_stateOrCountry': 'investorFundsStateOrCountry',
|
120
|
-
'investorFundsContacts_investorFundsAddress_street1': 'investorFundsStreet1',
|
121
|
-
'investorFundsContacts_investorFundsAddress_street2': 'investorFundsStreet2',
|
122
|
-
'investorFundsContacts_investorFundsAddress_zipCode': 'investorFundsZipCode',
|
123
|
-
'investorFundsContacts_investorFundsContactName': 'investorFundsContactName',
|
124
|
-
'investorFundsContacts_investorFundsContactPhone': 'investorFundsContactPhone'
|
125
|
-
}
|
126
|
-
|
127
|
-
# CFPORTAL Execution mapping
|
128
|
-
execution_cfportal_dict = {
|
129
|
-
'executionDate': 'executionDate',
|
130
|
-
'fullLegalNameFundingPortal': 'fullLegalNameFundingPortal',
|
131
|
-
'personSignature': 'personSignature',
|
132
|
-
'personTitle': 'personTitle'
|
133
|
-
}
|
134
|
-
|
135
|
-
# CFPORTAL Schedule A mapping
|
136
|
-
schedule_a_cfportal_dict = {
|
137
|
-
'entityOrNaturalPerson': 'entityOrNaturalPerson',
|
138
|
-
'entityOrNaturalPerson_controlPerson': 'controlPerson',
|
139
|
-
'entityOrNaturalPerson_crdNumber': 'crdNumber',
|
140
|
-
'entityOrNaturalPerson_dateOfTitleStatusAcquired': 'dateOfTitleStatusAcquired',
|
141
|
-
'entityOrNaturalPerson_entityType': 'entityType',
|
142
|
-
'entityOrNaturalPerson_fullLegalName': 'fullLegalName',
|
143
|
-
'entityOrNaturalPerson_ownershipCode': 'ownershipCode',
|
144
|
-
'entityOrNaturalPerson_titleStatus': 'titleStatus'
|
145
|
-
}
|
146
|
-
|
147
|
-
# CFPORTAL Schedule B mapping
|
148
|
-
schedule_b_cfportal_dict = {
|
149
|
-
'amendEntityOrNaturalPerson': 'amendEntityOrNaturalPerson',
|
150
|
-
'amendEntityOrNaturalPerson_controlPerson': 'amendControlPerson',
|
151
|
-
'amendEntityOrNaturalPerson_crdNumber': 'amendCrdNumber',
|
152
|
-
'amendEntityOrNaturalPerson_dateOfTitleStatusAcquired': 'amendDateOfTitleStatusAcquired',
|
153
|
-
'amendEntityOrNaturalPerson_entityType': 'amendEntityType',
|
154
|
-
'amendEntityOrNaturalPerson_fullLegalName': 'amendFullLegalName',
|
155
|
-
'amendEntityOrNaturalPerson_ownershipCode': 'amendOwnershipCode',
|
156
|
-
'amendEntityOrNaturalPerson_titleStatus': 'amendTitleStatus',
|
157
|
-
'amendEntityOrNaturalPerson_typeOfAmendment': 'typeOfAmendment'
|
158
|
-
}
|
159
|
-
|
160
|
-
# CFPORTAL Schedule C mapping
|
161
|
-
schedule_c_cfportal_dict = {
|
162
|
-
'agentAddress_city': 'agentCity',
|
163
|
-
'agentAddress_stateOrCountry': 'agentStateOrCountry',
|
164
|
-
'agentAddress_street1': 'agentStreet1',
|
165
|
-
'agentAddress_street2': 'agentStreet2',
|
166
|
-
'agentAddress_zipCode': 'agentZipCode',
|
167
|
-
'agentName': 'agentName',
|
168
|
-
'personSignature': 'personSignature',
|
169
|
-
'personTitle': 'personTitle',
|
170
|
-
'printedName': 'printedName',
|
171
|
-
'signatureDate': 'signatureDate'
|
172
|
-
}
|
173
|
-
|
174
|
-
# CFPORTAL Schedule D mapping
|
175
|
-
schedule_d_cfportal_dict = {
|
176
|
-
'bookKeepingDetails': 'bookKeepingDetails',
|
177
|
-
'bookKeepingDetails_bookKeepingEntityAddress_city': 'bookKeepingEntityCity',
|
178
|
-
'bookKeepingDetails_bookKeepingEntityAddress_stateOrCountry': 'bookKeepingEntityStateOrCountry',
|
179
|
-
'bookKeepingDetails_bookKeepingEntityAddress_street1': 'bookKeepingEntityStreet1',
|
180
|
-
'bookKeepingDetails_bookKeepingEntityAddress_street2': 'bookKeepingEntityStreet2',
|
181
|
-
'bookKeepingDetails_bookKeepingEntityAddress_zipCode': 'bookKeepingEntityZipCode',
|
182
|
-
'bookKeepingDetails_bookKeepingEntityFax': 'bookKeepingEntityFax',
|
183
|
-
'bookKeepingDetails_bookKeepingEntityName': 'bookKeepingEntityName',
|
184
|
-
'bookKeepingDetails_bookKeepingEntityPhone': 'bookKeepingEntityPhone',
|
185
|
-
'bookKeepingDetails_bookKeepingEntityType': 'bookKeepingEntityType',
|
186
|
-
'bookKeepingDetails_bookKeepingLocationDesc': 'bookKeepingLocationDescription',
|
187
|
-
'bookKeepingDetails_isAddressPrivateResidence': 'isAddressPrivateResidence',
|
188
|
-
'dateBusinessCeasedWithdrawn': 'dateBusinessCeasedWithdrawn',
|
189
|
-
'investorInitiatedComplaint': 'investorInitiatedComplaint',
|
190
|
-
'isInvestigated': 'isInvestigated',
|
191
|
-
'privateCivilLitigation': 'privateCivilLitigation'
|
192
|
-
}
|
193
|
-
|
194
|
-
# CFPORTAL Criminal DRP Info mapping
|
195
|
-
criminal_drip_info_cfportal_dict = {
|
196
|
-
'criminalDrp_applicant_criminalDrpDetails_anyChargeFelony': 'applicantAnyChargeFelony',
|
197
|
-
'criminalDrp_applicant_criminalDrpDetails_courtAddress_city': 'applicantCourtCity',
|
198
|
-
'criminalDrp_applicant_criminalDrpDetails_courtAddress_stateOrCountry': 'applicantCourtStateOrCountry',
|
199
|
-
'criminalDrp_applicant_criminalDrpDetails_courtAddress_street1': 'applicantCourtStreet1',
|
200
|
-
'criminalDrp_applicant_criminalDrpDetails_courtAddress_zipCode': 'applicantCourtZipCode',
|
201
|
-
'criminalDrp_applicant_criminalDrpDetails_courtType': 'applicantCourtType',
|
202
|
-
'criminalDrp_applicant_criminalDrpDetails_criminalCharge': 'applicantCriminalCharge',
|
203
|
-
'criminalDrp_applicant_criminalDrpDetails_dateFirstCharged_date': 'applicantDateFirstCharged',
|
204
|
-
'criminalDrp_applicant_criminalDrpDetails_dateFirstCharged_exactOrExplanation': 'applicantDateFirstChargedExactOrExplanation',
|
205
|
-
'criminalDrp_applicant_criminalDrpDetails_docketOrCaseNumber': 'applicantDocketOrCaseNumber',
|
206
|
-
'criminalDrp_applicant_criminalDrpDetails_eventCurrentStatus': 'applicantEventCurrentStatus',
|
207
|
-
'criminalDrp_applicant_criminalDrpDetails_eventStatusDate_date': 'applicantEventStatusDate',
|
208
|
-
'criminalDrp_applicant_criminalDrpDetails_eventStatusDate_exactOrExplanation': 'applicantEventStatusDateExactOrExplanation',
|
209
|
-
'criminalDrp_applicant_criminalDrpDetails_nameOfCourt': 'applicantNameOfCourt',
|
210
|
-
'criminalDrp_applicant_dispositionDisclosure_datePaid': 'applicantDatePaid',
|
211
|
-
'criminalDrp_applicant_dispositionDisclosure_dispositionDate': 'applicantDispositionDate',
|
212
|
-
'criminalDrp_applicant_dispositionDisclosure_dispositionTypes': 'applicantDispositionTypes',
|
213
|
-
'criminalDrp_applicant_dispositionDisclosure_duration_months': 'applicantDurationMonths',
|
214
|
-
'criminalDrp_applicant_dispositionDisclosure_penaltyFineAmount': 'applicantPenaltyFineAmount',
|
215
|
-
'criminalDrp_applicant_dispositionDisclosure_sentencePenalty': 'applicantSentencePenalty',
|
216
|
-
'criminalDrp_applicant_summaryOfCircumstances': 'applicantSummaryOfCircumstances',
|
217
|
-
'criminalDrp_associatedPerson_associatedPersonDetails_fullName': 'associatedPersonFullName',
|
218
|
-
'criminalDrp_associatedPerson_associatedPersonDetails_personRegistered': 'associatedPersonRegistered',
|
219
|
-
'criminalDrp_associatedPerson_associatedPersonDetails_personType': 'associatedPersonType',
|
220
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_anyChargeFelony': 'associatedPersonAnyChargeFelony',
|
221
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_courtAddress_city': 'associatedPersonCourtCity',
|
222
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_courtAddress_stateOrCountry': 'associatedPersonCourtStateOrCountry',
|
223
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_courtAddress_street1': 'associatedPersonCourtStreet1',
|
224
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_courtAddress_zipCode': 'associatedPersonCourtZipCode',
|
225
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_courtType': 'associatedPersonCourtType',
|
226
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_criminalCharge': 'associatedPersonCriminalCharge',
|
227
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_dateFirstCharged_date': 'associatedPersonDateFirstCharged',
|
228
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_dateFirstCharged_exactOrExplanation': 'associatedPersonDateFirstChargedExactOrExplanation',
|
229
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_docketOrCaseNumber': 'associatedPersonDocketOrCaseNumber',
|
230
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_eventCurrentStatus': 'associatedPersonEventCurrentStatus',
|
231
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_eventStatusDate_date': 'associatedPersonEventStatusDate',
|
232
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_eventStatusDate_exactOrExplanation': 'associatedPersonEventStatusDateExactOrExplanation',
|
233
|
-
'criminalDrp_associatedPerson_criminalDrpDetails_nameOfCourt': 'associatedPersonNameOfCourt',
|
234
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_datePaid': 'associatedPersonDatePaid',
|
235
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_dispositionDate': 'associatedPersonDispositionDate',
|
236
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_dispositionTypeOtherDesc': 'associatedPersonDispositionTypeOtherDescription',
|
237
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_dispositionTypes': 'associatedPersonDispositionTypes',
|
238
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_duration_months': 'associatedPersonDurationMonths',
|
239
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_penaltyFineAmount': 'associatedPersonPenaltyFineAmount',
|
240
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_sentencePenalty': 'associatedPersonSentencePenalty',
|
241
|
-
'criminalDrp_associatedPerson_dispositionDisclosure_startDatePenalty': 'associatedPersonStartDatePenalty',
|
242
|
-
'criminalDrp_associatedPerson_summaryOfCircumstances': 'associatedPersonSummaryOfCircumstances',
|
243
|
-
'criminalDrp_drpFiledFor': 'drpFiledFor',
|
244
|
-
'criminalDrp_initialOrAmended': 'initialOrAmended',
|
245
|
-
'criminalDrp_respondingTo_responseQuestion': 'responseQuestion'
|
246
|
-
}
|
247
|
-
|
248
|
-
# CFPORTAL Regulatory DRP Info mapping
|
249
|
-
regulatory_drip_info_cfportal_dict = {
|
250
|
-
'regulatoryDrp_applicant_drpRemovalReason': 'applicantDrpRemovalReason',
|
251
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_currentStatus': 'applicantCurrentStatus',
|
252
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_dateInitiated_date': 'applicantDateInitiated',
|
253
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_dateInitiated_exactOrExplanation': 'applicantDateInitiatedExactOrExplanation',
|
254
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_dateInitiated_explanationInfo': 'applicantDateInitiatedExplanationInfo',
|
255
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_descAllegations': 'applicantDescriptionAllegations',
|
256
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_docketOrCaseNumber': 'applicantDocketOrCaseNumber',
|
257
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_matterResolvedType': 'applicantMatterResolvedType',
|
258
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_otherProductDesc': 'applicantOtherProductDescription',
|
259
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_principalProductType': 'applicantPrincipalProductType',
|
260
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_principalProductTypeOtherDesc': 'applicantPrincipalProductTypeOtherDescription',
|
261
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_principalSanction': 'applicantPrincipalSanction',
|
262
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_regulatorName': 'applicantRegulatorName',
|
263
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_regulatoryActionInitiatedBy': 'applicantRegulatoryActionInitiatedBy',
|
264
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_resolutionDateExactExplain_date': 'applicantResolutionDate',
|
265
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_resolutionDateExactExplain_exactOrExplanation': 'applicantResolutionDateExactOrExplanation',
|
266
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_sanctionsOrderedDetails_amountPaid': 'applicantAmountPaid',
|
267
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_sanctionsOrderedDetails_otherSanctions': 'applicantOtherSanctions',
|
268
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_sanctionsOrderedDetails_sanctionsOrdered_sanctionOrdered': 'applicantSanctionOrdered',
|
269
|
-
'regulatoryDrp_applicant_regulatoryDrpDetails_summaryOfDetails': 'applicantSummaryOfDetails',
|
270
|
-
'regulatoryDrp_drpFiledFor': 'drpFiledFor',
|
271
|
-
'regulatoryDrp_initialOrAmended': 'initialOrAmended',
|
272
|
-
'regulatoryDrp_respondingTo_responseQuestion': 'responseQuestion'
|
273
|
-
}
|
274
|
-
|
275
|
-
# CFPORTAL Civil Judicial DRP Info mapping
|
276
|
-
civil_judicial_drip_info_cfportal_dict = {
|
277
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_cityOrCounty': 'applicantCityOrCounty',
|
278
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_civilActionCourtName': 'applicantCivilActionCourtName',
|
279
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_civilActionCourtType': 'applicantCivilActionCourtType',
|
280
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_courtActionInitiatorName': 'applicantCourtActionInitiatorName',
|
281
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_describeCivilActionAllegations': 'applicantDescribeCivilActionAllegations',
|
282
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_docketOrCaseNumber': 'applicantDocketOrCaseNumber',
|
283
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_eventCurrentStatus': 'applicantEventCurrentStatus',
|
284
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_filingDateOfCourtActionExactOrExplain_date': 'applicantFilingDateOfCourtAction',
|
285
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_filingDateOfCourtActionExactOrExplain_exactOrExplanation': 'applicantFilingDateOfCourtActionExactOrExplanation',
|
286
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_grantOrFineAmount': 'applicantGrantOrFineAmount',
|
287
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_matterResolveType': 'applicantMatterResolveType',
|
288
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_otherPrincipalProductType': 'applicantOtherPrincipalProductType',
|
289
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_otherReliefSought': 'applicantOtherReliefSought',
|
290
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_principalProductType': 'applicantPrincipalProductType',
|
291
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_principalReliefSought': 'applicantPrincipalReliefSought',
|
292
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_processingDateCourtActionExactOrExplain_date': 'applicantProcessingDateCourtAction',
|
293
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_processingDateCourtActionExactOrExplain_exactOrExplanation': 'applicantProcessingDateCourtActionExactOrExplanation',
|
294
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_resolutionDateExactOrExplain_date': 'applicantResolutionDate',
|
295
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_resolutionDateExactOrExplain_exactOrExplanation': 'applicantResolutionDateExactOrExplanation',
|
296
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_sanctionDetail': 'applicantSanctionDetail',
|
297
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_sanctionReliefType_sanctionOrdered': 'applicantSanctionOrdered',
|
298
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_stateOrCountry': 'applicantStateOrCountry',
|
299
|
-
'civilJudicialDrp_applicant_civilJudicialDrpDetails_summaryOfCircumstances': 'applicantSummaryOfCircumstances',
|
300
|
-
'civilJudicialDrp_applicant_drpRemovalReason': 'applicantDrpRemovalReason',
|
301
|
-
'civilJudicialDrp_associatedPerson_associatedPersonDetails_crdNumber': 'associatedPersonCrdNumber',
|
302
|
-
'civilJudicialDrp_associatedPerson_associatedPersonDetails_fullName': 'associatedPersonFullName',
|
303
|
-
'civilJudicialDrp_associatedPerson_associatedPersonDetails_personRegistered': 'associatedPersonRegistered',
|
304
|
-
'civilJudicialDrp_associatedPerson_associatedPersonDetails_personType': 'associatedPersonType',
|
305
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_cityOrCounty': 'associatedPersonCityOrCounty',
|
306
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_civilActionCourtName': 'associatedPersonCivilActionCourtName',
|
307
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_civilActionCourtType': 'associatedPersonCivilActionCourtType',
|
308
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_courtActionInitiatorName': 'associatedPersonCourtActionInitiatorName',
|
309
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_describeCivilActionAllegations': 'associatedPersonDescribeCivilActionAllegations',
|
310
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_docketOrCaseNumber': 'associatedPersonDocketOrCaseNumber',
|
311
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_eventCurrentStatus': 'associatedPersonEventCurrentStatus',
|
312
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_filingDateOfCourtActionExactOrExplain_date': 'associatedPersonFilingDateOfCourtAction',
|
313
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_filingDateOfCourtActionExactOrExplain_exactOrExplanation': 'associatedPersonFilingDateOfCourtActionExactOrExplanation',
|
314
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_grantOrFineAmount': 'associatedPersonGrantOrFineAmount',
|
315
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_matterResolveType': 'associatedPersonMatterResolveType',
|
316
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_otherPrincipalProductType': 'associatedPersonOtherPrincipalProductType',
|
317
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_otherReliefSought': 'associatedPersonOtherReliefSought',
|
318
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_principalProductType': 'associatedPersonPrincipalProductType',
|
319
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_principalReliefSought': 'associatedPersonPrincipalReliefSought',
|
320
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_processingDateCourtActionExactOrExplain_date': 'associatedPersonProcessingDateCourtAction',
|
321
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_processingDateCourtActionExactOrExplain_exactOrExplanation': 'associatedPersonProcessingDateCourtActionExactOrExplanation',
|
322
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_resolutionDateExactOrExplain_date': 'associatedPersonResolutionDate',
|
323
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_resolutionDateExactOrExplain_exactOrExplanation': 'associatedPersonResolutionDateExactOrExplanation',
|
324
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_sanctionDetail': 'associatedPersonSanctionDetail',
|
325
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_sanctionReliefType_sanctionOrdered': 'associatedPersonSanctionOrdered',
|
326
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_stateOrCountry': 'associatedPersonStateOrCountry',
|
327
|
-
'civilJudicialDrp_associatedPerson_civilJudicialDrpDetails_summaryOfCircumstances': 'associatedPersonSummaryOfCircumstances',
|
328
|
-
'civilJudicialDrp_drpFiledFor': 'drpFiledFor',
|
329
|
-
'civilJudicialDrp_initialOrAmended': 'initialOrAmended',
|
330
|
-
'civilJudicialDrp_respondingTo_responseQuestion': 'responseQuestion'
|
331
|
-
}
|
332
|
-
|
333
|
-
# CFPORTAL Bankruptcy SIPC DRP Info mapping
|
334
|
-
bankruptcy_sipc_drip_info_cfportal_dict = {
|
335
|
-
'bankruptcyDrp_affiliatePerson_affBankruptcySipcDrpDetails_apCrdNumber': 'affiliatePersonCrdNumber',
|
336
|
-
'bankruptcyDrp_affiliatePerson_affBankruptcySipcDrpDetails_controlAffiliateType': 'affiliatePersonControlAffiliateType',
|
337
|
-
'bankruptcyDrp_affiliatePerson_affBankruptcySipcDrpDetails_isConAffRegisteredCrd': 'isAffiliatePersonRegisteredCrd',
|
338
|
-
'bankruptcyDrp_affiliatePerson_affBankruptcySipcDrpDetails_isRegistered': 'isAffiliatePersonRegistered',
|
339
|
-
'bankruptcyDrp_drpFiledFor': 'drpFiledFor',
|
340
|
-
'bankruptcyDrp_initialOrAmended': 'initialOrAmended',
|
341
|
-
'bankruptcyDrp_respondingTo_responseQuestion': 'responseQuestion'
|
342
|
-
}
|
343
|
-
|
344
|
-
# No submission with this key has been filed yet
|
345
|
-
bond_drip_info_cfportal_dict = {}
|
346
|
-
judgement_drip_info_cfportal_dict = {}
|
datamule/document/mappings/d.py
DELETED
@@ -1,125 +0,0 @@
|
|
1
|
-
issuer_list_d_dict = {
|
2
|
-
'issuer_issuerAddress_street1': 'issuerStreet1',
|
3
|
-
'issuer_cik': 'issuerCik',
|
4
|
-
'issuer_issuerAddress_stateOrCountryDescription': 'issuerStateOrCountryDescription',
|
5
|
-
'issuer_issuerAddress_zipCode': 'issuerZipCode',
|
6
|
-
'issuer_issuerPhoneNumber': 'issuerPhoneNumber',
|
7
|
-
'issuer_yearOfInc_value': 'yearOfIncValue',
|
8
|
-
'issuer_issuerAddress_stateOrCountry': 'issuerStateOrCountry',
|
9
|
-
'issuer_jurisdictionOfInc': 'jurisdictionOfInc',
|
10
|
-
'issuer_entityType': 'entityType',
|
11
|
-
'issuer_issuerAddress_street2': 'issuerStreet2',
|
12
|
-
'issuer_entityName': 'entityName',
|
13
|
-
'accession': 'accession',
|
14
|
-
'issuer_edgarPreviousNameList_value': 'edgarPreviousNameListValue',
|
15
|
-
'issuer_entityTypeOtherDesc': 'entityTypeOtherDesc',
|
16
|
-
'issuer_yearOfInc_yetToBeFormed': 'yearOfIncYetToBeFormed',
|
17
|
-
'issuer_yearOfInc_withinFiveYears': 'yearOfIncWithinFiveYears',
|
18
|
-
'issuer_issuerPreviousNameList_value': 'issuerPreviousNameListValue',
|
19
|
-
'issuer_issuerAddress_city': 'issuerCity'
|
20
|
-
}
|
21
|
-
|
22
|
-
metadata_d_dict = {
|
23
|
-
"testOrLive" : "testOrLive",
|
24
|
-
"schemaVersion" : "schemaVersion",
|
25
|
-
"accession" : "accession",
|
26
|
-
"submissionType" : "submissionType",
|
27
|
-
}
|
28
|
-
offering_data_d_dict = {
|
29
|
-
'salesCompensationList_recipient_foreignSolicitation': 'foreignSolicitation',
|
30
|
-
'typeOfFiling_dateOfFirstSale_yetToOccur': 'dateOfFirstSaleYetToOccur',
|
31
|
-
'industryGroup_investmentFundInfo_is40Act': 'is40Act',
|
32
|
-
'salesCommissionsFindersFees_findersFees_dollarAmount': 'findersFeesAmount',
|
33
|
-
'offeringSalesAmounts_totalRemaining': 'totalRemaining',
|
34
|
-
'issuerSize_aggregateNetAssetValueRange': 'aggregateNetAssetValueRange',
|
35
|
-
'typesOfSecuritiesOffered_isSecurityToBeAcquiredType': 'isSecurityToBeAcquiredType',
|
36
|
-
'salesCompensationList_recipient_recipientAddress_stateOrCountryDescription': 'recipientStateOrCountryDescription',
|
37
|
-
'typesOfSecuritiesOffered_isEquityType': 'isEquityType',
|
38
|
-
'investors_totalNumberAlreadyInvested': 'totalNumberAlreadyInvested',
|
39
|
-
'minimumInvestmentAccepted': 'minimumInvestmentAccepted',
|
40
|
-
'salesCompensationList_recipient_associatedBDName': 'associatedBDName',
|
41
|
-
'salesCompensationList_recipient_statesOfSolicitationList_state': 'statesOfSolicitationState',
|
42
|
-
'businessCombinationTransaction_isBusinessCombinationTransaction': 'isBusinessCombinationTransaction',
|
43
|
-
'useOfProceeds_grossProceedsUsed_isEstimate': 'grossProceedsUsedIsEstimate',
|
44
|
-
'federalExemptionsExclusions_item': 'federalExemptionsExclusionsItem',
|
45
|
-
'useOfProceeds_grossProceedsUsed_dollarAmount': 'grossProceedsUsedAmount',
|
46
|
-
'industryGroup_industryGroupType': 'industryGroupType',
|
47
|
-
'signatureBlock_signature_nameOfSigner': 'nameOfSigner',
|
48
|
-
'signatureBlock_signature_signatureDate': 'signatureDate',
|
49
|
-
'salesCommissionsFindersFees_salesCommissions_isEstimate': 'salesCommissionsIsEstimate',
|
50
|
-
'typesOfSecuritiesOffered_isOtherType': 'isOtherType',
|
51
|
-
'salesCompensationList_recipient_associatedBDCRDNumber': 'associatedBDCRDNumber',
|
52
|
-
'salesCompensationList_recipient_recipientAddress_stateOrCountry': 'recipientStateOrCountry',
|
53
|
-
'typesOfSecuritiesOffered_descriptionOfOtherType': 'descriptionOfOtherType',
|
54
|
-
'salesCommissionsFindersFees_salesCommissions_dollarAmount': 'salesCommissionsAmount',
|
55
|
-
'useOfProceeds_clarificationOfResponse': 'useOfProceedsClarification',
|
56
|
-
'accession': 'accession',
|
57
|
-
'typesOfSecuritiesOffered_isPooledInvestmentFundType': 'isPooledInvestmentFundType',
|
58
|
-
'salesCompensationList_recipient_statesOfSolicitationList_value': 'statesOfSolicitationValue',
|
59
|
-
'signatureBlock_signature_signatureName': 'signatureName',
|
60
|
-
'typeOfFiling_newOrAmendment_isAmendment': 'isAmendment',
|
61
|
-
'issuerSize_revenueRange': 'revenueRange',
|
62
|
-
'salesCommissionsFindersFees_clarificationOfResponse': 'salesCommissionsFindersFeesClarification',
|
63
|
-
'salesCompensationList_recipient_recipientAddress_zipCode': 'recipientZipCode',
|
64
|
-
'salesCompensationList_recipient_recipientAddress_city': 'recipientCity',
|
65
|
-
'typesOfSecuritiesOffered_isOptionToAcquireType': 'isOptionToAcquireType',
|
66
|
-
'businessCombinationTransaction_clarificationOfResponse': 'businessCombinationClarification',
|
67
|
-
'typesOfSecuritiesOffered_isTenantInCommonType': 'isTenantInCommonType',
|
68
|
-
'salesCompensationList_recipient_statesOfSolicitationList_description': 'statesOfSolicitationDescription',
|
69
|
-
'offeringSalesAmounts_totalOfferingAmount': 'totalOfferingAmount',
|
70
|
-
'investors_numberNonAccreditedInvestors': 'numberNonAccreditedInvestors',
|
71
|
-
'signatureBlock_authorizedRepresentative': 'authorizedRepresentative',
|
72
|
-
'signatureBlock_signature_issuerName': 'issuerName',
|
73
|
-
'salesCompensationList_recipient_recipientAddress_street2': 'recipientStreet2',
|
74
|
-
'typesOfSecuritiesOffered_isDebtType': 'isDebtType',
|
75
|
-
'salesCompensationList_recipient_recipientAddress_street1': 'recipientStreet1',
|
76
|
-
'signatureBlock_signature_signatureTitle': 'signatureTitle',
|
77
|
-
'industryGroup_investmentFundInfo_investmentFundType': 'investmentFundType',
|
78
|
-
'salesCommissionsFindersFees_findersFees_isEstimate': 'findersFeesIsEstimate',
|
79
|
-
'typeOfFiling_dateOfFirstSale_value': 'dateOfFirstSaleValue',
|
80
|
-
'offeringSalesAmounts_totalAmountSold': 'totalAmountSold',
|
81
|
-
'offeringSalesAmounts_clarificationOfResponse': 'offeringSalesAmountsClarification',
|
82
|
-
'investors_hasNonAccreditedInvestors': 'hasNonAccreditedInvestors',
|
83
|
-
'salesCompensationList_recipient_recipientCRDNumber': 'recipientCRDNumber',
|
84
|
-
'typesOfSecuritiesOffered_isMineralPropertyType': 'isMineralPropertyType',
|
85
|
-
'salesCompensationList_recipient_recipientName': 'recipientName',
|
86
|
-
'durationOfOffering_moreThanOneYear': 'moreThanOneYear'
|
87
|
-
}
|
88
|
-
primary_issuer_d_dict = {
|
89
|
-
'yearOfInc_withinFiveYears': 'yearOfIncWithinFiveYears',
|
90
|
-
'entityTypeOtherDesc': 'entityTypeOtherDesc',
|
91
|
-
'jurisdictionOfInc': 'jurisdictionOfInc',
|
92
|
-
'issuerAddress_street1': 'issuerStreet1',
|
93
|
-
'issuerAddress_zipCode': 'issuerZipCode',
|
94
|
-
'issuerPreviousNameList_previousName': 'issuerPreviousName',
|
95
|
-
'entityType': 'entityType',
|
96
|
-
'issuerPreviousNameList_value': 'issuerPreviousNameListValue',
|
97
|
-
'issuerPhoneNumber': 'issuerPhoneNumber',
|
98
|
-
'yearOfInc_value': 'yearOfIncValue',
|
99
|
-
'yearOfInc_yetToBeFormed': 'yearOfIncYetToBeFormed',
|
100
|
-
'edgarPreviousNameList_previousName': 'edgarPreviousName',
|
101
|
-
'edgarPreviousNameList_value': 'edgarPreviousNameListValue',
|
102
|
-
'issuerAddress_stateOrCountry': 'issuerStateOrCountry',
|
103
|
-
'entityName': 'entityName',
|
104
|
-
'accession': 'accession',
|
105
|
-
'issuerAddress_street2': 'issuerStreet2',
|
106
|
-
'issuerAddress_city': 'issuerCity',
|
107
|
-
'issuerAddress_stateOrCountryDescription': 'issuerStateOrCountryDescription',
|
108
|
-
'cik': 'cik',
|
109
|
-
'yearOfInc_overFiveYears': 'yearOfIncOverFiveYears'
|
110
|
-
}
|
111
|
-
|
112
|
-
related_persons_d_dict = {
|
113
|
-
'relatedPersonInfo_relatedPersonAddress_stateOrCountry': 'relatedPersonStateOrCountry',
|
114
|
-
'relatedPersonInfo_relatedPersonRelationshipList_relationship': 'relatedPersonRelationship',
|
115
|
-
'relatedPersonInfo_relationshipClarification': 'relationshipClarification',
|
116
|
-
'relatedPersonInfo_relatedPersonName_lastName': 'relatedPersonLastName',
|
117
|
-
'accession': 'accession',
|
118
|
-
'relatedPersonInfo_relatedPersonName_middleName': 'relatedPersonMiddleName',
|
119
|
-
'relatedPersonInfo_relatedPersonAddress_zipCode': 'relatedPersonZipCode',
|
120
|
-
'relatedPersonInfo_relatedPersonAddress_city': 'relatedPersonCity',
|
121
|
-
'relatedPersonInfo_relatedPersonAddress_street1': 'relatedPersonStreet1',
|
122
|
-
'relatedPersonInfo_relatedPersonAddress_stateOrCountryDescription': 'relatedPersonStateOrCountryDescription',
|
123
|
-
'relatedPersonInfo_relatedPersonName_firstName': 'relatedPersonFirstName',
|
124
|
-
'relatedPersonInfo_relatedPersonAddress_street2': 'relatedPersonStreet2'
|
125
|
-
}
|
@@ -1,63 +0,0 @@
|
|
1
|
-
# Assets dictionary mapping
|
2
|
-
assets_dict_ex102_abs = {
|
3
|
-
'assetNumber': 'assetNumber',
|
4
|
-
'DefeasedStatusCode': 'DefeasedStatusCode',
|
5
|
-
'defeasanceOptionStartDate': 'defeasanceOptionStartDate',
|
6
|
-
'mostRecentDebtServiceCoverageNetOperatingIncomePercentage': 'mostRecentDebtServiceCoverageNetOperatingIncomePercentage',
|
7
|
-
'mostRecentDebtServiceAmount': 'mostRecentDebtServiceAmount',
|
8
|
-
'debtServiceCoverageSecuritizationCode': 'debtServiceCoverageSecuritizationCode',
|
9
|
-
'debtServiceCoverageNetOperatingIncomeSecuritizationPercentage': 'debtServiceCoverageNetOperatingIncomeSecuritizationPercentage',
|
10
|
-
'valuationSecuritizationDate': 'valuationSecuritizationDate',
|
11
|
-
'physicalOccupancySecuritizationPercentage': 'physicalOccupancySecuritizationPercentage',
|
12
|
-
'revenueSecuritizationAmount': 'revenueSecuritizationAmount',
|
13
|
-
'valuationSourceSecuritizationCode': 'valuationSourceSecuritizationCode',
|
14
|
-
'financialsSecuritizationDate': 'financialsSecuritizationDate',
|
15
|
-
'mostRecentNetCashFlowAmount': 'mostRecentNetCashFlowAmount',
|
16
|
-
'operatingExpensesAmount': 'operatingExpensesAmount',
|
17
|
-
'operatingExpensesSecuritizationAmount': 'operatingExpensesSecuritizationAmount',
|
18
|
-
'netOperatingIncomeNetCashFlowSecuritizationCode': 'netOperatingIncomeNetCashFlowSecuritizationCode',
|
19
|
-
'mostRecentValuationSourceCode': 'mostRecentValuationSourceCode',
|
20
|
-
'mostRecentDebtServiceCoverageNetCashFlowpercentage': 'mostRecentDebtServiceCoverageNetCashFlowpercentage',
|
21
|
-
'debtServiceCoverageNetCashFlowSecuritizationPercentage': 'debtServiceCoverageNetCashFlowSecuritizationPercentage',
|
22
|
-
'mostRecentAnnualLeaseRolloverReviewDate': 'mostRecentAnnualLeaseRolloverReviewDate',
|
23
|
-
'mostRecentRevenueAmount': 'mostRecentRevenueAmount',
|
24
|
-
'mostRecentPhysicalOccupancyPercentage': 'mostRecentPhysicalOccupancyPercentage',
|
25
|
-
'mostRecentNetOperatingIncomeAmount': 'mostRecentNetOperatingIncomeAmount',
|
26
|
-
'netOperatingIncomeSecuritizationAmount': 'netOperatingIncomeSecuritizationAmount',
|
27
|
-
'netOperatingIncomeNetCashFlowCode': 'netOperatingIncomeNetCashFlowCode',
|
28
|
-
'mostRecentFinancialsStartDate': 'mostRecentFinancialsStartDate',
|
29
|
-
'mostRecentFinancialsEndDate': 'mostRecentFinancialsEndDate',
|
30
|
-
'accession': 'accession',
|
31
|
-
'valuationSecuritizationAmount': 'valuationSecuritizationAmount',
|
32
|
-
'mostRecentValuationDate': 'mostRecentValuationDate',
|
33
|
-
'mostRecentValuationAmount': 'mostRecentValuationAmount',
|
34
|
-
'mostRecentDebtServiceCoverageCode': 'mostRecentDebtServiceCoverageCode',
|
35
|
-
'netCashFlowFlowSecuritizationAmount': 'netCashFlowFlowSecuritizationAmount'
|
36
|
-
}
|
37
|
-
|
38
|
-
# Properties dictionary mapping
|
39
|
-
properties_dict_ex102_abs = {
|
40
|
-
'unitsBedsRoomsNumber': 'unitsBedsRoomsNumber',
|
41
|
-
'propertyCounty': 'propertyCounty',
|
42
|
-
'squareFeetLargestTenantNumber': 'squareFeetLargestTenantNumber',
|
43
|
-
'netRentableSquareFeetNumber': 'netRentableSquareFeetNumber',
|
44
|
-
'leaseExpirationThirdLargestTenantDate': 'leaseExpirationThirdLargestTenantDate',
|
45
|
-
'leaseExpirationLargestTenantDate': 'leaseExpirationLargestTenantDate',
|
46
|
-
'propertyZip': 'propertyZip',
|
47
|
-
'squareFeetThirdLargestTenantNumber': 'squareFeetThirdLargestTenantNumber',
|
48
|
-
'propertyStatusCode': 'propertyStatusCode',
|
49
|
-
'propertyState': 'propertyState',
|
50
|
-
'yearBuiltNumber': 'yearBuiltNumber',
|
51
|
-
'propertyCity': 'propertyCity',
|
52
|
-
'propertyName': 'propertyName',
|
53
|
-
'propertyAddress': 'propertyAddress',
|
54
|
-
'yearLastRenovated': 'yearLastRenovated',
|
55
|
-
'leaseExpirationSecondLargestTenantDate': 'leaseExpirationSecondLargestTenantDate',
|
56
|
-
'thirdLargestTenant': 'thirdLargestTenant',
|
57
|
-
'unitsBedsRoomsSecuritizationNumber': 'unitsBedsRoomsSecuritizationNumber',
|
58
|
-
'propertyTypeCode': 'propertyTypeCode',
|
59
|
-
'largestTenant': 'largestTenant',
|
60
|
-
'squareFeetSecondLargestTenantNumber': 'squareFeetSecondLargestTenantNumber',
|
61
|
-
'netRentableSquareFeetSecuritizationNumber': 'netRentableSquareFeetSecuritizationNumber',
|
62
|
-
'secondLargestTenant': 'secondLargestTenant'
|
63
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
ex99a_sdr_dict = {}
|
File without changes
|
File without changes
|
File without changes
|