ingestr 0.13.93__py3-none-any.whl → 0.14.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.

Potentially problematic release.


This version of ingestr might be problematic. Click here for more details.

@@ -8,6 +8,153 @@ from .helpers import create_dynamic_resource, get_access_token
8
8
 
9
9
  # Define available resources with their endpoints and field mappings
10
10
  FLUXX_RESOURCES = {
11
+ "adhoc_report": {
12
+ "endpoint": "adhoc_report",
13
+ "fields": {
14
+ # Primary key
15
+ "id": {"data_type": "bigint", "field_type": "column"},
16
+ # Boolean fields
17
+ "delta": {"data_type": "bool", "field_type": "column"},
18
+ "include_toc": {"data_type": "bool", "field_type": "column"},
19
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
20
+ "locked": {"data_type": "bool", "field_type": "column"},
21
+ "show_in_card_export": {"data_type": "bool", "field_type": "column"},
22
+ "show_in_live_reports": {"data_type": "bool", "field_type": "column"},
23
+ "show_page_numbers": {"data_type": "bool", "field_type": "column"},
24
+ "use_as_card_export": {"data_type": "bool", "field_type": "column"},
25
+ # Timestamp fields
26
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
27
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
28
+ "updated_at": {"data_type": "timestamp", "field_type": "timestamp"},
29
+ # Date fields
30
+ "timestamp_entered_state": {"data_type": "date", "field_type": "column"},
31
+ # Integer fields
32
+ "live_report_order": {"data_type": "bigint", "field_type": "column"},
33
+ "model_document_template_id": {
34
+ "data_type": "bigint",
35
+ "field_type": "column",
36
+ },
37
+ "sphinx_id": {"data_type": "bigint", "field_type": "column"},
38
+ # String fields
39
+ "columns": {"data_type": "text", "field_type": "column"},
40
+ "config": {"data_type": "text", "field_type": "column"},
41
+ "cron_string": {"data_type": "text", "field_type": "column"},
42
+ "description": {"data_type": "text", "field_type": "column"},
43
+ "filter": {"data_type": "text", "field_type": "column"},
44
+ "migrate_id": {"data_type": "text", "field_type": "column"},
45
+ "model_type": {"data_type": "text", "field_type": "column"},
46
+ "name": {"data_type": "text", "field_type": "column"},
47
+ "pivot_columns": {"data_type": "text", "field_type": "column"},
48
+ "pivot_data": {"data_type": "text", "field_type": "column"},
49
+ "pivot_rows": {"data_type": "text", "field_type": "column"},
50
+ "report_group": {"data_type": "text", "field_type": "column"},
51
+ "report_id": {"data_type": "text", "field_type": "column"},
52
+ "report_type": {"data_type": "text", "field_type": "column"},
53
+ "runtime_filter": {"data_type": "text", "field_type": "column"},
54
+ "sql": {"data_type": "text", "field_type": "column"},
55
+ "state": {"data_type": "text", "field_type": "column"},
56
+ "system_type": {"data_type": "text", "field_type": "column"},
57
+ "toc": {"data_type": "text", "field_type": "column"},
58
+ "user_profile": {"data_type": "text", "field_type": "column"},
59
+ # Method fields returning strings
60
+ "all_notes": {"data_type": "text", "field_type": "string"},
61
+ "filter_state": {"data_type": "text", "field_type": "string"},
62
+ "group_sorter": {"data_type": "text", "field_type": "string"},
63
+ "previous_state": {"data_type": "text", "field_type": "string"},
64
+ "state_description": {"data_type": "text", "field_type": "string"},
65
+ "state_to_english": {"data_type": "text", "field_type": "string"},
66
+ "to_s": {"data_type": "text", "field_type": "string"},
67
+ # Method fields returning long
68
+ "user_profile_ids": {"data_type": "bigint", "field_type": "string"},
69
+ # Relation fields (stored as bigint for IDs or json for arrays)
70
+ "alert_emails": {"data_type": "json", "field_type": "relation"},
71
+ "alert_ids_sent": {"data_type": "json", "field_type": "relation"},
72
+ "audit_soft_deletes": {"data_type": "json", "field_type": "relation"},
73
+ "clone_ancestries": {"data_type": "json", "field_type": "relation"},
74
+ "code_block_conversions": {"data_type": "json", "field_type": "relation"},
75
+ "connection_ids": {"data_type": "json", "field_type": "relation"},
76
+ "created_by": {"data_type": "json", "field_type": "relation"},
77
+ "created_by_id": {"data_type": "bigint", "field_type": "relation"},
78
+ "etl_relationships": {"data_type": "json", "field_type": "relation"},
79
+ "favorite_user_ids": {"data_type": "json", "field_type": "relation"},
80
+ "favorites": {"data_type": "json", "field_type": "relation"},
81
+ "geo_place_relationships": {"data_type": "json", "field_type": "relation"},
82
+ "group_members": {"data_type": "json", "field_type": "relation"},
83
+ "model_document_ids": {"data_type": "json", "field_type": "relation"},
84
+ "model_documents": {"data_type": "json", "field_type": "relation"},
85
+ "model_emails": {"data_type": "json", "field_type": "relation"},
86
+ "model_summaries": {"data_type": "json", "field_type": "relation"},
87
+ "modifications": {"data_type": "json", "field_type": "relation"},
88
+ "notes": {"data_type": "json", "field_type": "relation"},
89
+ "post_relationships": {"data_type": "json", "field_type": "relation"},
90
+ "posts": {"data_type": "json", "field_type": "relation"},
91
+ "taggings": {"data_type": "json", "field_type": "relation"},
92
+ "translator_assignments": {"data_type": "json", "field_type": "relation"},
93
+ "updated_by": {"data_type": "json", "field_type": "relation"},
94
+ "updated_by_id": {"data_type": "bigint", "field_type": "relation"},
95
+ "work_tasks": {"data_type": "json", "field_type": "relation"},
96
+ "workflow_events": {"data_type": "json", "field_type": "relation"},
97
+ },
98
+ },
99
+ "affiliate": {
100
+ "endpoint": "affiliate",
101
+ "fields": {
102
+ # Primary key
103
+ "id": {"data_type": "bigint", "field_type": "column"},
104
+ # Boolean fields
105
+ "archived": {"data_type": "bool", "field_type": "column"},
106
+ # Timestamp fields
107
+ "archived_at": {"data_type": "timestamp", "field_type": "column"},
108
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
109
+ "updated_at": {"data_type": "timestamp", "field_type": "timestamp"},
110
+ # Date fields
111
+ "end_date": {"data_type": "date", "field_type": "column"},
112
+ "start_date": {"data_type": "date", "field_type": "column"},
113
+ # Integer fields
114
+ "affiliate_type_id": {"data_type": "bigint", "field_type": "column"},
115
+ "belongable_id": {"data_type": "bigint", "field_type": "column"},
116
+ "user_id": {"data_type": "bigint", "field_type": "column"},
117
+ # String fields
118
+ "belongable_type": {"data_type": "text", "field_type": "column"},
119
+ "department": {"data_type": "text", "field_type": "column"},
120
+ "email": {"data_type": "text", "field_type": "column"},
121
+ "migrate_id": {"data_type": "text", "field_type": "column"},
122
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
123
+ "phone": {"data_type": "text", "field_type": "column"},
124
+ "title": {"data_type": "text", "field_type": "column"},
125
+ # Method fields returning strings
126
+ "all_notes": {"data_type": "text", "field_type": "string"},
127
+ "to_s": {"data_type": "text", "field_type": "string"},
128
+ # Relation fields (stored as bigint for IDs or json for arrays)
129
+ "affiliate_type": {"data_type": "json", "field_type": "relation"},
130
+ "alert_emails": {"data_type": "json", "field_type": "relation"},
131
+ "alert_ids_sent": {"data_type": "json", "field_type": "relation"},
132
+ "audit_soft_deletes": {"data_type": "json", "field_type": "relation"},
133
+ "clone_ancestries": {"data_type": "json", "field_type": "relation"},
134
+ "code_block_conversions": {"data_type": "json", "field_type": "relation"},
135
+ "connection_ids": {"data_type": "json", "field_type": "relation"},
136
+ "created_by": {"data_type": "json", "field_type": "relation"},
137
+ "created_by_id": {"data_type": "bigint", "field_type": "relation"},
138
+ "etl_relationships": {"data_type": "json", "field_type": "relation"},
139
+ "favorite_user_ids": {"data_type": "json", "field_type": "relation"},
140
+ "favorites": {"data_type": "json", "field_type": "relation"},
141
+ "geo_place_relationships": {"data_type": "json", "field_type": "relation"},
142
+ "group_members": {"data_type": "json", "field_type": "relation"},
143
+ "model_documents": {"data_type": "json", "field_type": "relation"},
144
+ "model_emails": {"data_type": "json", "field_type": "relation"},
145
+ "model_summaries": {"data_type": "json", "field_type": "relation"},
146
+ "modifications": {"data_type": "json", "field_type": "relation"},
147
+ "notes": {"data_type": "json", "field_type": "relation"},
148
+ "post_relationships": {"data_type": "json", "field_type": "relation"},
149
+ "taggings": {"data_type": "json", "field_type": "relation"},
150
+ "translator_assignments": {"data_type": "json", "field_type": "relation"},
151
+ "updated_by": {"data_type": "json", "field_type": "relation"},
152
+ "updated_by_id": {"data_type": "bigint", "field_type": "relation"},
153
+ "user": {"data_type": "json", "field_type": "relation"},
154
+ "work_tasks": {"data_type": "json", "field_type": "relation"},
155
+ "workflow_events": {"data_type": "json", "field_type": "relation"},
156
+ },
157
+ },
11
158
  "claim": {
12
159
  "endpoint": "claim",
13
160
  "fields": {
@@ -5645,6 +5792,4034 @@ FLUXX_RESOURCES = {
5645
5792
  "notes": {"data_type": "json", "field_type": "relation"},
5646
5793
  },
5647
5794
  },
5795
+ "affiliate_type": {
5796
+ "endpoint": "affiliate_type",
5797
+ "fields": {
5798
+ "all_notes": {"data_type": "text", "field_type": "string"},
5799
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5800
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
5801
+ "id": {"data_type": "bigint", "field_type": "column"},
5802
+ "to_s": {"data_type": "text", "field_type": "string"},
5803
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5804
+ },
5805
+ },
5806
+ "aha_requirements_tickets": {
5807
+ "endpoint": "aha_requirements_tickets",
5808
+ "fields": {
5809
+ "aha_requirement_id": {"data_type": "text", "field_type": "column"},
5810
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5811
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
5812
+ "id": {"data_type": "bigint", "field_type": "column"},
5813
+ "model_id": {"data_type": "bigint", "field_type": "column"},
5814
+ "model_type": {"data_type": "text", "field_type": "column"},
5815
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5816
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
5817
+ },
5818
+ },
5819
+ "alert": {
5820
+ "endpoint": "alert",
5821
+ "fields": {
5822
+ "alert_enabled": {"data_type": "bool", "field_type": "column"},
5823
+ "alert_output": {"data_type": "text", "field_type": "column"},
5824
+ "alert_trigger_type": {"data_type": "text", "field_type": "column"},
5825
+ "bcc_emails": {"data_type": "text", "field_type": "column"},
5826
+ "body": {"data_type": "text", "field_type": "column"},
5827
+ "cc_emails": {"data_type": "text", "field_type": "column"},
5828
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5829
+ "custom_action": {"data_type": "text", "field_type": "column"},
5830
+ "dashboard_card_id": {"data_type": "bigint", "field_type": "column"},
5831
+ "dashboard_id": {"data_type": "bigint", "field_type": "column"},
5832
+ "dynamic_model_type": {"data_type": "text", "field_type": "column"},
5833
+ "extra_fields": {"data_type": "text", "field_type": "column"},
5834
+ "filter": {"data_type": "text", "field_type": "column"},
5835
+ "group_models": {"data_type": "bool", "field_type": "column"},
5836
+ "id": {"data_type": "bigint", "field_type": "column"},
5837
+ "last_realtime_update_id": {"data_type": "bigint", "field_type": "column"},
5838
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
5839
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
5840
+ "model_controller_type": {"data_type": "text", "field_type": "column"},
5841
+ "original_id": {"data_type": "bigint", "field_type": "column"},
5842
+ "queue_uuid": {"data_type": "text", "field_type": "column"},
5843
+ "send_by_queuing": {"data_type": "bool", "field_type": "column"},
5844
+ "send_in_one_thread": {"data_type": "bool", "field_type": "column"},
5845
+ "send_without_queuing": {"data_type": "bool", "field_type": "column"},
5846
+ "subject": {"data_type": "text", "field_type": "column"},
5847
+ "trigger_fields": {"data_type": "text", "field_type": "column"},
5848
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5849
+ "user_relationship_fields": {"data_type": "text", "field_type": "column"},
5850
+ },
5851
+ },
5852
+ "alert_email_user": {
5853
+ "endpoint": "alert_email_user",
5854
+ "fields": {
5855
+ "alert_email_id": {"data_type": "bigint", "field_type": "column"},
5856
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5857
+ "id": {"data_type": "bigint", "field_type": "column"},
5858
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5859
+ "user_id": {"data_type": "bigint", "field_type": "column"},
5860
+ },
5861
+ },
5862
+ "alert_model_log": {
5863
+ "endpoint": "alert_model_log",
5864
+ "fields": {
5865
+ "alert_id": {"data_type": "bigint", "field_type": "column"},
5866
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5867
+ "id": {"data_type": "bigint", "field_type": "column"},
5868
+ "locked_at": {"data_type": "timestamp", "field_type": "column"},
5869
+ "model_id": {"data_type": "bigint", "field_type": "column"},
5870
+ "model_type": {"data_type": "text", "field_type": "column"},
5871
+ "previous_state": {"data_type": "text", "field_type": "string"},
5872
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
5873
+ "state": {"data_type": "text", "field_type": "column"},
5874
+ "state_description": {"data_type": "text", "field_type": "string"},
5875
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5876
+ },
5877
+ },
5878
+ "alert_recipient": {
5879
+ "endpoint": "alert_recipient",
5880
+ "fields": {
5881
+ "alert_bcc_id": {"data_type": "bigint", "field_type": "column"},
5882
+ "alert_cc_id": {"data_type": "bigint", "field_type": "column"},
5883
+ "alert_id": {"data_type": "bigint", "field_type": "column"},
5884
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5885
+ "id": {"data_type": "bigint", "field_type": "column"},
5886
+ "rtu_model_user_method": {"data_type": "text", "field_type": "column"},
5887
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5888
+ "user_id": {"data_type": "bigint", "field_type": "column"},
5889
+ },
5890
+ },
5891
+ "alert_transition_state": {
5892
+ "endpoint": "alert_transition_state",
5893
+ "fields": {
5894
+ "alert_id": {"data_type": "bigint", "field_type": "column"},
5895
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5896
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
5897
+ "id": {"data_type": "bigint", "field_type": "column"},
5898
+ "machine_state_id": {"data_type": "bigint", "field_type": "column"},
5899
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
5900
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
5901
+ },
5902
+ },
5903
+ "bank_account": {
5904
+ "endpoint": "bank_account",
5905
+ "fields": {
5906
+ "account_name": {"data_type": "text", "field_type": "column"},
5907
+ "account_number": {"data_type": "text", "field_type": "column"},
5908
+ "active": {"data_type": "bool", "field_type": "column"},
5909
+ "all_notes": {"data_type": "text", "field_type": "string"},
5910
+ "bank_code": {"data_type": "text", "field_type": "column"},
5911
+ "bank_code_type*": {"data_type": "text", "field_type": "column"},
5912
+ "bank_contact_name": {"data_type": "text", "field_type": "column"},
5913
+ "bank_contact_phone": {"data_type": "text", "field_type": "column"},
5914
+ "bank_name": {"data_type": "text", "field_type": "column"},
5915
+ "bank_type*": {"data_type": "text", "field_type": "column"},
5916
+ "banking_beneficiary_name*": {"data_type": "text", "field_type": "column"},
5917
+ "city": {"data_type": "text", "field_type": "column"},
5918
+ "comments*": {"data_type": "text", "field_type": "column"},
5919
+ "contact_name*": {"data_type": "text", "field_type": "column"},
5920
+ "contact_title*": {"data_type": "text", "field_type": "column"},
5921
+ "contig_id": {"data_type": "text", "field_type": "column"},
5922
+ "country_code*": {"data_type": "text", "field_type": "column"},
5923
+ "country_str": {"data_type": "text", "field_type": "column"},
5924
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
5925
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
5926
+ "domestic_special_wire_instructions": {
5927
+ "data_type": "text",
5928
+ "field_type": "column",
5929
+ },
5930
+ "domestic_wire_aba_routing": {"data_type": "text", "field_type": "column"},
5931
+ "email*": {"data_type": "text", "field_type": "column"},
5932
+ "fax": {"data_type": "text", "field_type": "column"},
5933
+ "filter_state": {"data_type": "text", "field_type": "string"},
5934
+ "finance_id_to_text*": {"data_type": "text", "field_type": "column"},
5935
+ "finance_internal_id*": {"data_type": "bigint", "field_type": "column"},
5936
+ "foreign_special_wire_instructions": {
5937
+ "data_type": "text",
5938
+ "field_type": "column",
5939
+ },
5940
+ "foreign_wire_beneficiary_bank_swift": {
5941
+ "data_type": "text",
5942
+ "field_type": "column",
5943
+ },
5944
+ "foreign_wire_intermediary_bank_name": {
5945
+ "data_type": "text",
5946
+ "field_type": "column",
5947
+ },
5948
+ "foreign_wire_intermediary_bank_swift": {
5949
+ "data_type": "text",
5950
+ "field_type": "column",
5951
+ },
5952
+ "geo_country_id": {"data_type": "bigint", "field_type": "column"},
5953
+ "geo_state_id": {"data_type": "bigint", "field_type": "column"},
5954
+ "id": {"data_type": "bigint", "field_type": "column"},
5955
+ "intermediary_account_name": {"data_type": "text", "field_type": "column"},
5956
+ "intermediary_account_number": {
5957
+ "data_type": "text",
5958
+ "field_type": "column",
5959
+ },
5960
+ "intermediary_bank_code": {"data_type": "text", "field_type": "column"},
5961
+ "intermediary_bank_contact_name": {
5962
+ "data_type": "text",
5963
+ "field_type": "column",
5964
+ },
5965
+ "intermediary_bank_contact_phone": {
5966
+ "data_type": "text",
5967
+ "field_type": "column",
5968
+ },
5969
+ "intermediary_bank_name": {"data_type": "text", "field_type": "column"},
5970
+ "intermediary_city": {"data_type": "text", "field_type": "column"},
5971
+ "intermediary_fax": {"data_type": "text", "field_type": "column"},
5972
+ "intermediary_geo_country_id": {
5973
+ "data_type": "bigint",
5974
+ "field_type": "column",
5975
+ },
5976
+ "intermediary_geo_state_id": {
5977
+ "data_type": "bigint",
5978
+ "field_type": "column",
5979
+ },
5980
+ "intermediary_phone": {"data_type": "text", "field_type": "column"},
5981
+ "intermediary_postal_code": {"data_type": "text", "field_type": "column"},
5982
+ "intermediary_special_instructions": {
5983
+ "data_type": "text",
5984
+ "field_type": "column",
5985
+ },
5986
+ "intermediary_street_address": {
5987
+ "data_type": "text",
5988
+ "field_type": "column",
5989
+ },
5990
+ "intermediary_street_address2": {
5991
+ "data_type": "text",
5992
+ "field_type": "column",
5993
+ },
5994
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
5995
+ "migrate_id": {"data_type": "text", "field_type": "column"},
5996
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
5997
+ "ofac_result_id": {"data_type": "text", "field_type": "column"},
5998
+ "ofac_run_at": {"data_type": "timestamp", "field_type": "column"},
5999
+ "ofac_run_id": {"data_type": "text", "field_type": "column"},
6000
+ "ofac_state": {"data_type": "text", "field_type": "column"},
6001
+ "payment_account_type*": {"data_type": "text", "field_type": "column"},
6002
+ "phone": {"data_type": "text", "field_type": "column"},
6003
+ "postal_code": {"data_type": "text", "field_type": "column"},
6004
+ "previous_state": {"data_type": "text", "field_type": "string"},
6005
+ "special_instructions": {"data_type": "text", "field_type": "column"},
6006
+ "state": {"data_type": "bigint", "field_type": "column"},
6007
+ "state_description": {"data_type": "text", "field_type": "string"},
6008
+ "state_str": {"data_type": "text", "field_type": "column"},
6009
+ "state_to_english": {"data_type": "text", "field_type": "string"},
6010
+ "street_address": {"data_type": "text", "field_type": "column"},
6011
+ "street_address2": {"data_type": "text", "field_type": "column"},
6012
+ "to_s": {"data_type": "text", "field_type": "string"},
6013
+ "update_requestspayments*": {"data_type": "text", "field_type": "column"},
6014
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6015
+ "validated_at*": {"data_type": "date", "field_type": "column"},
6016
+ "vendor_setup_form_uploaded*": {
6017
+ "data_type": "bool",
6018
+ "field_type": "column",
6019
+ },
6020
+ "wire_transfer_number": {"data_type": "text", "field_type": "column"},
6021
+ },
6022
+ },
6023
+ "budget_request": {
6024
+ "endpoint": "budget_request",
6025
+ "fields": {
6026
+ "all_notes": {"data_type": "text", "field_type": "string"},
6027
+ "amount_recommended": {"data_type": "double", "field_type": "column"},
6028
+ "amount_requested": {"data_type": "double", "field_type": "column"},
6029
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6030
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6031
+ "grant_request_workflow_state": {
6032
+ "data_type": "text",
6033
+ "field_type": "string",
6034
+ },
6035
+ "id": {"data_type": "bigint", "field_type": "column"},
6036
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
6037
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
6038
+ "request_id": {"data_type": "bigint", "field_type": "column"},
6039
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
6040
+ "to_s": {"data_type": "text", "field_type": "string"},
6041
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6042
+ },
6043
+ },
6044
+ "card_configuration": {
6045
+ "endpoint": "card_configuration",
6046
+ "fields": {
6047
+ "allow_create": {"data_type": "bool", "field_type": "column"},
6048
+ "allowed_roles": {"data_type": "text", "field_type": "column"},
6049
+ "allowed_states": {"data_type": "text", "field_type": "column"},
6050
+ "controller_name": {"data_type": "text", "field_type": "column"},
6051
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6052
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6053
+ "filter": {"data_type": "text", "field_type": "column"},
6054
+ "id": {"data_type": "bigint", "field_type": "column"},
6055
+ "label": {"data_type": "text", "field_type": "column"},
6056
+ "menu_order": {"data_type": "bigint", "field_type": "column"},
6057
+ "model_type": {"data_type": "text", "field_type": "column"},
6058
+ "replace_existing_menu_item": {"data_type": "bool", "field_type": "column"},
6059
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6060
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6061
+ },
6062
+ },
6063
+ "census_code_result": {
6064
+ "endpoint": "census_code_result",
6065
+ "fields": {
6066
+ "census_config_id": {"data_type": "bigint", "field_type": "column"},
6067
+ "census_percentile": {"data_type": "double", "field_type": "column"},
6068
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6069
+ "id": {"data_type": "bigint", "field_type": "column"},
6070
+ "model_id": {"data_type": "bigint", "field_type": "column"},
6071
+ "model_type": {"data_type": "text", "field_type": "column"},
6072
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6073
+ },
6074
+ },
6075
+ "census_config": {
6076
+ "endpoint": "census_config",
6077
+ "fields": {
6078
+ "census_code": {"data_type": "text", "field_type": "column"},
6079
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6080
+ "description": {"data_type": "text", "field_type": "column"},
6081
+ "id": {"data_type": "bigint", "field_type": "column"},
6082
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
6083
+ "model_type": {"data_type": "text", "field_type": "column"},
6084
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6085
+ },
6086
+ },
6087
+ "claim_expense_row_document": {
6088
+ "endpoint": "claim_expense_row_document",
6089
+ "fields": {
6090
+ "claim_expense_row_id": {"data_type": "bigint", "field_type": "column"},
6091
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6092
+ "id": {"data_type": "bigint", "field_type": "column"},
6093
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6094
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6095
+ "model_document_id": {"data_type": "bigint", "field_type": "column"},
6096
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6097
+ },
6098
+ },
6099
+ "clean_calculation": {
6100
+ "endpoint": "clean_calculation",
6101
+ "fields": {
6102
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6103
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6104
+ "id": {"data_type": "bigint", "field_type": "column"},
6105
+ "model_id": {"data_type": "bigint", "field_type": "column"},
6106
+ "model_type": {"data_type": "text", "field_type": "column"},
6107
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6108
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6109
+ },
6110
+ },
6111
+ "client_configuration": {
6112
+ "endpoint": "client_configuration",
6113
+ "fields": {
6114
+ "configuration": {"data_type": "text", "field_type": "column"},
6115
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6116
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6117
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6118
+ "id": {"data_type": "bigint", "field_type": "column"},
6119
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
6120
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
6121
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6122
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6123
+ },
6124
+ },
6125
+ "client_store": {
6126
+ "endpoint": "client_store",
6127
+ "fields": {
6128
+ "client_store_type": {"data_type": "text", "field_type": "column"},
6129
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6130
+ "dashboard_template_id": {"data_type": "bigint", "field_type": "column"},
6131
+ "data": {"data_type": "text", "field_type": "column"},
6132
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6133
+ "favorite_settings": {"data_type": "text", "field_type": "column"},
6134
+ "id": {"data_type": "bigint", "field_type": "column"},
6135
+ "include_smart_filter": {"data_type": "bool", "field_type": "column"},
6136
+ "locked_to_dashboard_template_id": {
6137
+ "data_type": "bigint",
6138
+ "field_type": "column",
6139
+ },
6140
+ "shared_from_id": {"data_type": "bigint", "field_type": "column"},
6141
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6142
+ "user_id": {"data_type": "bigint", "field_type": "column"},
6143
+ },
6144
+ },
6145
+ "client_store_dashboard_group": {
6146
+ "endpoint": "client_store_dashboard_group",
6147
+ "fields": {
6148
+ "client_store_id": {"data_type": "bigint", "field_type": "column"},
6149
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6150
+ "dashboard_group_id": {"data_type": "bigint", "field_type": "column"},
6151
+ "id": {"data_type": "bigint", "field_type": "column"},
6152
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6153
+ },
6154
+ },
6155
+ "clone_ancestry": {
6156
+ "endpoint": "clone_ancestry",
6157
+ "fields": {
6158
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6159
+ "id": {"data_type": "bigint", "field_type": "column"},
6160
+ "model_clone_configuration_id": {
6161
+ "data_type": "bigint",
6162
+ "field_type": "column",
6163
+ },
6164
+ "model_id": {"data_type": "bigint", "field_type": "column"},
6165
+ "model_type": {"data_type": "text", "field_type": "column"},
6166
+ "parent_ids": {"data_type": "text", "field_type": "column"},
6167
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
6168
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6169
+ },
6170
+ },
6171
+ "code_block_conversion": {
6172
+ "endpoint": "code_block_conversion",
6173
+ "fields": {
6174
+ "conversion_confidence": {"data_type": "double", "field_type": "column"},
6175
+ "conversion_status": {"data_type": "text", "field_type": "column"},
6176
+ "crc_complexity": {"data_type": "bigint", "field_type": "column"},
6177
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6178
+ "custom_ruby_code": {"data_type": "text", "field_type": "column"},
6179
+ "filter": {"data_type": "text", "field_type": "column"},
6180
+ "id": {"data_type": "bigint", "field_type": "column"},
6181
+ "llm_error": {"data_type": "text", "field_type": "column"},
6182
+ "llm_iterations": {"data_type": "bigint", "field_type": "column"},
6183
+ "model_id": {"data_type": "bigint", "field_type": "column"},
6184
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
6185
+ "model_type": {"data_type": "text", "field_type": "column"},
6186
+ "related_model_type": {"data_type": "text", "field_type": "column"},
6187
+ "stencil_uuid": {"data_type": "text", "field_type": "column"},
6188
+ "test_results": {"data_type": "text", "field_type": "column"},
6189
+ "test_score": {"data_type": "double", "field_type": "column"},
6190
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6191
+ "version": {"data_type": "text", "field_type": "column"},
6192
+ },
6193
+ },
6194
+ "coi": {
6195
+ "endpoint": "coi",
6196
+ "fields": {
6197
+ "all_notes": {"data_type": "text", "field_type": "string"},
6198
+ "ancestry": {"data_type": "text", "field_type": "column"},
6199
+ "conflict_organization_name": {"data_type": "text", "field_type": "string"},
6200
+ "conflict_type": {"data_type": "text", "field_type": "column"},
6201
+ "conflict_user_fullname": {"data_type": "text", "field_type": "string"},
6202
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6203
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6204
+ "details": {"data_type": "text", "field_type": "column"},
6205
+ "ends_at*": {"data_type": "date", "field_type": "column"},
6206
+ "grant_request_workflow_state": {
6207
+ "data_type": "text",
6208
+ "field_type": "string",
6209
+ },
6210
+ "id": {"data_type": "bigint", "field_type": "column"},
6211
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6212
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6213
+ "raised_at": {"data_type": "timestamp", "field_type": "column"},
6214
+ "request_id_string": {"data_type": "text", "field_type": "string"},
6215
+ "resolved": {"data_type": "bool", "field_type": "column"},
6216
+ "resolved_at": {"data_type": "timestamp", "field_type": "column"},
6217
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
6218
+ "starts_at*": {"data_type": "date", "field_type": "column"},
6219
+ "to_s": {"data_type": "text", "field_type": "string"},
6220
+ "type_of_conflict*": {"data_type": "text", "field_type": "column"},
6221
+ "type_of_conflict_other*": {"data_type": "text", "field_type": "column"},
6222
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6223
+ "user_fullname": {"data_type": "text", "field_type": "string"},
6224
+ },
6225
+ },
6226
+ "compliance_checklist_item": {
6227
+ "endpoint": "compliance_checklist_item",
6228
+ "fields": {
6229
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6230
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6231
+ "id": {"data_type": "bigint", "field_type": "column"},
6232
+ "model_id": {"data_type": "bigint", "field_type": "column"},
6233
+ "model_type": {"data_type": "text", "field_type": "column"},
6234
+ "note": {"data_type": "text", "field_type": "column"},
6235
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
6236
+ "uid": {"data_type": "text", "field_type": "column"},
6237
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6238
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6239
+ },
6240
+ },
6241
+ "config_model_document": {
6242
+ "endpoint": "config_model_document",
6243
+ "fields": {
6244
+ "allowed_filetypes": {"data_type": "text", "field_type": "column"},
6245
+ "checked_out": {"data_type": "bool", "field_type": "column"},
6246
+ "combined": {"data_type": "bool", "field_type": "column"},
6247
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6248
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6249
+ "current": {"data_type": "bool", "field_type": "column"},
6250
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6251
+ "doc_label": {"data_type": "text", "field_type": "column"},
6252
+ "doc_type_custom": {"data_type": "text", "field_type": "column"},
6253
+ "doc_type_date": {"data_type": "date", "field_type": "column"},
6254
+ "doc_type_year": {"data_type": "bigint", "field_type": "column"},
6255
+ "document_content_type": {"data_type": "text", "field_type": "column"},
6256
+ "document_description": {"data_type": "text", "field_type": "column"},
6257
+ "document_file_name": {"data_type": "text", "field_type": "column"},
6258
+ "document_file_size": {"data_type": "bigint", "field_type": "column"},
6259
+ "document_text": {"data_type": "text", "field_type": "column"},
6260
+ "document_type": {"data_type": "text", "field_type": "column"},
6261
+ "document_updated_at": {"data_type": "timestamp", "field_type": "column"},
6262
+ "documentable_id": {"data_type": "bigint", "field_type": "column"},
6263
+ "documentable_state": {"data_type": "text", "field_type": "column"},
6264
+ "documentable_type": {"data_type": "text", "field_type": "column"},
6265
+ "external_id": {"data_type": "text", "field_type": "column"},
6266
+ "icon_url": {"data_type": "text", "field_type": "column"},
6267
+ "id": {"data_type": "bigint", "field_type": "column"},
6268
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6269
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6270
+ "model_document_sub_type_id": {
6271
+ "data_type": "bigint",
6272
+ "field_type": "column",
6273
+ },
6274
+ "model_document_template_id": {
6275
+ "data_type": "bigint",
6276
+ "field_type": "column",
6277
+ },
6278
+ "model_documentable_type_id": {
6279
+ "data_type": "bigint",
6280
+ "field_type": "column",
6281
+ },
6282
+ "original_file_name": {"data_type": "text", "field_type": "column"},
6283
+ "s3_permission": {"data_type": "text", "field_type": "column"},
6284
+ "seq_number": {"data_type": "bigint", "field_type": "column"},
6285
+ "storage_type": {"data_type": "text", "field_type": "column"},
6286
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6287
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6288
+ "upload_state": {"data_type": "text", "field_type": "column"},
6289
+ "url": {"data_type": "text", "field_type": "column"},
6290
+ },
6291
+ },
6292
+ "configuration_value": {
6293
+ "endpoint": "configuration_value",
6294
+ "fields": {
6295
+ "client_ref": {"data_type": "bigint", "field_type": "column"},
6296
+ "config_key": {"data_type": "text", "field_type": "column"},
6297
+ "config_value": {"data_type": "text", "field_type": "column"},
6298
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6299
+ "id": {"data_type": "bigint", "field_type": "column"},
6300
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6301
+ },
6302
+ },
6303
+ "cpi": {
6304
+ "endpoint": "cpi",
6305
+ "fields": {
6306
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6307
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6308
+ "id": {"data_type": "bigint", "field_type": "column"},
6309
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6310
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6311
+ "value": {"data_type": "double", "field_type": "column"},
6312
+ "year": {"data_type": "bigint", "field_type": "column"},
6313
+ },
6314
+ },
6315
+ "dashboard_group": {
6316
+ "endpoint": "dashboard_group",
6317
+ "fields": {
6318
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6319
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6320
+ "id": {"data_type": "bigint", "field_type": "column"},
6321
+ "table_view": {"data_type": "bool", "field_type": "column"},
6322
+ "title": {"data_type": "text", "field_type": "column"},
6323
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6324
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6325
+ },
6326
+ },
6327
+ "dashboard_template": {
6328
+ "endpoint": "dashboard_template",
6329
+ "fields": {
6330
+ "client_store_type": {"data_type": "text", "field_type": "column"},
6331
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6332
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6333
+ "data": {"data_type": "text", "field_type": "column"},
6334
+ "description": {"data_type": "text", "field_type": "column"},
6335
+ "enable_multi_language_support": {
6336
+ "data_type": "bool",
6337
+ "field_type": "column",
6338
+ },
6339
+ "id": {"data_type": "bigint", "field_type": "column"},
6340
+ "locked": {"data_type": "bool", "field_type": "column"},
6341
+ "original_client_store_id": {"data_type": "bigint", "field_type": "column"},
6342
+ "shared": {"data_type": "bool", "field_type": "column"},
6343
+ "sphinx_id": {"data_type": "bigint", "field_type": "column"},
6344
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6345
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6346
+ },
6347
+ },
6348
+ "demographic_category": {
6349
+ "endpoint": "demographic_category",
6350
+ "fields": {
6351
+ "candid_category_id": {"data_type": "bigint", "field_type": "column"},
6352
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6353
+ "id": {"data_type": "bigint", "field_type": "column"},
6354
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6355
+ },
6356
+ },
6357
+ "demographic_item": {
6358
+ "endpoint": "demographic_item",
6359
+ "fields": {
6360
+ "board_members": {"data_type": "bigint", "field_type": "column"},
6361
+ "candid_subcategory_id": {"data_type": "bigint", "field_type": "column"},
6362
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6363
+ "demographic_category_id": {"data_type": "bigint", "field_type": "column"},
6364
+ "id": {"data_type": "text", "field_type": "column"},
6365
+ "label": {"data_type": "text", "field_type": "column"},
6366
+ "member_count": {"data_type": "bigint", "field_type": "column"},
6367
+ "reported_by_ceo": {"data_type": "bool", "field_type": "column"},
6368
+ "reported_by_coceo": {"data_type": "bool", "field_type": "column"},
6369
+ "senior_staff": {"data_type": "bigint", "field_type": "column"},
6370
+ "staff": {"data_type": "bigint", "field_type": "column"},
6371
+ "tax_id": {"data_type": "text", "field_type": "column"},
6372
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6373
+ },
6374
+ },
6375
+ "document": {
6376
+ "endpoint": "document",
6377
+ "fields": {
6378
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6379
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6380
+ "document_content_type": {"data_type": "text", "field_type": "column"},
6381
+ "document_file_name": {"data_type": "text", "field_type": "column"},
6382
+ "document_file_size": {"data_type": "bigint", "field_type": "column"},
6383
+ "document_updated_at": {"data_type": "timestamp", "field_type": "column"},
6384
+ "id": {"data_type": "bigint", "field_type": "column"},
6385
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6386
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6387
+ },
6388
+ },
6389
+ "docusign_token": {
6390
+ "endpoint": "docusign_token",
6391
+ "fields": {
6392
+ "access_token": {"data_type": "text", "field_type": "column"},
6393
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6394
+ "expires_at": {"data_type": "timestamp", "field_type": "column"},
6395
+ "id": {"data_type": "bigint", "field_type": "column"},
6396
+ "refresh_token": {"data_type": "text", "field_type": "column"},
6397
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6398
+ },
6399
+ },
6400
+ "email_user": {
6401
+ "endpoint": "email_user",
6402
+ "fields": {
6403
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6404
+ "id": {"data_type": "bigint", "field_type": "column"},
6405
+ "model_email_id": {"data_type": "bigint", "field_type": "column"},
6406
+ "relation_type": {"data_type": "text", "field_type": "column"},
6407
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6408
+ "user_id": {"data_type": "bigint", "field_type": "column"},
6409
+ },
6410
+ },
6411
+ "expirable_token": {
6412
+ "endpoint": "expirable_token",
6413
+ "fields": {
6414
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6415
+ "expires_at": {"data_type": "timestamp", "field_type": "column"},
6416
+ "id": {"data_type": "bigint", "field_type": "column"},
6417
+ "purpose": {"data_type": "text", "field_type": "column"},
6418
+ "token_string": {"data_type": "text", "field_type": "column"},
6419
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6420
+ "user_id": {"data_type": "bigint", "field_type": "column"},
6421
+ },
6422
+ },
6423
+ "extract_format": {
6424
+ "endpoint": "extract_format",
6425
+ "fields": {
6426
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6427
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6428
+ "filter": {"data_type": "text", "field_type": "column"},
6429
+ "format": {"data_type": "text", "field_type": "column"},
6430
+ "id": {"data_type": "bigint", "field_type": "column"},
6431
+ "label": {"data_type": "text", "field_type": "column"},
6432
+ "model_type": {"data_type": "text", "field_type": "column"},
6433
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6434
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6435
+ },
6436
+ },
6437
+ "favorite": {
6438
+ "endpoint": "favorite",
6439
+ "fields": {
6440
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6441
+ "favorable_id": {"data_type": "bigint", "field_type": "column"},
6442
+ "favorable_type": {"data_type": "text", "field_type": "column"},
6443
+ "id": {"data_type": "bigint", "field_type": "column"},
6444
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6445
+ "user_id": {"data_type": "bigint", "field_type": "column"},
6446
+ },
6447
+ },
6448
+ "field_list": {
6449
+ "endpoint": "field_list",
6450
+ "fields": {
6451
+ "columns": {"data_type": "text", "field_type": "column"},
6452
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6453
+ "id": {"data_type": "bigint", "field_type": "column"},
6454
+ "model_type": {"data_type": "text", "field_type": "column"},
6455
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6456
+ "use_in_report_builder": {"data_type": "bool", "field_type": "column"},
6457
+ },
6458
+ },
6459
+ "filter": {
6460
+ "endpoint": "filter",
6461
+ "fields": {
6462
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6463
+ "data": {"data_type": "text", "field_type": "column"},
6464
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6465
+ "filter_name": {"data_type": "text", "field_type": "column"},
6466
+ "id": {"data_type": "bigint", "field_type": "column"},
6467
+ "model_type": {"data_type": "text", "field_type": "column"},
6468
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6469
+ "user_id": {"data_type": "bigint", "field_type": "column"},
6470
+ "view_type": {"data_type": "text", "field_type": "column"},
6471
+ },
6472
+ },
6473
+ "form": {
6474
+ "endpoint": "form",
6475
+ "fields": {
6476
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6477
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6478
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6479
+ "enabled": {"data_type": "bool", "field_type": "column"},
6480
+ "file_path": {"data_type": "text", "field_type": "column"},
6481
+ "form_type": {"data_type": "text", "field_type": "column"},
6482
+ "form_type_suffix": {"data_type": "text", "field_type": "column"},
6483
+ "id": {"data_type": "bigint", "field_type": "column"},
6484
+ "liquid_text": {"data_type": "text", "field_type": "column"},
6485
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
6486
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
6487
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
6488
+ "model_type": {"data_type": "text", "field_type": "column"},
6489
+ "previous_state": {"data_type": "text", "field_type": "string"},
6490
+ "state": {"data_type": "text", "field_type": "column"},
6491
+ "state_description": {"data_type": "text", "field_type": "string"},
6492
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6493
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6494
+ },
6495
+ },
6496
+ "form_element": {
6497
+ "endpoint": "form_element",
6498
+ "fields": {
6499
+ "config": {"data_type": "text", "field_type": "column"},
6500
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6501
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6502
+ "dropdown_filter": {"data_type": "text", "field_type": "column"},
6503
+ "element_name": {"data_type": "text", "field_type": "column"},
6504
+ "element_order": {"data_type": "bigint", "field_type": "column"},
6505
+ "element_type": {"data_type": "text", "field_type": "column"},
6506
+ "element_uid": {"data_type": "text", "field_type": "column"},
6507
+ "form_id": {"data_type": "bigint", "field_type": "column"},
6508
+ "id": {"data_type": "bigint", "field_type": "column"},
6509
+ "label": {"data_type": "text", "field_type": "column"},
6510
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
6511
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
6512
+ "max_value": {"data_type": "double", "field_type": "column"},
6513
+ "min_value": {"data_type": "double", "field_type": "column"},
6514
+ "required": {"data_type": "bool", "field_type": "column"},
6515
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6516
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6517
+ "use_local_currency": {"data_type": "bool", "field_type": "column"},
6518
+ },
6519
+ },
6520
+ "fund": {
6521
+ "endpoint": "fund",
6522
+ "fields": {
6523
+ "all_notes": {"data_type": "text", "field_type": "string"},
6524
+ "balance": {"data_type": "double", "field_type": "column"},
6525
+ "can_be_over_allocated": {"data_type": "bool", "field_type": "column"},
6526
+ "closed_at": {"data_type": "timestamp", "field_type": "column"},
6527
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6528
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6529
+ "delta": {"data_type": "bool", "field_type": "column"},
6530
+ "filter_state": {"data_type": "text", "field_type": "string"},
6531
+ "id": {"data_type": "bigint", "field_type": "column"},
6532
+ "illiquid_balance": {"data_type": "double", "field_type": "column"},
6533
+ "is_invested": {"data_type": "bool", "field_type": "column"},
6534
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6535
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6536
+ "opened_at": {"data_type": "timestamp", "field_type": "column"},
6537
+ "previous_state": {"data_type": "text", "field_type": "string"},
6538
+ "state": {"data_type": "text", "field_type": "column"},
6539
+ "state_description": {"data_type": "text", "field_type": "string"},
6540
+ "state_to_english": {"data_type": "text", "field_type": "string"},
6541
+ "to_s": {"data_type": "text", "field_type": "string"},
6542
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6543
+ },
6544
+ },
6545
+ "fund_docket": {
6546
+ "endpoint": "fund_docket",
6547
+ "fields": {
6548
+ "all_notes": {"data_type": "text", "field_type": "string"},
6549
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6550
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6551
+ "filter_state": {"data_type": "text", "field_type": "string"},
6552
+ "funding_source_allocation_id": {
6553
+ "data_type": "bigint",
6554
+ "field_type": "column",
6555
+ },
6556
+ "id": {"data_type": "bigint", "field_type": "column"},
6557
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
6558
+ "previous_state": {"data_type": "text", "field_type": "string"},
6559
+ "state": {"data_type": "text", "field_type": "column"},
6560
+ "state_description": {"data_type": "text", "field_type": "string"},
6561
+ "state_to_english": {"data_type": "text", "field_type": "string"},
6562
+ "to_request_state_id": {"data_type": "bigint", "field_type": "column"},
6563
+ "to_s": {"data_type": "text", "field_type": "string"},
6564
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6565
+ },
6566
+ },
6567
+ "fund_line_item": {
6568
+ "endpoint": "fund_line_item",
6569
+ "fields": {
6570
+ "amount": {"data_type": "double", "field_type": "column"},
6571
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6572
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6573
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6574
+ "description": {"data_type": "text", "field_type": "column"},
6575
+ "fund_id": {"data_type": "bigint", "field_type": "column"},
6576
+ "id": {"data_type": "bigint", "field_type": "column"},
6577
+ "is_debit": {"data_type": "bool", "field_type": "column"},
6578
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6579
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6580
+ "transacted_at": {"data_type": "timestamp", "field_type": "column"},
6581
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6582
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6583
+ },
6584
+ },
6585
+ "funding_source": {
6586
+ "endpoint": "funding_source",
6587
+ "fields": {
6588
+ "account_group": {"data_type": "text", "field_type": "column"},
6589
+ "all_notes": {"data_type": "text", "field_type": "string"},
6590
+ "amount": {"data_type": "double", "field_type": "column"},
6591
+ "amount_budgeted": {"data_type": "double", "field_type": "column"},
6592
+ "amount_requested": {"data_type": "double", "field_type": "column"},
6593
+ "calculated_amount_spent": {"data_type": "double", "field_type": "column"},
6594
+ "company_code": {"data_type": "text", "field_type": "column"},
6595
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6596
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6597
+ "delta": {"data_type": "bool", "field_type": "column"},
6598
+ "end_at": {"data_type": "timestamp", "field_type": "column"},
6599
+ "ext_sync_at": {"data_type": "timestamp", "field_type": "column"},
6600
+ "ext_sync_id": {"data_type": "text", "field_type": "column"},
6601
+ "filter_state": {"data_type": "text", "field_type": "string"},
6602
+ "fund_closing_date": {"data_type": "date", "field_type": "column"},
6603
+ "fund_opening_date": {"data_type": "date", "field_type": "column"},
6604
+ "funding_source_notes*": {"data_type": "text", "field_type": "column"},
6605
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
6606
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
6607
+ "geographic_restrictions": {"data_type": "text", "field_type": "column"},
6608
+ "gst_exempt": {"data_type": "bool", "field_type": "column"},
6609
+ "id": {"data_type": "bigint", "field_type": "column"},
6610
+ "liability_account": {"data_type": "text", "field_type": "column"},
6611
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6612
+ "net_available_to_spend_amount": {
6613
+ "data_type": "double",
6614
+ "field_type": "column",
6615
+ },
6616
+ "overhead_amount": {"data_type": "double", "field_type": "column"},
6617
+ "payment_method": {"data_type": "text", "field_type": "column"},
6618
+ "previous_state": {"data_type": "text", "field_type": "string"},
6619
+ "probability": {"data_type": "text", "field_type": "column"},
6620
+ "reconciliation_account": {"data_type": "text", "field_type": "column"},
6621
+ "report_date_at": {"data_type": "date", "field_type": "column"},
6622
+ "restricted_funds": {"data_type": "bool", "field_type": "column"},
6623
+ "retired": {"data_type": "bool", "field_type": "column"},
6624
+ "sap_account_number": {"data_type": "text", "field_type": "column"},
6625
+ "start_at": {"data_type": "timestamp", "field_type": "column"},
6626
+ "state": {"data_type": "text", "field_type": "column"},
6627
+ "state_description": {"data_type": "text", "field_type": "string"},
6628
+ "state_to_english": {"data_type": "text", "field_type": "string"},
6629
+ "to_s": {"data_type": "text", "field_type": "string"},
6630
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6631
+ },
6632
+ },
6633
+ "funding_source_allocation": {
6634
+ "endpoint": "funding_source_allocation",
6635
+ "fields": {
6636
+ "actual_budget_amount": {"data_type": "double", "field_type": "column"},
6637
+ "all_notes": {"data_type": "text", "field_type": "string"},
6638
+ "amount": {"data_type": "double", "field_type": "column"},
6639
+ "budget_amount": {"data_type": "double", "field_type": "column"},
6640
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6641
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6642
+ "etl_amount_granted": {"data_type": "double", "field_type": "column"},
6643
+ "etl_amount_paid": {"data_type": "double", "field_type": "column"},
6644
+ "etl_amount_pipeline": {"data_type": "double", "field_type": "column"},
6645
+ "etl_amount_unpaid": {"data_type": "double", "field_type": "column"},
6646
+ "etl_num_granted": {"data_type": "bigint", "field_type": "column"},
6647
+ "etl_num_pipeline": {"data_type": "bigint", "field_type": "column"},
6648
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
6649
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
6650
+ "id": {"data_type": "bigint", "field_type": "column"},
6651
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
6652
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
6653
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6654
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6655
+ "retired": {"data_type": "bool", "field_type": "column"},
6656
+ "spending_year": {"data_type": "text", "field_type": "column"},
6657
+ "title": {"data_type": "text", "field_type": "string"},
6658
+ "to_s": {"data_type": "text", "field_type": "string"},
6659
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6660
+ },
6661
+ },
6662
+ "funding_source_allocation_authority": {
6663
+ "endpoint": "funding_source_allocation_authority",
6664
+ "fields": {
6665
+ "amount": {"data_type": "double", "field_type": "column"},
6666
+ "authority_id": {"data_type": "bigint", "field_type": "column"},
6667
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6668
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6669
+ "funding_source_allocation_id": {
6670
+ "data_type": "bigint",
6671
+ "field_type": "column",
6672
+ },
6673
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
6674
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
6675
+ "id": {"data_type": "bigint", "field_type": "column"},
6676
+ "note": {"data_type": "text", "field_type": "column"},
6677
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6678
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6679
+ },
6680
+ },
6681
+ "funding_source_forecast": {
6682
+ "endpoint": "funding_source_forecast",
6683
+ "fields": {
6684
+ "amount_available_to_spend": {
6685
+ "data_type": "double",
6686
+ "field_type": "column",
6687
+ },
6688
+ "amount_overhead": {"data_type": "double", "field_type": "column"},
6689
+ "amount_received": {"data_type": "double", "field_type": "column"},
6690
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6691
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6692
+ "funding_source_id": {"data_type": "bigint", "field_type": "column"},
6693
+ "id": {"data_type": "bigint", "field_type": "column"},
6694
+ "office": {"data_type": "text", "field_type": "column"},
6695
+ "percent_overhead": {"data_type": "double", "field_type": "column"},
6696
+ "spending_year": {"data_type": "text", "field_type": "column"},
6697
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6698
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6699
+ },
6700
+ },
6701
+ "fx_conversion": {
6702
+ "endpoint": "fx_conversion",
6703
+ "fields": {
6704
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6705
+ "fx_date": {"data_type": "date", "field_type": "column"},
6706
+ "fx_rate": {"data_type": "double", "field_type": "column"},
6707
+ "fx_source": {"data_type": "text", "field_type": "column"},
6708
+ "fx_type_from_id": {"data_type": "bigint", "field_type": "column"},
6709
+ "fx_type_to_id": {"data_type": "bigint", "field_type": "column"},
6710
+ "id": {"data_type": "bigint", "field_type": "column"},
6711
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6712
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6713
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6714
+ },
6715
+ },
6716
+ "fx_type": {
6717
+ "endpoint": "fx_type",
6718
+ "fields": {
6719
+ "all_notes": {"data_type": "text", "field_type": "string"},
6720
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6721
+ "id": {"data_type": "bigint", "field_type": "column"},
6722
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6723
+ "to_s": {"data_type": "text", "field_type": "string"},
6724
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6725
+ },
6726
+ },
6727
+ "generic_template": {
6728
+ "endpoint": "generic_template",
6729
+ "fields": {
6730
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6731
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6732
+ "id": {"data_type": "bigint", "field_type": "column"},
6733
+ "test_1*": {"data_type": "text", "field_type": "column"},
6734
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6735
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6736
+ },
6737
+ },
6738
+ "geo_country": {
6739
+ "endpoint": "geo_country",
6740
+ "fields": {
6741
+ "capital": {"data_type": "text", "field_type": "column"},
6742
+ "comment": {"data_type": "text", "field_type": "column"},
6743
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6744
+ "currency": {"data_type": "text", "field_type": "column"},
6745
+ "currency_code": {"data_type": "text", "field_type": "column"},
6746
+ "es_name": {"data_type": "text", "field_type": "column"},
6747
+ "fips104": {"data_type": "text", "field_type": "column"},
6748
+ "geo_names_id": {"data_type": "bigint", "field_type": "column"},
6749
+ "ht_name": {"data_type": "text", "field_type": "column"},
6750
+ "id": {"data_type": "bigint", "field_type": "column"},
6751
+ "internet": {"data_type": "text", "field_type": "column"},
6752
+ "iso2": {"data_type": "text", "field_type": "column"},
6753
+ "iso3": {"data_type": "text", "field_type": "column"},
6754
+ "ison": {"data_type": "text", "field_type": "column"},
6755
+ "latitude": {"data_type": "double", "field_type": "column"},
6756
+ "longitude": {"data_type": "double", "field_type": "column"},
6757
+ "map_reference": {"data_type": "text", "field_type": "column"},
6758
+ "nationality_plural": {"data_type": "text", "field_type": "column"},
6759
+ "nationality_singular": {"data_type": "text", "field_type": "column"},
6760
+ "population": {"data_type": "text", "field_type": "column"},
6761
+ "retired": {"data_type": "bool", "field_type": "column"},
6762
+ "title": {"data_type": "text", "field_type": "column"},
6763
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6764
+ },
6765
+ },
6766
+ "geo_place_relationship": {
6767
+ "endpoint": "geo_place_relationship",
6768
+ "fields": {
6769
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6770
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
6771
+ "geo_place_id": {"data_type": "bigint", "field_type": "column"},
6772
+ "geoplaceable_id": {"data_type": "bigint", "field_type": "column"},
6773
+ "geoplaceable_type": {"data_type": "text", "field_type": "column"},
6774
+ "id": {"data_type": "bigint", "field_type": "column"},
6775
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6776
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6777
+ "percent": {"data_type": "bigint", "field_type": "column"},
6778
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
6779
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
6780
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
6781
+ },
6782
+ },
6783
+ "grant_outcome": {
6784
+ "endpoint": "grant_outcome",
6785
+ "fields": {
6786
+ "grant_request_workflow_state": {
6787
+ "data_type": "text",
6788
+ "field_type": "string",
6789
+ },
6790
+ "id": {"data_type": "bigint", "field_type": "column"},
6791
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6792
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6793
+ "request_id": {"data_type": "bigint", "field_type": "column"},
6794
+ },
6795
+ },
6796
+ "grant_outcome_progress_report": {
6797
+ "endpoint": "grant_outcome_progress_report",
6798
+ "fields": {
6799
+ "id": {"data_type": "bigint", "field_type": "column"},
6800
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6801
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6802
+ "request_report_id": {"data_type": "bigint", "field_type": "column"},
6803
+ },
6804
+ },
6805
+ "grant_outcome_progress_report_row": {
6806
+ "endpoint": "grant_outcome_progress_report_row",
6807
+ "fields": {
6808
+ "actual": {"data_type": "double", "field_type": "column"},
6809
+ "grant_outcome_progress_report_id": {
6810
+ "data_type": "bigint",
6811
+ "field_type": "column",
6812
+ },
6813
+ "grant_outcome_row_id": {"data_type": "bigint", "field_type": "column"},
6814
+ "grantee_comments": {"data_type": "text", "field_type": "column"},
6815
+ "id": {"data_type": "bigint", "field_type": "column"},
6816
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6817
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6818
+ "staff_feedback": {"data_type": "text", "field_type": "column"},
6819
+ "staff_feedback_internal": {"data_type": "text", "field_type": "column"},
6820
+ },
6821
+ },
6822
+ "grant_outcome_row": {
6823
+ "endpoint": "grant_outcome_row",
6824
+ "fields": {
6825
+ "grant_outcome_id": {"data_type": "bigint", "field_type": "column"},
6826
+ "grantee_comments": {"data_type": "text", "field_type": "column"},
6827
+ "id": {"data_type": "bigint", "field_type": "column"},
6828
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6829
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6830
+ "order": {"data_type": "bigint", "field_type": "column"},
6831
+ "outcome_type": {"data_type": "text", "field_type": "column"},
6832
+ "parent_grant_outcome_row_id": {
6833
+ "data_type": "bigint",
6834
+ "field_type": "column",
6835
+ },
6836
+ "pledge": {"data_type": "double", "field_type": "column"},
6837
+ "staff_feedback": {"data_type": "text", "field_type": "column"},
6838
+ "staff_feedback_internal": {"data_type": "text", "field_type": "column"},
6839
+ "unit": {"data_type": "text", "field_type": "column"},
6840
+ },
6841
+ },
6842
+ "grant_output": {
6843
+ "endpoint": "grant_output",
6844
+ "fields": {
6845
+ "grant_request_workflow_state": {
6846
+ "data_type": "text",
6847
+ "field_type": "string",
6848
+ },
6849
+ "id": {"data_type": "bigint", "field_type": "column"},
6850
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6851
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6852
+ "request_id": {"data_type": "bigint", "field_type": "column"},
6853
+ },
6854
+ },
6855
+ "grant_output_period": {
6856
+ "endpoint": "grant_output_period",
6857
+ "fields": {
6858
+ "grant_output_id": {"data_type": "bigint", "field_type": "column"},
6859
+ "id": {"data_type": "bigint", "field_type": "column"},
6860
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6861
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6862
+ "order": {"data_type": "bigint", "field_type": "column"},
6863
+ },
6864
+ },
6865
+ "grant_output_period_datum": {
6866
+ "endpoint": "grant_output_period_datum",
6867
+ "fields": {
6868
+ "grant_output_period_id": {"data_type": "bigint", "field_type": "column"},
6869
+ "grant_output_row_id": {"data_type": "bigint", "field_type": "column"},
6870
+ "id": {"data_type": "bigint", "field_type": "column"},
6871
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6872
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6873
+ "value": {"data_type": "double", "field_type": "column"},
6874
+ },
6875
+ },
6876
+ "grant_output_progress_report": {
6877
+ "endpoint": "grant_output_progress_report",
6878
+ "fields": {
6879
+ "id": {"data_type": "bigint", "field_type": "column"},
6880
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6881
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6882
+ "request_report_id": {"data_type": "bigint", "field_type": "column"},
6883
+ },
6884
+ },
6885
+ "grant_output_progress_report_datum": {
6886
+ "endpoint": "grant_output_progress_report_datum",
6887
+ "fields": {
6888
+ "cumulative_total": {"data_type": "double", "field_type": "column"},
6889
+ "grant_output_progress_report_id": {
6890
+ "data_type": "bigint",
6891
+ "field_type": "column",
6892
+ },
6893
+ "grant_output_row_id": {"data_type": "bigint", "field_type": "column"},
6894
+ "grantee_comments": {"data_type": "text", "field_type": "column"},
6895
+ "id": {"data_type": "bigint", "field_type": "column"},
6896
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6897
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6898
+ "staff_feedback": {"data_type": "text", "field_type": "column"},
6899
+ "staff_feedback_internal": {"data_type": "text", "field_type": "column"},
6900
+ "value": {"data_type": "double", "field_type": "column"},
6901
+ },
6902
+ },
6903
+ "grant_output_row": {
6904
+ "endpoint": "grant_output_row",
6905
+ "fields": {
6906
+ "grant_output_id": {"data_type": "bigint", "field_type": "column"},
6907
+ "grantee_comments": {"data_type": "text", "field_type": "column"},
6908
+ "id": {"data_type": "bigint", "field_type": "column"},
6909
+ "migrate_id": {"data_type": "text", "field_type": "column"},
6910
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
6911
+ "order": {"data_type": "bigint", "field_type": "column"},
6912
+ "parent_grant_output_row_id": {
6913
+ "data_type": "bigint",
6914
+ "field_type": "column",
6915
+ },
6916
+ "staff_feedback": {"data_type": "text", "field_type": "column"},
6917
+ "staff_feedback_internal": {"data_type": "text", "field_type": "column"},
6918
+ "total": {"data_type": "double", "field_type": "column"},
6919
+ },
6920
+ },
6921
+ "grantee_budget": {
6922
+ "endpoint": "grantee_budget",
6923
+ "fields": {
6924
+ "actual_total": {"data_type": "double", "field_type": "column"},
6925
+ "all_notes": {"data_type": "text", "field_type": "string"},
6926
+ "budgeted_total": {"data_type": "double", "field_type": "column"},
6927
+ "budgeted_update_total": {"data_type": "double", "field_type": "column"},
6928
+ "carryover": {"data_type": "double", "field_type": "column"},
6929
+ "comments*": {"data_type": "text", "field_type": "column"},
6930
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
6931
+ "custom_fields": {"data_type": "text", "field_type": "column"},
6932
+ "custom_fields_actual_total": {
6933
+ "data_type": "double",
6934
+ "field_type": "column",
6935
+ },
6936
+ "custom_fields_budgeted_total": {
6937
+ "data_type": "double",
6938
+ "field_type": "column",
6939
+ },
6940
+ "custom_fields_budgeted_update_total": {
6941
+ "data_type": "double",
6942
+ "field_type": "column",
6943
+ },
6944
+ "custom_fields_original_budgeted_total": {
6945
+ "data_type": "double",
6946
+ "field_type": "column",
6947
+ },
6948
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
6949
+ "delta": {"data_type": "bool", "field_type": "column"},
6950
+ "end_date": {"data_type": "timestamp", "field_type": "column"},
6951
+ "equipiment_actual*": {"data_type": "text", "field_type": "column"},
6952
+ "equipiment_additional_col_1*": {
6953
+ "data_type": "text",
6954
+ "field_type": "column",
6955
+ },
6956
+ "equipiment_additional_col_2*": {
6957
+ "data_type": "text",
6958
+ "field_type": "column",
6959
+ },
6960
+ "equipiment_additional_col_3*": {
6961
+ "data_type": "text",
6962
+ "field_type": "column",
6963
+ },
6964
+ "equipiment_budgeted*": {"data_type": "text", "field_type": "column"},
6965
+ "equipiment_budgeted_update*": {
6966
+ "data_type": "text",
6967
+ "field_type": "column",
6968
+ },
6969
+ "equipiment_original_budgeted*": {
6970
+ "data_type": "text",
6971
+ "field_type": "column",
6972
+ },
6973
+ "filter_state": {"data_type": "text", "field_type": "string"},
6974
+ "general_project_expenses_actual*": {
6975
+ "data_type": "text",
6976
+ "field_type": "column",
6977
+ },
6978
+ "general_project_expenses_additional_col_1*": {
6979
+ "data_type": "text",
6980
+ "field_type": "column",
6981
+ },
6982
+ "general_project_expenses_additional_col_2*": {
6983
+ "data_type": "text",
6984
+ "field_type": "column",
6985
+ },
6986
+ "general_project_expenses_additional_col_3*": {
6987
+ "data_type": "text",
6988
+ "field_type": "column",
6989
+ },
6990
+ "general_project_expenses_budgeted*": {
6991
+ "data_type": "text",
6992
+ "field_type": "column",
6993
+ },
6994
+ "general_project_expenses_budgeted_update*": {
6995
+ "data_type": "text",
6996
+ "field_type": "column",
6997
+ },
6998
+ "general_project_expenses_original_budgeted*": {
6999
+ "data_type": "text",
7000
+ "field_type": "column",
7001
+ },
7002
+ "grant_request_workflow_state": {
7003
+ "data_type": "text",
7004
+ "field_type": "string",
7005
+ },
7006
+ "id": {"data_type": "bigint", "field_type": "column"},
7007
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
7008
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
7009
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
7010
+ "materials_supplies_actual*": {"data_type": "text", "field_type": "column"},
7011
+ "materials_supplies_additional_col_1*": {
7012
+ "data_type": "text",
7013
+ "field_type": "column",
7014
+ },
7015
+ "materials_supplies_additional_col_2*": {
7016
+ "data_type": "text",
7017
+ "field_type": "column",
7018
+ },
7019
+ "materials_supplies_additional_col_3*": {
7020
+ "data_type": "text",
7021
+ "field_type": "column",
7022
+ },
7023
+ "materials_supplies_budgeted*": {
7024
+ "data_type": "text",
7025
+ "field_type": "column",
7026
+ },
7027
+ "materials_supplies_budgeted_update*": {
7028
+ "data_type": "text",
7029
+ "field_type": "column",
7030
+ },
7031
+ "materials_supplies_original_budgeted*": {
7032
+ "data_type": "text",
7033
+ "field_type": "column",
7034
+ },
7035
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7036
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7037
+ "modify_budget_enabled": {"data_type": "bool", "field_type": "column"},
7038
+ "original_budgeted_total": {"data_type": "double", "field_type": "column"},
7039
+ "previous_state": {"data_type": "text", "field_type": "string"},
7040
+ "request_grant_id": {"data_type": "bigint", "field_type": "string"},
7041
+ "request_grantee_user_name": {"data_type": "text", "field_type": "string"},
7042
+ "request_org_acronym": {"data_type": "text", "field_type": "string"},
7043
+ "request_org_name": {"data_type": "text", "field_type": "string"},
7044
+ "section_id": {"data_type": "bigint", "field_type": "column"},
7045
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
7046
+ "settings": {"data_type": "text", "field_type": "column"},
7047
+ "speakerinstructor_fees_actual*": {
7048
+ "data_type": "text",
7049
+ "field_type": "column",
7050
+ },
7051
+ "speakerinstructor_fees_additional_col_1*": {
7052
+ "data_type": "text",
7053
+ "field_type": "column",
7054
+ },
7055
+ "speakerinstructor_fees_additional_col_2*": {
7056
+ "data_type": "text",
7057
+ "field_type": "column",
7058
+ },
7059
+ "speakerinstructor_fees_additional_col_3*": {
7060
+ "data_type": "text",
7061
+ "field_type": "column",
7062
+ },
7063
+ "speakerinstructor_fees_budgeted*": {
7064
+ "data_type": "text",
7065
+ "field_type": "column",
7066
+ },
7067
+ "speakerinstructor_fees_budgeted_update*": {
7068
+ "data_type": "text",
7069
+ "field_type": "column",
7070
+ },
7071
+ "speakerinstructor_fees_original_budgeted*": {
7072
+ "data_type": "text",
7073
+ "field_type": "column",
7074
+ },
7075
+ "start_date": {"data_type": "timestamp", "field_type": "column"},
7076
+ "state": {"data_type": "text", "field_type": "column"},
7077
+ "state_description": {"data_type": "text", "field_type": "string"},
7078
+ "state_to_english": {"data_type": "text", "field_type": "string"},
7079
+ "subline_items": {"data_type": "text", "field_type": "column"},
7080
+ "support_services_actual*": {"data_type": "text", "field_type": "column"},
7081
+ "support_services_additional_col_1*": {
7082
+ "data_type": "text",
7083
+ "field_type": "column",
7084
+ },
7085
+ "support_services_additional_col_2*": {
7086
+ "data_type": "text",
7087
+ "field_type": "column",
7088
+ },
7089
+ "support_services_additional_col_3*": {
7090
+ "data_type": "text",
7091
+ "field_type": "column",
7092
+ },
7093
+ "support_services_budgeted*": {"data_type": "text", "field_type": "column"},
7094
+ "support_services_budgeted_update*": {
7095
+ "data_type": "text",
7096
+ "field_type": "column",
7097
+ },
7098
+ "support_services_original_budgeted*": {
7099
+ "data_type": "text",
7100
+ "field_type": "column",
7101
+ },
7102
+ "to_s": {"data_type": "text", "field_type": "string"},
7103
+ "travel_expenses_actual*": {"data_type": "text", "field_type": "column"},
7104
+ "travel_expenses_additional_col_1*": {
7105
+ "data_type": "text",
7106
+ "field_type": "column",
7107
+ },
7108
+ "travel_expenses_additional_col_2*": {
7109
+ "data_type": "text",
7110
+ "field_type": "column",
7111
+ },
7112
+ "travel_expenses_additional_col_3*": {
7113
+ "data_type": "text",
7114
+ "field_type": "column",
7115
+ },
7116
+ "travel_expenses_budgeted*": {"data_type": "text", "field_type": "column"},
7117
+ "travel_expenses_budgeted_update*": {
7118
+ "data_type": "text",
7119
+ "field_type": "column",
7120
+ },
7121
+ "travel_expenses_original_budgeted*": {
7122
+ "data_type": "text",
7123
+ "field_type": "column",
7124
+ },
7125
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7126
+ },
7127
+ },
7128
+ "grantee_budget_category_group": {
7129
+ "endpoint": "grantee_budget_category_group",
7130
+ "fields": {
7131
+ "code_column_hidden": {"data_type": "bool", "field_type": "column"},
7132
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7133
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7134
+ "description_column_hidden": {"data_type": "bool", "field_type": "column"},
7135
+ "id": {"data_type": "bigint", "field_type": "column"},
7136
+ "locked_by": {"data_type": "bigint", "field_type": "column"},
7137
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7138
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7139
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7140
+ },
7141
+ },
7142
+ "grantee_budget_category_group_relationship": {
7143
+ "endpoint": "grantee_budget_category_group_relationship",
7144
+ "fields": {
7145
+ "archived_at": {"data_type": "timestamp", "field_type": "column"},
7146
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7147
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7148
+ "grantee_budget_category_group_id": {
7149
+ "data_type": "bigint",
7150
+ "field_type": "column",
7151
+ },
7152
+ "grantee_budget_category_id": {
7153
+ "data_type": "bigint",
7154
+ "field_type": "column",
7155
+ },
7156
+ "id": {"data_type": "bigint", "field_type": "column"},
7157
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7158
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7159
+ "position": {"data_type": "bigint", "field_type": "column"},
7160
+ "unit_rate_enabled": {"data_type": "bool", "field_type": "column"},
7161
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7162
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7163
+ },
7164
+ },
7165
+ "grantee_budget_tracker_period_amendment": {
7166
+ "endpoint": "grantee_budget_tracker_period_amendment",
7167
+ "fields": {
7168
+ "amended_amount": {"data_type": "double", "field_type": "column"},
7169
+ "amendment_id": {"data_type": "bigint", "field_type": "column"},
7170
+ "grantee_budget_tracker_period_datum_id": {
7171
+ "data_type": "bigint",
7172
+ "field_type": "column",
7173
+ },
7174
+ "id": {"data_type": "bigint", "field_type": "column"},
7175
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7176
+ },
7177
+ },
7178
+ "grantee_whitelist": {
7179
+ "endpoint": "grantee_whitelist",
7180
+ "fields": {
7181
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7182
+ "id": {"data_type": "bigint", "field_type": "column"},
7183
+ "model_id": {"data_type": "bigint", "field_type": "column"},
7184
+ "model_type": {"data_type": "text", "field_type": "column"},
7185
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7186
+ "user_id": {"data_type": "bigint", "field_type": "column"},
7187
+ },
7188
+ },
7189
+ "group": {
7190
+ "endpoint": "group",
7191
+ "fields": {
7192
+ "all_notes": {"data_type": "text", "field_type": "string"},
7193
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7194
+ "deprecated": {"data_type": "bool", "field_type": "column"},
7195
+ "hierarchical": {"data_type": "bool", "field_type": "column"},
7196
+ "id": {"data_type": "bigint", "field_type": "column"},
7197
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7198
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7199
+ "to_s": {"data_type": "text", "field_type": "string"},
7200
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7201
+ },
7202
+ },
7203
+ "group_member": {
7204
+ "endpoint": "group_member",
7205
+ "fields": {
7206
+ "ancestry": {"data_type": "text", "field_type": "column"},
7207
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7208
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7209
+ "group_id": {"data_type": "bigint", "field_type": "column"},
7210
+ "groupable_id": {"data_type": "bigint", "field_type": "column"},
7211
+ "groupable_type": {"data_type": "text", "field_type": "column"},
7212
+ "id": {"data_type": "bigint", "field_type": "column"},
7213
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7214
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7215
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
7216
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7217
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7218
+ },
7219
+ },
7220
+ "gs_stream": {
7221
+ "endpoint": "gs_stream",
7222
+ "fields": {
7223
+ "all_notes": {"data_type": "text", "field_type": "string"},
7224
+ "author_name": {"data_type": "text", "field_type": "column"},
7225
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7226
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7227
+ "description": {"data_type": "text", "field_type": "column"},
7228
+ "entry_date": {"data_type": "timestamp", "field_type": "column"},
7229
+ "id": {"data_type": "bigint", "field_type": "column"},
7230
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
7231
+ "media": {"data_type": "text", "field_type": "column"},
7232
+ "metrics": {"data_type": "text", "field_type": "column"},
7233
+ "organization_id": {"data_type": "bigint", "field_type": "column"},
7234
+ "sentiment": {"data_type": "bigint", "field_type": "column"},
7235
+ "title": {"data_type": "text", "field_type": "column"},
7236
+ "to_s": {"data_type": "text", "field_type": "string"},
7237
+ "uid": {"data_type": "text", "field_type": "column"},
7238
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7239
+ },
7240
+ },
7241
+ "gs_stream_document": {
7242
+ "endpoint": "gs_stream_document",
7243
+ "fields": {
7244
+ "attachment": {"data_type": "text", "field_type": "column"},
7245
+ "attachment_type": {"data_type": "text", "field_type": "column"},
7246
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7247
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7248
+ "display_name": {"data_type": "text", "field_type": "column"},
7249
+ "file_name": {"data_type": "text", "field_type": "column"},
7250
+ "gs_stream_document_id": {"data_type": "bigint", "field_type": "column"},
7251
+ "gs_stream_id": {"data_type": "bigint", "field_type": "column"},
7252
+ "id": {"data_type": "bigint", "field_type": "column"},
7253
+ "model_id": {"data_type": "bigint", "field_type": "column"},
7254
+ "model_type": {"data_type": "text", "field_type": "column"},
7255
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7256
+ },
7257
+ },
7258
+ "gs_stream_gs_tag": {
7259
+ "endpoint": "gs_stream_gs_tag",
7260
+ "fields": {
7261
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7262
+ "gs_stream_id": {"data_type": "bigint", "field_type": "column"},
7263
+ "gs_tag_id": {"data_type": "bigint", "field_type": "column"},
7264
+ "id": {"data_type": "bigint", "field_type": "column"},
7265
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7266
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7267
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7268
+ },
7269
+ },
7270
+ "gs_stream_request": {
7271
+ "endpoint": "gs_stream_request",
7272
+ "fields": {
7273
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7274
+ "grant_request_workflow_state": {
7275
+ "data_type": "text",
7276
+ "field_type": "string",
7277
+ },
7278
+ "gs_stream_id": {"data_type": "bigint", "field_type": "column"},
7279
+ "id": {"data_type": "bigint", "field_type": "column"},
7280
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7281
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7282
+ "request_id": {"data_type": "bigint", "field_type": "column"},
7283
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
7284
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7285
+ },
7286
+ },
7287
+ "gs_tag": {
7288
+ "endpoint": "gs_tag",
7289
+ "fields": {
7290
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7291
+ "id": {"data_type": "bigint", "field_type": "column"},
7292
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7293
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7294
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7295
+ },
7296
+ },
7297
+ "indicator": {
7298
+ "endpoint": "indicator",
7299
+ "fields": {
7300
+ "all_notes": {"data_type": "text", "field_type": "string"},
7301
+ "baseline": {"data_type": "double", "field_type": "column"},
7302
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7303
+ "decimal_places": {"data_type": "bigint", "field_type": "column"},
7304
+ "description": {"data_type": "text", "field_type": "column"},
7305
+ "exclude_from_mel": {"data_type": "bool", "field_type": "column"},
7306
+ "id": {"data_type": "bigint", "field_type": "column"},
7307
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7308
+ "outcome_id": {"data_type": "bigint", "field_type": "column"},
7309
+ "projected": {"data_type": "double", "field_type": "column"},
7310
+ "retired": {"data_type": "bool", "field_type": "column"},
7311
+ "start_at": {"data_type": "timestamp", "field_type": "column"},
7312
+ "to_s": {"data_type": "text", "field_type": "string"},
7313
+ "unit_label": {"data_type": "text", "field_type": "column"},
7314
+ "unit_type": {"data_type": "text", "field_type": "column"},
7315
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7316
+ },
7317
+ },
7318
+ "integration_filter": {
7319
+ "endpoint": "integration_filter",
7320
+ "fields": {
7321
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7322
+ "custom_model_type": {"data_type": "text", "field_type": "column"},
7323
+ "filters": {"data_type": "text", "field_type": "column"},
7324
+ "filters_v2": {"data_type": "text", "field_type": "column"},
7325
+ "id": {"data_type": "bigint", "field_type": "column"},
7326
+ "integration": {"data_type": "text", "field_type": "column"},
7327
+ "model_type": {"data_type": "text", "field_type": "column"},
7328
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7329
+ "v2": {"data_type": "text", "field_type": "column"},
7330
+ },
7331
+ },
7332
+ "job": {
7333
+ "endpoint": "job",
7334
+ "fields": {
7335
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7336
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7337
+ "delayed_job_id": {"data_type": "bigint", "field_type": "column"},
7338
+ "enter_params": {"data_type": "text", "field_type": "column"},
7339
+ "exit_params": {"data_type": "text", "field_type": "column"},
7340
+ "id": {"data_type": "bigint", "field_type": "column"},
7341
+ "job_type": {"data_type": "text", "field_type": "column"},
7342
+ "list_template": {"data_type": "text", "field_type": "column"},
7343
+ "previous_state": {"data_type": "text", "field_type": "string"},
7344
+ "show_template": {"data_type": "text", "field_type": "column"},
7345
+ "state": {"data_type": "text", "field_type": "column"},
7346
+ "state_description": {"data_type": "text", "field_type": "string"},
7347
+ "status_explanation": {"data_type": "text", "field_type": "column"},
7348
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7349
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7350
+ },
7351
+ },
7352
+ "language": {
7353
+ "endpoint": "language",
7354
+ "fields": {
7355
+ "id": {"data_type": "bigint", "field_type": "column"},
7356
+ "iso_name": {"data_type": "text", "field_type": "column"},
7357
+ "locale": {"data_type": "text", "field_type": "column"},
7358
+ "native_name": {"data_type": "text", "field_type": "column"},
7359
+ },
7360
+ },
7361
+ "login_attempt": {
7362
+ "endpoint": "login_attempt",
7363
+ "fields": {
7364
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7365
+ "id": {"data_type": "bigint", "field_type": "column"},
7366
+ "impersonator_user_id": {"data_type": "bigint", "field_type": "column"},
7367
+ "ip_address": {"data_type": "text", "field_type": "column"},
7368
+ "is_sso_login": {"data_type": "bool", "field_type": "column"},
7369
+ "user_id": {"data_type": "bigint", "field_type": "column"},
7370
+ },
7371
+ },
7372
+ "loi": {
7373
+ "endpoint": "loi",
7374
+ "fields": {
7375
+ "address": {"data_type": "text", "field_type": "column"},
7376
+ "address_differs*": {"data_type": "bool", "field_type": "column"},
7377
+ "all_notes": {"data_type": "text", "field_type": "string"},
7378
+ "amount_requested": {"data_type": "double", "field_type": "column"},
7379
+ "amount_requested_fx_2": {"data_type": "double", "field_type": "column"},
7380
+ "amount_requested_local": {"data_type": "double", "field_type": "column"},
7381
+ "applicant": {"data_type": "text", "field_type": "column"},
7382
+ "budget_check*": {"data_type": "bool", "field_type": "column"},
7383
+ "budget_link*": {"data_type": "text", "field_type": "column"},
7384
+ "chapter_officer*": {"data_type": "text", "field_type": "column"},
7385
+ "city": {"data_type": "text", "field_type": "column"},
7386
+ "confirm_recipient*": {"data_type": "bool", "field_type": "column"},
7387
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7388
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7389
+ "delta": {"data_type": "bool", "field_type": "column"},
7390
+ "duration_in_months": {"data_type": "bigint", "field_type": "column"},
7391
+ "email": {"data_type": "text", "field_type": "column"},
7392
+ "fdtn_country*": {"data_type": "text", "field_type": "column"},
7393
+ "filter_state": {"data_type": "text", "field_type": "string"},
7394
+ "first_name_1*": {"data_type": "text", "field_type": "column"},
7395
+ "fx_applied_date_1": {"data_type": "date", "field_type": "column"},
7396
+ "fx_applied_date_2": {"data_type": "date", "field_type": "column"},
7397
+ "fx_date_1": {"data_type": "date", "field_type": "column"},
7398
+ "fx_date_2": {"data_type": "date", "field_type": "column"},
7399
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
7400
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
7401
+ "fx_spotrate_1": {"data_type": "bool", "field_type": "column"},
7402
+ "fx_spotrate_2": {"data_type": "bool", "field_type": "column"},
7403
+ "fx_type_id": {"data_type": "bigint", "field_type": "column"},
7404
+ "geo_country_id": {"data_type": "bigint", "field_type": "column"},
7405
+ "geo_state_id": {"data_type": "bigint", "field_type": "column"},
7406
+ "grant_begins_at": {"data_type": "timestamp", "field_type": "column"},
7407
+ "grant_request_workflow_state": {
7408
+ "data_type": "text",
7409
+ "field_type": "string",
7410
+ },
7411
+ "id": {"data_type": "bigint", "field_type": "column"},
7412
+ "independent_applicant_have_bank_account*": {
7413
+ "data_type": "text",
7414
+ "field_type": "column",
7415
+ },
7416
+ "independent_applicant_or_organization*": {
7417
+ "data_type": "text",
7418
+ "field_type": "column",
7419
+ },
7420
+ "is_org_chapter*": {"data_type": "text", "field_type": "column"},
7421
+ "is_org_chapter_non_profit*": {"data_type": "text", "field_type": "column"},
7422
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
7423
+ "iso_country*": {"data_type": "text", "field_type": "column"},
7424
+ "iso_country_user*": {"data_type": "text", "field_type": "column"},
7425
+ "last_name_1*": {"data_type": "text", "field_type": "column"},
7426
+ "linkedin_profile*": {"data_type": "text", "field_type": "column"},
7427
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
7428
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
7429
+ "login": {"data_type": "text", "field_type": "column"},
7430
+ "loi_applicant": {"data_type": "text", "field_type": "string"},
7431
+ "loi_email": {"data_type": "text", "field_type": "string"},
7432
+ "loi_foundation_region*": {"data_type": "text", "field_type": "column"},
7433
+ "loi_organization_name": {"data_type": "text", "field_type": "string"},
7434
+ "loi_phone": {"data_type": "text", "field_type": "string"},
7435
+ "loi_project_title": {"data_type": "text", "field_type": "string"},
7436
+ "loi_question_1*": {"data_type": "text", "field_type": "column"},
7437
+ "loi_question_2*": {"data_type": "text", "field_type": "column"},
7438
+ "loi_question_3*": {"data_type": "text", "field_type": "column"},
7439
+ "loi_question_4*": {"data_type": "text", "field_type": "column"},
7440
+ "loi_question_5*": {"data_type": "text", "field_type": "column"},
7441
+ "loi_question_6*": {"data_type": "text", "field_type": "column"},
7442
+ "loi_question_7*": {"data_type": "text", "field_type": "column"},
7443
+ "loi_question_8*": {"data_type": "text", "field_type": "column"},
7444
+ "loi_question_9*": {"data_type": "text", "field_type": "column"},
7445
+ "loi_type*": {"data_type": "text", "field_type": "column"},
7446
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7447
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7448
+ "mobile": {"data_type": "text", "field_type": "column"},
7449
+ "opt_in_marketing*": {"data_type": "bool", "field_type": "column"},
7450
+ "org_bureau_region*": {"data_type": "text", "field_type": "column"},
7451
+ "org_email": {"data_type": "text", "field_type": "column"},
7452
+ "org_fax": {"data_type": "text", "field_type": "column"},
7453
+ "org_geo_country_id": {"data_type": "bigint", "field_type": "column"},
7454
+ "org_geo_state_id": {"data_type": "bigint", "field_type": "column"},
7455
+ "org_have_bank_account*": {"data_type": "text", "field_type": "column"},
7456
+ "org_phone": {"data_type": "text", "field_type": "column"},
7457
+ "org_tax_exempt*": {"data_type": "text", "field_type": "column"},
7458
+ "org_url": {"data_type": "text", "field_type": "column"},
7459
+ "organization_legal_name*": {"data_type": "text", "field_type": "column"},
7460
+ "organization_mission*": {"data_type": "text", "field_type": "column"},
7461
+ "organization_name": {"data_type": "text", "field_type": "column"},
7462
+ "organization_name_foreign_language": {
7463
+ "data_type": "text",
7464
+ "field_type": "column",
7465
+ },
7466
+ "organization_type*": {"data_type": "text", "field_type": "column"},
7467
+ "personal_bureau_region*": {"data_type": "text", "field_type": "column"},
7468
+ "phone": {"data_type": "text", "field_type": "column"},
7469
+ "phone_extension*": {"data_type": "text", "field_type": "column"},
7470
+ "postal_code": {"data_type": "text", "field_type": "column"},
7471
+ "previous_state": {"data_type": "text", "field_type": "string"},
7472
+ "program_interest*": {"data_type": "text", "field_type": "column"},
7473
+ "program_name": {"data_type": "text", "field_type": "string"},
7474
+ "project_summary": {"data_type": "text", "field_type": "column"},
7475
+ "project_summary_native": {"data_type": "text", "field_type": "column"},
7476
+ "project_summary_native_updated": {
7477
+ "data_type": "bool",
7478
+ "field_type": "column",
7479
+ },
7480
+ "project_title": {"data_type": "text", "field_type": "column"},
7481
+ "rejection_reason*": {"data_type": "text", "field_type": "column"},
7482
+ "request_theme_id": {"data_type": "bigint", "field_type": "column"},
7483
+ "researcher_publications*": {"data_type": "text", "field_type": "column"},
7484
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
7485
+ "state": {"data_type": "bigint", "field_type": "column"},
7486
+ "state_1*": {"data_type": "text", "field_type": "column"},
7487
+ "state_description": {"data_type": "text", "field_type": "string"},
7488
+ "state_to_english": {"data_type": "text", "field_type": "string"},
7489
+ "store_information*": {"data_type": "bool", "field_type": "column"},
7490
+ "street_address2": {"data_type": "text", "field_type": "column"},
7491
+ "tax_id": {"data_type": "text", "field_type": "column"},
7492
+ "to_s": {"data_type": "text", "field_type": "string"},
7493
+ "token": {"data_type": "text", "field_type": "column"},
7494
+ "token_created_at": {"data_type": "timestamp", "field_type": "column"},
7495
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7496
+ "user_geo_country_id": {"data_type": "bigint", "field_type": "column"},
7497
+ "user_geo_state_id": {"data_type": "bigint", "field_type": "column"},
7498
+ "user_title": {"data_type": "text", "field_type": "column"},
7499
+ "year_founded*": {"data_type": "bigint", "field_type": "column"},
7500
+ },
7501
+ },
7502
+ "machine_event": {
7503
+ "endpoint": "machine_event",
7504
+ "fields": {
7505
+ "button_name": {"data_type": "text", "field_type": "column"},
7506
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7507
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7508
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7509
+ "draft_guard": {"data_type": "text", "field_type": "column"},
7510
+ "draft_guard_submit": {"data_type": "bool", "field_type": "column"},
7511
+ "filter": {"data_type": "text", "field_type": "column"},
7512
+ "guard": {"data_type": "text", "field_type": "column"},
7513
+ "guard_migration_confirmed": {"data_type": "bool", "field_type": "column"},
7514
+ "guard_migration_status": {"data_type": "text", "field_type": "column"},
7515
+ "guard_strategy": {"data_type": "text", "field_type": "column"},
7516
+ "has_custom_ruby_code": {"data_type": "bool", "field_type": "column"},
7517
+ "id": {"data_type": "bigint", "field_type": "column"},
7518
+ "is_validation_suppressed": {"data_type": "bool", "field_type": "column"},
7519
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
7520
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
7521
+ "machine_workflow_id": {"data_type": "bigint", "field_type": "column"},
7522
+ "on_transition": {"data_type": "text", "field_type": "column"},
7523
+ "on_transition_migration_confirmed": {
7524
+ "data_type": "bool",
7525
+ "field_type": "column",
7526
+ },
7527
+ "on_transition_migration_status": {
7528
+ "data_type": "text",
7529
+ "field_type": "column",
7530
+ },
7531
+ "to_state_id": {"data_type": "bigint", "field_type": "column"},
7532
+ "unsafe_guard": {"data_type": "text", "field_type": "column"},
7533
+ "unsafe_on_transition": {"data_type": "text", "field_type": "column"},
7534
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7535
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7536
+ },
7537
+ },
7538
+ "machine_event_from_state": {
7539
+ "endpoint": "machine_event_from_state",
7540
+ "fields": {
7541
+ "button_order": {"data_type": "bigint", "field_type": "column"},
7542
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7543
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7544
+ "from_state_id": {"data_type": "bigint", "field_type": "column"},
7545
+ "id": {"data_type": "bigint", "field_type": "column"},
7546
+ "machine_event_id": {"data_type": "bigint", "field_type": "column"},
7547
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7548
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7549
+ },
7550
+ },
7551
+ "machine_event_role": {
7552
+ "endpoint": "machine_event_role",
7553
+ "fields": {
7554
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7555
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7556
+ "id": {"data_type": "bigint", "field_type": "column"},
7557
+ "machine_event_id": {"data_type": "bigint", "field_type": "column"},
7558
+ "role_id": {"data_type": "bigint", "field_type": "column"},
7559
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7560
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7561
+ },
7562
+ },
7563
+ "machine_model_type": {
7564
+ "endpoint": "machine_model_type",
7565
+ "fields": {
7566
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7567
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7568
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7569
+ "id": {"data_type": "bigint", "field_type": "column"},
7570
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
7571
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
7572
+ "model_type": {"data_type": "text", "field_type": "column"},
7573
+ "next_auto_increment_num": {"data_type": "bigint", "field_type": "column"},
7574
+ "segment_model_attribute_ids": {
7575
+ "data_type": "text",
7576
+ "field_type": "column",
7577
+ },
7578
+ "show_in_plus_menu": {"data_type": "bool", "field_type": "column"},
7579
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7580
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7581
+ },
7582
+ },
7583
+ "machine_state": {
7584
+ "endpoint": "machine_state",
7585
+ "fields": {
7586
+ "after_enter": {"data_type": "text", "field_type": "column"},
7587
+ "after_enter_migration_confirmed": {
7588
+ "data_type": "bool",
7589
+ "field_type": "column",
7590
+ },
7591
+ "after_enter_migration_status": {
7592
+ "data_type": "text",
7593
+ "field_type": "column",
7594
+ },
7595
+ "allowed_roles": {"data_type": "text", "field_type": "column"},
7596
+ "before_validation_enter": {"data_type": "text", "field_type": "column"},
7597
+ "before_validation_enter_migration_confirmed": {
7598
+ "data_type": "bool",
7599
+ "field_type": "column",
7600
+ },
7601
+ "before_validation_enter_migration_status": {
7602
+ "data_type": "text",
7603
+ "field_type": "column",
7604
+ },
7605
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7606
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7607
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7608
+ "description": {"data_type": "text", "field_type": "column"},
7609
+ "draft_after_enter": {"data_type": "text", "field_type": "column"},
7610
+ "draft_after_enter_submit": {"data_type": "bool", "field_type": "column"},
7611
+ "draft_before_validation_enter": {
7612
+ "data_type": "text",
7613
+ "field_type": "column",
7614
+ },
7615
+ "draft_before_validation_enter_submit": {
7616
+ "data_type": "bool",
7617
+ "field_type": "column",
7618
+ },
7619
+ "external_description": {"data_type": "text", "field_type": "column"},
7620
+ "has_custom_ruby_code": {"data_type": "bool", "field_type": "column"},
7621
+ "id": {"data_type": "bigint", "field_type": "column"},
7622
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
7623
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
7624
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7625
+ "model_type": {"data_type": "text", "field_type": "column"},
7626
+ "state_order": {"data_type": "bigint", "field_type": "column"},
7627
+ "state_type": {"data_type": "text", "field_type": "column"},
7628
+ "theme_switching_enabled": {"data_type": "bool", "field_type": "column"},
7629
+ "transition_name": {"data_type": "text", "field_type": "column"},
7630
+ "unsafe_after_enter": {"data_type": "text", "field_type": "column"},
7631
+ "unsafe_before_validation_enter": {
7632
+ "data_type": "text",
7633
+ "field_type": "column",
7634
+ },
7635
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7636
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7637
+ },
7638
+ },
7639
+ "machine_state_category": {
7640
+ "endpoint": "machine_state_category",
7641
+ "fields": {
7642
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7643
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7644
+ "id": {"data_type": "bigint", "field_type": "column"},
7645
+ "machine_category_id": {"data_type": "bigint", "field_type": "column"},
7646
+ "machine_state_id": {"data_type": "bigint", "field_type": "column"},
7647
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7648
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7649
+ },
7650
+ },
7651
+ "machine_state_group": {
7652
+ "endpoint": "machine_state_group",
7653
+ "fields": {
7654
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7655
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7656
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7657
+ "description": {"data_type": "text", "field_type": "column"},
7658
+ "id": {"data_type": "bigint", "field_type": "column"},
7659
+ "machine_state_ids": {"data_type": "text", "field_type": "column"},
7660
+ "model_type": {"data_type": "text", "field_type": "column"},
7661
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7662
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7663
+ },
7664
+ },
7665
+ "machine_workflow": {
7666
+ "endpoint": "machine_workflow",
7667
+ "fields": {
7668
+ "characteristics": {"data_type": "text", "field_type": "column"},
7669
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7670
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7671
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7672
+ "id": {"data_type": "bigint", "field_type": "column"},
7673
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
7674
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
7675
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
7676
+ "model_type": {"data_type": "text", "field_type": "column"},
7677
+ "related_model_relationship": {"data_type": "text", "field_type": "column"},
7678
+ "related_model_type": {"data_type": "text", "field_type": "column"},
7679
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7680
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7681
+ "workflow_order": {"data_type": "bigint", "field_type": "column"},
7682
+ },
7683
+ },
7684
+ "machine_workflow_fork": {
7685
+ "endpoint": "machine_workflow_fork",
7686
+ "fields": {
7687
+ "after_state": {"data_type": "text", "field_type": "column"},
7688
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7689
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7690
+ "id": {"data_type": "bigint", "field_type": "column"},
7691
+ "model_id": {"data_type": "bigint", "field_type": "column"},
7692
+ "model_type": {"data_type": "text", "field_type": "column"},
7693
+ "related_model_id": {"data_type": "bigint", "field_type": "column"},
7694
+ "related_model_type": {"data_type": "text", "field_type": "column"},
7695
+ "role_id": {"data_type": "bigint", "field_type": "column"},
7696
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7697
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7698
+ "user_id": {"data_type": "bigint", "field_type": "column"},
7699
+ },
7700
+ },
7701
+ "matching_gift_profile": {
7702
+ "endpoint": "matching_gift_profile",
7703
+ "fields": {
7704
+ "all_notes": {"data_type": "text", "field_type": "string"},
7705
+ "annual_limit": {"data_type": "double", "field_type": "column"},
7706
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7707
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7708
+ "id": {"data_type": "bigint", "field_type": "column"},
7709
+ "match_multiplier": {"data_type": "double", "field_type": "column"},
7710
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7711
+ "minimum_match_amount": {"data_type": "double", "field_type": "column"},
7712
+ "to_s": {"data_type": "text", "field_type": "string"},
7713
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7714
+ },
7715
+ },
7716
+ "mention": {
7717
+ "endpoint": "mention",
7718
+ "fields": {
7719
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7720
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7721
+ "id": {"data_type": "bigint", "field_type": "column"},
7722
+ "mentionable_id": {"data_type": "bigint", "field_type": "column"},
7723
+ "mentionable_type": {"data_type": "text", "field_type": "column"},
7724
+ "post_id": {"data_type": "bigint", "field_type": "column"},
7725
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7726
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7727
+ },
7728
+ },
7729
+ "migrate_row": {
7730
+ "endpoint": "migrate_row",
7731
+ "fields": {
7732
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7733
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7734
+ "id": {"data_type": "bigint", "field_type": "column"},
7735
+ "migration_config_model_id": {
7736
+ "data_type": "bigint",
7737
+ "field_type": "column",
7738
+ },
7739
+ "migration_id": {"data_type": "bigint", "field_type": "column"},
7740
+ "model_id": {"data_type": "bigint", "field_type": "column"},
7741
+ "model_type": {"data_type": "text", "field_type": "column"},
7742
+ "new_row": {"data_type": "bool", "field_type": "column"},
7743
+ "row_id": {"data_type": "bigint", "field_type": "column"},
7744
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7745
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7746
+ },
7747
+ },
7748
+ "migration": {
7749
+ "endpoint": "migration",
7750
+ "fields": {
7751
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7752
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7753
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7754
+ "deleted_timestamp_at": {"data_type": "timestamp", "field_type": "column"},
7755
+ "id": {"data_type": "bigint", "field_type": "column"},
7756
+ "migrated_at": {"data_type": "timestamp", "field_type": "column"},
7757
+ "migration_config_id": {"data_type": "bigint", "field_type": "column"},
7758
+ "migration_file_id": {"data_type": "bigint", "field_type": "column"},
7759
+ "migration_type": {"data_type": "text", "field_type": "column"},
7760
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7761
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7762
+ },
7763
+ },
7764
+ "migration_config": {
7765
+ "endpoint": "migration_config",
7766
+ "fields": {
7767
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7768
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7769
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7770
+ "file_type": {"data_type": "text", "field_type": "column"},
7771
+ "id": {"data_type": "bigint", "field_type": "column"},
7772
+ "ignore_first_row": {"data_type": "bool", "field_type": "column"},
7773
+ "ignore_last_row": {"data_type": "bool", "field_type": "column"},
7774
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7775
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7776
+ },
7777
+ },
7778
+ "migration_config_column": {
7779
+ "endpoint": "migration_config_column",
7780
+ "fields": {
7781
+ "component_name": {"data_type": "text", "field_type": "column"},
7782
+ "config": {"data_type": "bigint", "field_type": "column"},
7783
+ "config_type": {"data_type": "text", "field_type": "column"},
7784
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7785
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7786
+ "csv_fixed_column": {"data_type": "bigint", "field_type": "column"},
7787
+ "file_column_name": {"data_type": "text", "field_type": "column"},
7788
+ "fixed_col_end": {"data_type": "bigint", "field_type": "column"},
7789
+ "fixed_col_start": {"data_type": "bigint", "field_type": "column"},
7790
+ "hard_coded_value": {"data_type": "text", "field_type": "column"},
7791
+ "id": {"data_type": "bigint", "field_type": "column"},
7792
+ "matching_field": {"data_type": "bool", "field_type": "column"},
7793
+ "matching_model_attribute_name": {
7794
+ "data_type": "text",
7795
+ "field_type": "column",
7796
+ },
7797
+ "matching_value": {"data_type": "text", "field_type": "column"},
7798
+ "migration_config_id": {"data_type": "bigint", "field_type": "column"},
7799
+ "migration_config_model_id": {
7800
+ "data_type": "bigint",
7801
+ "field_type": "column",
7802
+ },
7803
+ "migration_file_id": {"data_type": "bigint", "field_type": "column"},
7804
+ "migration_order": {"data_type": "bigint", "field_type": "column"},
7805
+ "model_attribute_name": {"data_type": "text", "field_type": "column"},
7806
+ "must_match_existing": {"data_type": "bool", "field_type": "column"},
7807
+ "number_implicit_decimals": {"data_type": "bigint", "field_type": "column"},
7808
+ "required": {"data_type": "bool", "field_type": "column"},
7809
+ "sample_content": {"data_type": "text", "field_type": "column"},
7810
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7811
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7812
+ },
7813
+ },
7814
+ "migration_config_model": {
7815
+ "endpoint": "migration_config_model",
7816
+ "fields": {
7817
+ "allow_modification": {"data_type": "bool", "field_type": "column"},
7818
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7819
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7820
+ "id": {"data_type": "bigint", "field_type": "column"},
7821
+ "is_optional": {"data_type": "bool", "field_type": "column"},
7822
+ "migration_config_id": {"data_type": "bigint", "field_type": "column"},
7823
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
7824
+ "model_type": {"data_type": "text", "field_type": "column"},
7825
+ "must_match_existing": {"data_type": "bool", "field_type": "column"},
7826
+ "report_stats": {"data_type": "bool", "field_type": "column"},
7827
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7828
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7829
+ },
7830
+ },
7831
+ "migration_config_model_link": {
7832
+ "endpoint": "migration_config_model_link",
7833
+ "fields": {
7834
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7835
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7836
+ "from_migration_model_id": {"data_type": "bigint", "field_type": "column"},
7837
+ "from_model_attribute_name": {"data_type": "text", "field_type": "column"},
7838
+ "id": {"data_type": "bigint", "field_type": "column"},
7839
+ "link_order": {"data_type": "bigint", "field_type": "column"},
7840
+ "matching_link": {"data_type": "bool", "field_type": "column"},
7841
+ "migration_config_id": {"data_type": "bigint", "field_type": "column"},
7842
+ "to_migration_model_id": {"data_type": "bigint", "field_type": "column"},
7843
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7844
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7845
+ },
7846
+ },
7847
+ "migration_file": {
7848
+ "endpoint": "migration_file",
7849
+ "fields": {
7850
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7851
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7852
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7853
+ "id": {"data_type": "bigint", "field_type": "column"},
7854
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7855
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7856
+ },
7857
+ },
7858
+ "model_attribute": {
7859
+ "endpoint": "model_attribute",
7860
+ "fields": {
7861
+ "api_style": {"data_type": "text", "field_type": "column"},
7862
+ "attribute_type": {"data_type": "text", "field_type": "column"},
7863
+ "calculation": {"data_type": "bool", "field_type": "column"},
7864
+ "calculation_enabled": {"data_type": "bool", "field_type": "column"},
7865
+ "calculation_order": {"data_type": "bigint", "field_type": "column"},
7866
+ "calculation_related_model_type": {
7867
+ "data_type": "text",
7868
+ "field_type": "column",
7869
+ },
7870
+ "calculation_relationship_field": {
7871
+ "data_type": "text",
7872
+ "field_type": "column",
7873
+ },
7874
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7875
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7876
+ "decimal_format": {"data_type": "text", "field_type": "column"},
7877
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7878
+ "description": {"data_type": "text", "field_type": "column"},
7879
+ "display_to_s": {"data_type": "bool", "field_type": "column"},
7880
+ "force_dropdown": {"data_type": "bool", "field_type": "column"},
7881
+ "id": {"data_type": "bigint", "field_type": "column"},
7882
+ "include_in_export": {"data_type": "bool", "field_type": "column"},
7883
+ "include_in_fluxx_insight": {"data_type": "bool", "field_type": "column"},
7884
+ "include_in_fulltext_search": {"data_type": "bool", "field_type": "column"},
7885
+ "legacy_name": {"data_type": "text", "field_type": "column"},
7886
+ "legacy_table": {"data_type": "text", "field_type": "column"},
7887
+ "mapped_attribute": {"data_type": "text", "field_type": "column"},
7888
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7889
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7890
+ "model_type": {"data_type": "text", "field_type": "column"},
7891
+ "model_type_enum": {"data_type": "bigint", "field_type": "column"},
7892
+ "multi_allowed": {"data_type": "bool", "field_type": "column"},
7893
+ "native_language_attribute_id": {
7894
+ "data_type": "bigint",
7895
+ "field_type": "column",
7896
+ },
7897
+ "parent_id": {"data_type": "bigint", "field_type": "column"},
7898
+ "round_calculated_value": {"data_type": "bool", "field_type": "column"},
7899
+ "show_related_tab": {"data_type": "bool", "field_type": "column"},
7900
+ "translatable": {"data_type": "bool", "field_type": "column"},
7901
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7902
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7903
+ "use_local_currency": {"data_type": "bool", "field_type": "column"},
7904
+ "value_model_type": {"data_type": "text", "field_type": "column"},
7905
+ "value_model_type_enum": {"data_type": "bigint", "field_type": "column"},
7906
+ },
7907
+ },
7908
+ "model_attribute_choice": {
7909
+ "endpoint": "model_attribute_choice",
7910
+ "fields": {
7911
+ "amount_value": {"data_type": "double", "field_type": "column"},
7912
+ "boolean_value": {"data_type": "bool", "field_type": "column"},
7913
+ "choice_number": {"data_type": "bigint", "field_type": "column"},
7914
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7915
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7916
+ "date_value": {"data_type": "date", "field_type": "column"},
7917
+ "datetime_value": {"data_type": "timestamp", "field_type": "column"},
7918
+ "id": {"data_type": "bigint", "field_type": "column"},
7919
+ "integer_value": {"data_type": "bigint", "field_type": "column"},
7920
+ "model_attribute_id": {"data_type": "bigint", "field_type": "column"},
7921
+ "model_attribute_value_id": {"data_type": "bigint", "field_type": "column"},
7922
+ "model_id": {"data_type": "bigint", "field_type": "column"},
7923
+ "model_type_enum": {"data_type": "bigint", "field_type": "column"},
7924
+ "model_value_id": {"data_type": "bigint", "field_type": "column"},
7925
+ "string_equivalent": {"data_type": "text", "field_type": "column"},
7926
+ "string_value": {"data_type": "text", "field_type": "column"},
7927
+ "text_value": {"data_type": "text", "field_type": "column"},
7928
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7929
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7930
+ "value_model_type_enum": {"data_type": "bigint", "field_type": "column"},
7931
+ },
7932
+ },
7933
+ "model_clone_configuration": {
7934
+ "endpoint": "model_clone_configuration",
7935
+ "fields": {
7936
+ "after_create": {"data_type": "text", "field_type": "column"},
7937
+ "allowed_roles": {"data_type": "text", "field_type": "column"},
7938
+ "allowed_states": {"data_type": "text", "field_type": "column"},
7939
+ "card_label": {"data_type": "text", "field_type": "column"},
7940
+ "columns": {"data_type": "text", "field_type": "column"},
7941
+ "create_relationship": {"data_type": "bool", "field_type": "column"},
7942
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7943
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7944
+ "id": {"data_type": "bigint", "field_type": "column"},
7945
+ "label": {"data_type": "text", "field_type": "column"},
7946
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
7947
+ "to_state": {"data_type": "text", "field_type": "column"},
7948
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7949
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7950
+ },
7951
+ },
7952
+ "model_document_dynamic_recipient": {
7953
+ "endpoint": "model_document_dynamic_recipient",
7954
+ "fields": {
7955
+ "affiliate_id": {"data_type": "bigint", "field_type": "column"},
7956
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7957
+ "full_name_string": {"data_type": "text", "field_type": "column"},
7958
+ "id": {"data_type": "bigint", "field_type": "column"},
7959
+ "is_to": {"data_type": "bool", "field_type": "column"},
7960
+ "model_document_id": {"data_type": "bigint", "field_type": "column"},
7961
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7962
+ "user_id": {"data_type": "bigint", "field_type": "column"},
7963
+ },
7964
+ },
7965
+ "model_document_master": {
7966
+ "endpoint": "model_document_master",
7967
+ "fields": {
7968
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7969
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
7970
+ "current_model_document_id": {
7971
+ "data_type": "bigint",
7972
+ "field_type": "column",
7973
+ },
7974
+ "current_sequence": {"data_type": "bigint", "field_type": "column"},
7975
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
7976
+ "id": {"data_type": "bigint", "field_type": "column"},
7977
+ "migrate_id": {"data_type": "text", "field_type": "column"},
7978
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
7979
+ "native_model_document_master_id": {
7980
+ "data_type": "bigint",
7981
+ "field_type": "column",
7982
+ },
7983
+ "translator_downloads_data": {"data_type": "text", "field_type": "column"},
7984
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
7985
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
7986
+ },
7987
+ },
7988
+ "model_document_sign": {
7989
+ "endpoint": "model_document_sign",
7990
+ "fields": {
7991
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
7992
+ "id": {"data_type": "bigint", "field_type": "column"},
7993
+ "model_document_sign_envelope_id": {
7994
+ "data_type": "bigint",
7995
+ "field_type": "column",
7996
+ },
7997
+ "order_in_envelope": {"data_type": "bigint", "field_type": "column"},
7998
+ "signer_delivered_date_time": {"data_type": "date", "field_type": "column"},
7999
+ "signer_email": {"data_type": "text", "field_type": "column"},
8000
+ "signer_model_relationship": {"data_type": "text", "field_type": "column"},
8001
+ "signer_name": {"data_type": "text", "field_type": "column"},
8002
+ "signer_role_name": {"data_type": "text", "field_type": "column"},
8003
+ "signer_signed_date_time": {"data_type": "date", "field_type": "column"},
8004
+ "signer_status": {"data_type": "text", "field_type": "column"},
8005
+ "signer_user_id": {"data_type": "bigint", "field_type": "column"},
8006
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8007
+ },
8008
+ },
8009
+ "model_document_sign_envelope": {
8010
+ "endpoint": "model_document_sign_envelope",
8011
+ "fields": {
8012
+ "body": {"data_type": "text", "field_type": "column"},
8013
+ "cc_list": {"data_type": "text", "field_type": "column"},
8014
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8015
+ "envelope_id": {"data_type": "text", "field_type": "column"},
8016
+ "envelope_status": {"data_type": "text", "field_type": "column"},
8017
+ "envelope_status_change_time": {
8018
+ "data_type": "date",
8019
+ "field_type": "column",
8020
+ },
8021
+ "id": {"data_type": "bigint", "field_type": "column"},
8022
+ "model_document_id": {"data_type": "bigint", "field_type": "column"},
8023
+ "subject": {"data_type": "text", "field_type": "column"},
8024
+ "template_id": {"data_type": "text", "field_type": "column"},
8025
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8026
+ },
8027
+ },
8028
+ "model_document_template": {
8029
+ "endpoint": "model_document_template",
8030
+ "fields": {
8031
+ "auto_generate_on_different_record_language": {
8032
+ "data_type": "bool",
8033
+ "field_type": "column",
8034
+ },
8035
+ "category": {"data_type": "text", "field_type": "column"},
8036
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8037
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8038
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8039
+ "delta": {"data_type": "bool", "field_type": "column"},
8040
+ "description": {"data_type": "text", "field_type": "column"},
8041
+ "disable_liquid_html_strip": {"data_type": "bool", "field_type": "column"},
8042
+ "display_in_adhoc_list": {"data_type": "bool", "field_type": "column"},
8043
+ "disposition": {"data_type": "text", "field_type": "column"},
8044
+ "do_not_insert_page_break": {"data_type": "bool", "field_type": "column"},
8045
+ "document": {"data_type": "text", "field_type": "column"},
8046
+ "document_content_type": {"data_type": "text", "field_type": "column"},
8047
+ "document_type": {"data_type": "text", "field_type": "column"},
8048
+ "dynamic_recipientable": {"data_type": "bool", "field_type": "column"},
8049
+ "filename": {"data_type": "text", "field_type": "column"},
8050
+ "footer_height": {"data_type": "bigint", "field_type": "column"},
8051
+ "generate_pdf_snapshot": {"data_type": "bool", "field_type": "column"},
8052
+ "generate_state": {"data_type": "text", "field_type": "column"},
8053
+ "header_height": {"data_type": "bigint", "field_type": "column"},
8054
+ "id": {"data_type": "bigint", "field_type": "column"},
8055
+ "language_id": {"data_type": "bigint", "field_type": "column"},
8056
+ "letter_type": {"data_type": "text", "field_type": "column"},
8057
+ "model_document_type_id": {"data_type": "bigint", "field_type": "column"},
8058
+ "model_type": {"data_type": "text", "field_type": "column"},
8059
+ "parent_document_id": {"data_type": "bigint", "field_type": "column"},
8060
+ "pdf_snapshot_user_profile_id": {
8061
+ "data_type": "bigint",
8062
+ "field_type": "column",
8063
+ },
8064
+ "related_model_document_template_id": {
8065
+ "data_type": "bigint",
8066
+ "field_type": "column",
8067
+ },
8068
+ "show_related_posts": {"data_type": "bool", "field_type": "column"},
8069
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8070
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8071
+ },
8072
+ },
8073
+ "model_email": {
8074
+ "endpoint": "model_email",
8075
+ "fields": {
8076
+ "all_notes": {"data_type": "text", "field_type": "string"},
8077
+ "body": {"data_type": "text", "field_type": "column"},
8078
+ "cc": {"data_type": "text", "field_type": "column"},
8079
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8080
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8081
+ "from": {"data_type": "text", "field_type": "column"},
8082
+ "id": {"data_type": "bigint", "field_type": "column"},
8083
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8084
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8085
+ "model_id": {"data_type": "bigint", "field_type": "column"},
8086
+ "model_type": {"data_type": "text", "field_type": "column"},
8087
+ "outlook_conversation_id": {"data_type": "text", "field_type": "column"},
8088
+ "outlook_message_id": {"data_type": "text", "field_type": "column"},
8089
+ "pop3_mail_unique_id": {"data_type": "text", "field_type": "column"},
8090
+ "received_at": {"data_type": "timestamp", "field_type": "column"},
8091
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8092
+ "subject": {"data_type": "text", "field_type": "column"},
8093
+ "to": {"data_type": "text", "field_type": "column"},
8094
+ "to_s": {"data_type": "text", "field_type": "string"},
8095
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8096
+ },
8097
+ },
8098
+ "model_method": {
8099
+ "endpoint": "model_method",
8100
+ "fields": {
8101
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8102
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8103
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8104
+ "draft_dyn_method": {"data_type": "text", "field_type": "column"},
8105
+ "draft_dyn_method_submit": {"data_type": "bool", "field_type": "column"},
8106
+ "dyn_method": {"data_type": "text", "field_type": "column"},
8107
+ "dyn_method_migration_confirmed": {
8108
+ "data_type": "bool",
8109
+ "field_type": "column",
8110
+ },
8111
+ "dyn_method_migration_status": {
8112
+ "data_type": "text",
8113
+ "field_type": "column",
8114
+ },
8115
+ "has_custom_ruby_code": {"data_type": "bool", "field_type": "column"},
8116
+ "id": {"data_type": "bigint", "field_type": "column"},
8117
+ "method_type": {"data_type": "text", "field_type": "column"},
8118
+ "model_type": {"data_type": "text", "field_type": "column"},
8119
+ "unsafe_dyn_method": {"data_type": "text", "field_type": "column"},
8120
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8121
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8122
+ },
8123
+ },
8124
+ "model_summary": {
8125
+ "endpoint": "model_summary",
8126
+ "fields": {
8127
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8128
+ "generated_text": {"data_type": "text", "field_type": "column"},
8129
+ "id": {"data_type": "bigint", "field_type": "column"},
8130
+ "model_id": {"data_type": "bigint", "field_type": "column"},
8131
+ "model_type": {"data_type": "text", "field_type": "column"},
8132
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8133
+ "word_count": {"data_type": "bigint", "field_type": "column"},
8134
+ },
8135
+ },
8136
+ "model_validation": {
8137
+ "endpoint": "model_validation",
8138
+ "fields": {
8139
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8140
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8141
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8142
+ "id": {"data_type": "bigint", "field_type": "column"},
8143
+ "machine_state_id": {"data_type": "bigint", "field_type": "column"},
8144
+ "model_type": {"data_type": "text", "field_type": "column"},
8145
+ "timing": {"data_type": "text", "field_type": "column"},
8146
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8147
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8148
+ "validation_condition": {"data_type": "text", "field_type": "column"},
8149
+ },
8150
+ },
8151
+ "model_validation_field": {
8152
+ "endpoint": "model_validation_field",
8153
+ "fields": {
8154
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8155
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8156
+ "custom_name": {"data_type": "text", "field_type": "column"},
8157
+ "custom_validation": {"data_type": "text", "field_type": "column"},
8158
+ "dyn_name": {"data_type": "text", "field_type": "column"},
8159
+ "id": {"data_type": "bigint", "field_type": "column"},
8160
+ "max_length": {"data_type": "bigint", "field_type": "column"},
8161
+ "min_length": {"data_type": "bigint", "field_type": "column"},
8162
+ "model_name_to_validate": {"data_type": "text", "field_type": "column"},
8163
+ "model_validation_id": {"data_type": "bigint", "field_type": "column"},
8164
+ "unsafe_custom_validation": {"data_type": "text", "field_type": "column"},
8165
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8166
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8167
+ "validation_unique": {"data_type": "bool", "field_type": "column"},
8168
+ },
8169
+ },
8170
+ "modification": {
8171
+ "endpoint": "modification",
8172
+ "fields": {
8173
+ "attr": {"data_type": "text", "field_type": "column"},
8174
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8175
+ "id": {"data_type": "bigint", "field_type": "column"},
8176
+ "new_value": {"data_type": "text", "field_type": "column"},
8177
+ "old_value": {"data_type": "text", "field_type": "column"},
8178
+ "trackable_id": {"data_type": "bigint", "field_type": "column"},
8179
+ "trackable_type": {"data_type": "text", "field_type": "column"},
8180
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8181
+ },
8182
+ },
8183
+ "multi_element_choice": {
8184
+ "endpoint": "multi_element_choice",
8185
+ "fields": {
8186
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8187
+ "id": {"data_type": "bigint", "field_type": "column"},
8188
+ "multi_element_value_id": {"data_type": "bigint", "field_type": "column"},
8189
+ "target_id": {"data_type": "bigint", "field_type": "column"},
8190
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8191
+ },
8192
+ },
8193
+ "multi_element_group": {
8194
+ "endpoint": "multi_element_group",
8195
+ "fields": {
8196
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8197
+ "description": {"data_type": "text", "field_type": "column"},
8198
+ "id": {"data_type": "bigint", "field_type": "column"},
8199
+ "model_attribute_name": {"data_type": "text", "field_type": "column"},
8200
+ "target_class_name": {"data_type": "text", "field_type": "column"},
8201
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8202
+ },
8203
+ },
8204
+ "multi_element_value": {
8205
+ "endpoint": "multi_element_value",
8206
+ "fields": {
8207
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8208
+ "dependent_multi_element_value_id": {
8209
+ "data_type": "bigint",
8210
+ "field_type": "column",
8211
+ },
8212
+ "description": {"data_type": "text", "field_type": "column"},
8213
+ "id": {"data_type": "bigint", "field_type": "column"},
8214
+ "multi_element_group_id": {"data_type": "bigint", "field_type": "column"},
8215
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8216
+ "value": {"data_type": "text", "field_type": "column"},
8217
+ },
8218
+ },
8219
+ "note": {
8220
+ "endpoint": "note",
8221
+ "fields": {
8222
+ "all_notes": {"data_type": "text", "field_type": "string"},
8223
+ "attribute_name": {"data_type": "text", "field_type": "column"},
8224
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8225
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8226
+ "delta": {"data_type": "bool", "field_type": "column"},
8227
+ "form_element_id": {"data_type": "text", "field_type": "column"},
8228
+ "id": {"data_type": "bigint", "field_type": "column"},
8229
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8230
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8231
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8232
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8233
+ "notable_id": {"data_type": "bigint", "field_type": "column"},
8234
+ "notable_type": {"data_type": "text", "field_type": "column"},
8235
+ "note": {"data_type": "text", "field_type": "column"},
8236
+ "private": {"data_type": "bool", "field_type": "column"},
8237
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8238
+ "to_s": {"data_type": "text", "field_type": "string"},
8239
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8240
+ },
8241
+ },
8242
+ "ofac_person": {
8243
+ "endpoint": "ofac_person",
8244
+ "fields": {
8245
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8246
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8247
+ "id": {"data_type": "bigint", "field_type": "column"},
8248
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8249
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8250
+ "ofac_result_id": {"data_type": "bigint", "field_type": "column"},
8251
+ "ofac_run_at": {"data_type": "timestamp", "field_type": "column"},
8252
+ "ofac_run_id": {"data_type": "bigint", "field_type": "column"},
8253
+ "ofac_score": {"data_type": "bigint", "field_type": "column"},
8254
+ "ofac_state": {"data_type": "text", "field_type": "column"},
8255
+ "organization_id": {"data_type": "bigint", "field_type": "column"},
8256
+ "title": {"data_type": "text", "field_type": "column"},
8257
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8258
+ "widget_label": {"data_type": "text", "field_type": "column"},
8259
+ },
8260
+ },
8261
+ "organization_connection_request": {
8262
+ "endpoint": "organization_connection_request",
8263
+ "fields": {
8264
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8265
+ "id": {"data_type": "bigint", "field_type": "column"},
8266
+ "organization_id": {"data_type": "bigint", "field_type": "column"},
8267
+ "previous_state": {"data_type": "text", "field_type": "string"},
8268
+ "state": {"data_type": "text", "field_type": "column"},
8269
+ "state_description": {"data_type": "text", "field_type": "string"},
8270
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8271
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8272
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8273
+ "user_organization_id": {"data_type": "bigint", "field_type": "column"},
8274
+ },
8275
+ },
8276
+ "outcome": {
8277
+ "endpoint": "outcome",
8278
+ "fields": {
8279
+ "all_notes": {"data_type": "text", "field_type": "string"},
8280
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8281
+ "description": {"data_type": "text", "field_type": "column"},
8282
+ "exclude_from_mel": {"data_type": "bool", "field_type": "column"},
8283
+ "id": {"data_type": "bigint", "field_type": "column"},
8284
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8285
+ "outcomeable_id": {"data_type": "bigint", "field_type": "column"},
8286
+ "outcomeable_type": {"data_type": "text", "field_type": "column"},
8287
+ "retired": {"data_type": "bool", "field_type": "column"},
8288
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8289
+ "to_s": {"data_type": "text", "field_type": "string"},
8290
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8291
+ },
8292
+ },
8293
+ "periodic_sync": {
8294
+ "endpoint": "periodic_sync",
8295
+ "fields": {
8296
+ "configuration": {"data_type": "text", "field_type": "column"},
8297
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8298
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8299
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8300
+ "id": {"data_type": "bigint", "field_type": "column"},
8301
+ "last_sync_at": {"data_type": "timestamp", "field_type": "column"},
8302
+ "last_sync_result": {"data_type": "text", "field_type": "column"},
8303
+ "locked_at": {"data_type": "timestamp", "field_type": "column"},
8304
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8305
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8306
+ "type": {"data_type": "text", "field_type": "column"},
8307
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8308
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8309
+ },
8310
+ },
8311
+ "perishable_token": {
8312
+ "endpoint": "perishable_token",
8313
+ "fields": {
8314
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8315
+ "expires_at": {"data_type": "timestamp", "field_type": "column"},
8316
+ "id": {"data_type": "bigint", "field_type": "column"},
8317
+ "token": {"data_type": "text", "field_type": "column"},
8318
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8319
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8320
+ },
8321
+ },
8322
+ "permission_delegator": {
8323
+ "endpoint": "permission_delegator",
8324
+ "fields": {
8325
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8326
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8327
+ "id": {"data_type": "bigint", "field_type": "column"},
8328
+ "model_attribute_id": {"data_type": "bigint", "field_type": "column"},
8329
+ "model_attribute_ids": {"data_type": "text", "field_type": "column"},
8330
+ "model_type": {"data_type": "text", "field_type": "column"},
8331
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8332
+ "user_profile_id": {"data_type": "bigint", "field_type": "column"},
8333
+ },
8334
+ },
8335
+ "persona": {
8336
+ "endpoint": "persona",
8337
+ "fields": {
8338
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8339
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8340
+ "id": {"data_type": "bigint", "field_type": "column"},
8341
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8342
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8343
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8344
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8345
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8346
+ "user_profile_id": {"data_type": "bigint", "field_type": "column"},
8347
+ },
8348
+ },
8349
+ "post": {
8350
+ "endpoint": "post",
8351
+ "fields": {
8352
+ "all_notes": {"data_type": "text", "field_type": "string"},
8353
+ "content": {"data_type": "text", "field_type": "column"},
8354
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8355
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8356
+ "delta": {"data_type": "bool", "field_type": "column"},
8357
+ "id": {"data_type": "bigint", "field_type": "column"},
8358
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8359
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8360
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8361
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8362
+ "parent_id": {"data_type": "bigint", "field_type": "column"},
8363
+ "private": {"data_type": "bool", "field_type": "column"},
8364
+ "sphinx_id": {"data_type": "bigint", "field_type": "column"},
8365
+ "to_s": {"data_type": "text", "field_type": "string"},
8366
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8367
+ },
8368
+ },
8369
+ "post_relationship": {
8370
+ "endpoint": "post_relationship",
8371
+ "fields": {
8372
+ "attribute_name": {"data_type": "text", "field_type": "column"},
8373
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8374
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8375
+ "form_element_id": {"data_type": "text", "field_type": "column"},
8376
+ "id": {"data_type": "bigint", "field_type": "column"},
8377
+ "model_id": {"data_type": "bigint", "field_type": "column"},
8378
+ "model_type": {"data_type": "text", "field_type": "column"},
8379
+ "post_id": {"data_type": "bigint", "field_type": "column"},
8380
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8381
+ "sphinx_id": {"data_type": "bigint", "field_type": "column"},
8382
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8383
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8384
+ },
8385
+ },
8386
+ "post_view": {
8387
+ "endpoint": "post_view",
8388
+ "fields": {
8389
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8390
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8391
+ "id": {"data_type": "bigint", "field_type": "column"},
8392
+ "post_id": {"data_type": "bigint", "field_type": "column"},
8393
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8394
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8395
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8396
+ },
8397
+ },
8398
+ "primary_contact_tenure": {
8399
+ "endpoint": "primary_contact_tenure",
8400
+ "fields": {
8401
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8402
+ "end_date": {"data_type": "date", "field_type": "column"},
8403
+ "id": {"data_type": "bigint", "field_type": "column"},
8404
+ "start_date": {"data_type": "date", "field_type": "column"},
8405
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8406
+ "user_organization_id": {"data_type": "bigint", "field_type": "column"},
8407
+ },
8408
+ },
8409
+ "program_budget": {
8410
+ "endpoint": "program_budget",
8411
+ "fields": {
8412
+ "amount": {"data_type": "double", "field_type": "column"},
8413
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8414
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8415
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8416
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
8417
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
8418
+ "id": {"data_type": "bigint", "field_type": "column"},
8419
+ "initiative_id": {"data_type": "bigint", "field_type": "column"},
8420
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8421
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8422
+ "program_id": {"data_type": "bigint", "field_type": "column"},
8423
+ "spending_year": {"data_type": "text", "field_type": "column"},
8424
+ "sub_initiative_id": {"data_type": "bigint", "field_type": "column"},
8425
+ "sub_program_id": {"data_type": "bigint", "field_type": "column"},
8426
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8427
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8428
+ },
8429
+ },
8430
+ "project": {
8431
+ "endpoint": "project",
8432
+ "fields": {
8433
+ "all_notes": {"data_type": "text", "field_type": "string"},
8434
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8435
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8436
+ "delta": {"data_type": "bool", "field_type": "column"},
8437
+ "description": {"data_type": "text", "field_type": "column"},
8438
+ "filter_state": {"data_type": "text", "field_type": "string"},
8439
+ "id": {"data_type": "bigint", "field_type": "column"},
8440
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
8441
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8442
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8443
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8444
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8445
+ "previous_state": {"data_type": "text", "field_type": "string"},
8446
+ "project_end_date*": {"data_type": "date", "field_type": "column"},
8447
+ "project_start_date*": {"data_type": "date", "field_type": "column"},
8448
+ "project_type*": {"data_type": "text", "field_type": "column"},
8449
+ "state": {"data_type": "text", "field_type": "column"},
8450
+ "state_description": {"data_type": "text", "field_type": "string"},
8451
+ "state_to_english": {"data_type": "text", "field_type": "string"},
8452
+ "title": {"data_type": "text", "field_type": "column"},
8453
+ "to_s": {"data_type": "text", "field_type": "string"},
8454
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8455
+ },
8456
+ },
8457
+ "project_list": {
8458
+ "endpoint": "project_list",
8459
+ "fields": {
8460
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8461
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8462
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8463
+ "id": {"data_type": "bigint", "field_type": "column"},
8464
+ "list_order": {"data_type": "bigint", "field_type": "column"},
8465
+ "list_type*": {"data_type": "text", "field_type": "column"},
8466
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8467
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8468
+ "project_id": {"data_type": "bigint", "field_type": "column"},
8469
+ "title": {"data_type": "text", "field_type": "column"},
8470
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8471
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8472
+ },
8473
+ },
8474
+ "project_list_item": {
8475
+ "endpoint": "project_list_item",
8476
+ "fields": {
8477
+ "assigned_user_id": {"data_type": "bigint", "field_type": "column"},
8478
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8479
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8480
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8481
+ "due_at": {"data_type": "timestamp", "field_type": "column"},
8482
+ "id": {"data_type": "bigint", "field_type": "column"},
8483
+ "item_completed": {"data_type": "bool", "field_type": "column"},
8484
+ "item_order": {"data_type": "bigint", "field_type": "column"},
8485
+ "list_item_text": {"data_type": "text", "field_type": "column"},
8486
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8487
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8488
+ "project_list_id": {"data_type": "bigint", "field_type": "column"},
8489
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8490
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8491
+ },
8492
+ },
8493
+ "project_organization": {
8494
+ "endpoint": "project_organization",
8495
+ "fields": {
8496
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8497
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8498
+ "description": {"data_type": "text", "field_type": "column"},
8499
+ "id": {"data_type": "bigint", "field_type": "column"},
8500
+ "organization_id": {"data_type": "bigint", "field_type": "column"},
8501
+ "project_id": {"data_type": "bigint", "field_type": "column"},
8502
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8503
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8504
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8505
+ },
8506
+ },
8507
+ "project_request": {
8508
+ "endpoint": "project_request",
8509
+ "fields": {
8510
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8511
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8512
+ "description": {"data_type": "text", "field_type": "column"},
8513
+ "grant_request_workflow_state": {
8514
+ "data_type": "text",
8515
+ "field_type": "string",
8516
+ },
8517
+ "granted": {"data_type": "bool", "field_type": "column"},
8518
+ "id": {"data_type": "bigint", "field_type": "column"},
8519
+ "project_id": {"data_type": "bigint", "field_type": "column"},
8520
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8521
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8522
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8523
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8524
+ },
8525
+ },
8526
+ "project_user": {
8527
+ "endpoint": "project_user",
8528
+ "fields": {
8529
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8530
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8531
+ "description": {"data_type": "text", "field_type": "column"},
8532
+ "id": {"data_type": "bigint", "field_type": "column"},
8533
+ "project_id": {"data_type": "bigint", "field_type": "column"},
8534
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8535
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8536
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8537
+ },
8538
+ },
8539
+ "real_me_invitation": {
8540
+ "endpoint": "real_me_invitation",
8541
+ "fields": {
8542
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8543
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8544
+ "id": {"data_type": "bigint", "field_type": "column"},
8545
+ "token": {"data_type": "text", "field_type": "column"},
8546
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8547
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8548
+ },
8549
+ },
8550
+ "realtime_update": {
8551
+ "endpoint": "realtime_update",
8552
+ "fields": {
8553
+ "action": {"data_type": "text", "field_type": "column"},
8554
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8555
+ "delta_attributes": {"data_type": "text", "field_type": "column"},
8556
+ "id": {"data_type": "bigint", "field_type": "column"},
8557
+ "model_class": {"data_type": "text", "field_type": "column"},
8558
+ "model_id": {"data_type": "bigint", "field_type": "column"},
8559
+ "target_user_id": {"data_type": "bigint", "field_type": "column"},
8560
+ "type_name": {"data_type": "text", "field_type": "column"},
8561
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8562
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8563
+ },
8564
+ },
8565
+ "recommendation_email": {
8566
+ "endpoint": "recommendation_email",
8567
+ "fields": {
8568
+ "body": {"data_type": "text", "field_type": "column"},
8569
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8570
+ "from": {"data_type": "text", "field_type": "column"},
8571
+ "id": {"data_type": "bigint", "field_type": "column"},
8572
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8573
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8574
+ "reply_to": {"data_type": "text", "field_type": "column"},
8575
+ "return_path": {"data_type": "text", "field_type": "column"},
8576
+ "status": {"data_type": "text", "field_type": "column"},
8577
+ "subject": {"data_type": "text", "field_type": "column"},
8578
+ "to": {"data_type": "text", "field_type": "column"},
8579
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8580
+ "user_id": {"data_type": "bigint", "field_type": "column"},
8581
+ },
8582
+ },
8583
+ "reduce_indexing_record": {
8584
+ "endpoint": "reduce_indexing_record",
8585
+ "fields": {
8586
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8587
+ "id": {"data_type": "bigint", "field_type": "column"},
8588
+ "model_id": {"data_type": "bigint", "field_type": "column"},
8589
+ "model_type": {"data_type": "text", "field_type": "column"},
8590
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8591
+ },
8592
+ },
8593
+ "relationship": {
8594
+ "endpoint": "relationship",
8595
+ "fields": {
8596
+ "all_notes": {"data_type": "text", "field_type": "string"},
8597
+ "archived": {"data_type": "bool", "field_type": "column"},
8598
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8599
+ "description": {"data_type": "text", "field_type": "column"},
8600
+ "id": {"data_type": "bigint", "field_type": "column"},
8601
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8602
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8603
+ "model_id": {"data_type": "bigint", "field_type": "column"},
8604
+ "principal_entity_id": {"data_type": "bigint", "field_type": "column"},
8605
+ "principal_entity_type": {"data_type": "text", "field_type": "column"},
8606
+ "relatable_id": {"data_type": "bigint", "field_type": "column"},
8607
+ "relatable_type": {"data_type": "text", "field_type": "column"},
8608
+ "related_model_id": {"data_type": "bigint", "field_type": "column"},
8609
+ "related_relatable_id": {"data_type": "bigint", "field_type": "column"},
8610
+ "related_relatable_type": {"data_type": "text", "field_type": "column"},
8611
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8612
+ "to_s": {"data_type": "text", "field_type": "string"},
8613
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8614
+ },
8615
+ },
8616
+ "relationship_schema_mapping": {
8617
+ "endpoint": "relationship_schema_mapping",
8618
+ "fields": {
8619
+ "active": {"data_type": "bool", "field_type": "column"},
8620
+ "column_type": {"data_type": "text", "field_type": "column"},
8621
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8622
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8623
+ "id": {"data_type": "bigint", "field_type": "column"},
8624
+ "is_cdt": {"data_type": "bool", "field_type": "column"},
8625
+ "is_shim": {"data_type": "bool", "field_type": "column"},
8626
+ "is_zoom": {"data_type": "bool", "field_type": "column"},
8627
+ "model_type": {"data_type": "text", "field_type": "column"},
8628
+ "related_model_type": {"data_type": "text", "field_type": "column"},
8629
+ "request_type_identifier": {"data_type": "text", "field_type": "column"},
8630
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8631
+ "user_profile_category": {"data_type": "text", "field_type": "column"},
8632
+ },
8633
+ },
8634
+ "request_amendment": {
8635
+ "endpoint": "request_amendment",
8636
+ "fields": {
8637
+ "all_notes": {"data_type": "text", "field_type": "string"},
8638
+ "amend_flag*": {"data_type": "text", "field_type": "column"},
8639
+ "amended_at": {"data_type": "date", "field_type": "column"},
8640
+ "amendment_attestation*": {"data_type": "bool", "field_type": "column"},
8641
+ "amendment_budget_year*": {"data_type": "bigint", "field_type": "column"},
8642
+ "amendment_id_to_text*": {"data_type": "text", "field_type": "column"},
8643
+ "amendment_type*": {"data_type": "text", "field_type": "column"},
8644
+ "amount_difference*": {"data_type": "double", "field_type": "column"},
8645
+ "amount_recommended": {"data_type": "double", "field_type": "column"},
8646
+ "amount_recommended_fx_2": {"data_type": "double", "field_type": "column"},
8647
+ "amount_recommended_local": {"data_type": "double", "field_type": "column"},
8648
+ "attestation_date*": {"data_type": "timestamp", "field_type": "column"},
8649
+ "budget_changes*": {"data_type": "text", "field_type": "column"},
8650
+ "change_in_activities_or_deliverables*": {
8651
+ "data_type": "text",
8652
+ "field_type": "column",
8653
+ },
8654
+ "comments_to_grantee*": {"data_type": "text", "field_type": "column"},
8655
+ "cost_category_change_type*": {"data_type": "text", "field_type": "column"},
8656
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8657
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8658
+ "delta": {"data_type": "bool", "field_type": "column"},
8659
+ "describe_change_of_scope*": {"data_type": "text", "field_type": "column"},
8660
+ "describe_the_amendment_needed*": {
8661
+ "data_type": "text",
8662
+ "field_type": "column",
8663
+ },
8664
+ "duration": {"data_type": "bigint", "field_type": "column"},
8665
+ "end_date": {"data_type": "timestamp", "field_type": "column"},
8666
+ "equipment_budget_change_comment*": {
8667
+ "data_type": "text",
8668
+ "field_type": "column",
8669
+ },
8670
+ "feedback_addressed*": {"data_type": "text", "field_type": "column"},
8671
+ "filter_state": {"data_type": "text", "field_type": "string"},
8672
+ "fx_applied_date_1": {"data_type": "date", "field_type": "column"},
8673
+ "fx_applied_date_2": {"data_type": "date", "field_type": "column"},
8674
+ "fx_date_1": {"data_type": "date", "field_type": "column"},
8675
+ "fx_date_2": {"data_type": "date", "field_type": "column"},
8676
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
8677
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
8678
+ "fx_spotrate_1": {"data_type": "bool", "field_type": "column"},
8679
+ "fx_spotrate_2": {"data_type": "bool", "field_type": "column"},
8680
+ "fx_type_id": {"data_type": "bigint", "field_type": "column"},
8681
+ "gm_check_1*": {"data_type": "bool", "field_type": "column"},
8682
+ "gm_check_2*": {"data_type": "bool", "field_type": "column"},
8683
+ "gm_check_3*": {"data_type": "bool", "field_type": "column"},
8684
+ "grant_budget_year*": {"data_type": "bigint", "field_type": "column"},
8685
+ "grant_request_workflow_state": {
8686
+ "data_type": "text",
8687
+ "field_type": "string",
8688
+ },
8689
+ "grantee_city": {"data_type": "text", "field_type": "string"},
8690
+ "grantee_email": {"data_type": "text", "field_type": "string"},
8691
+ "grantee_fax": {"data_type": "text", "field_type": "string"},
8692
+ "grantee_name_first_name_first": {
8693
+ "data_type": "text",
8694
+ "field_type": "string",
8695
+ },
8696
+ "grantee_name_last_name_first": {
8697
+ "data_type": "text",
8698
+ "field_type": "string",
8699
+ },
8700
+ "grantee_phone": {"data_type": "text", "field_type": "string"},
8701
+ "grantee_street_address": {"data_type": "text", "field_type": "string"},
8702
+ "grantee_street_address_2": {"data_type": "text", "field_type": "string"},
8703
+ "grantee_user_first_name_first": {
8704
+ "data_type": "text",
8705
+ "field_type": "string",
8706
+ },
8707
+ "grantee_user_last_name_first": {
8708
+ "data_type": "text",
8709
+ "field_type": "string",
8710
+ },
8711
+ "id": {"data_type": "bigint", "field_type": "column"},
8712
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
8713
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8714
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8715
+ "new_equipment_amount*": {"data_type": "double", "field_type": "column"},
8716
+ "new_extra_column": {"data_type": "text", "field_type": "column"},
8717
+ "new_indirect_costs_amount_up_to_20_of_direct_costs*": {
8718
+ "data_type": "double",
8719
+ "field_type": "column",
8720
+ },
8721
+ "new_indirect_costs_budget_change_comment*": {
8722
+ "data_type": "text",
8723
+ "field_type": "column",
8724
+ },
8725
+ "new_other_direct_costs_amount*": {
8726
+ "data_type": "double",
8727
+ "field_type": "column",
8728
+ },
8729
+ "new_personnel_amount*": {"data_type": "double", "field_type": "column"},
8730
+ "new_professional_services_amount*": {
8731
+ "data_type": "double",
8732
+ "field_type": "column",
8733
+ },
8734
+ "new_subawards_amount*": {"data_type": "double", "field_type": "column"},
8735
+ "new_travel_amount*": {"data_type": "double", "field_type": "column"},
8736
+ "note": {"data_type": "text", "field_type": "column"},
8737
+ "old_amount_recommended": {"data_type": "double", "field_type": "column"},
8738
+ "old_amount_recommended_fx_2": {
8739
+ "data_type": "double",
8740
+ "field_type": "column",
8741
+ },
8742
+ "old_amount_recommended_local": {
8743
+ "data_type": "double",
8744
+ "field_type": "column",
8745
+ },
8746
+ "old_duration": {"data_type": "bigint", "field_type": "column"},
8747
+ "old_end_date": {"data_type": "timestamp", "field_type": "column"},
8748
+ "old_extra_column": {"data_type": "text", "field_type": "column"},
8749
+ "old_start_date": {"data_type": "timestamp", "field_type": "column"},
8750
+ "original": {"data_type": "bool", "field_type": "column"},
8751
+ "other_direct_costs_budget_change_comment*": {
8752
+ "data_type": "text",
8753
+ "field_type": "column",
8754
+ },
8755
+ "parent_request_id*": {"data_type": "text", "field_type": "column"},
8756
+ "payment_changes*": {"data_type": "text", "field_type": "column"},
8757
+ "personnel_budget_change_narrative*": {
8758
+ "data_type": "text",
8759
+ "field_type": "column",
8760
+ },
8761
+ "previous_state": {"data_type": "text", "field_type": "string"},
8762
+ "professional_services_budget_change_comment*": {
8763
+ "data_type": "text",
8764
+ "field_type": "column",
8765
+ },
8766
+ "program_org_name": {"data_type": "text", "field_type": "string"},
8767
+ "reason_for_amendment*": {"data_type": "text", "field_type": "column"},
8768
+ "recommendations*": {"data_type": "text", "field_type": "column"},
8769
+ "reporting_changes*": {"data_type": "text", "field_type": "column"},
8770
+ "request_grant_id": {"data_type": "bigint", "field_type": "string"},
8771
+ "request_hierarchy": {"data_type": "text", "field_type": "string"},
8772
+ "request_org_acronym": {"data_type": "text", "field_type": "string"},
8773
+ "request_org_name": {"data_type": "text", "field_type": "string"},
8774
+ "request_type": {"data_type": "text", "field_type": "column"},
8775
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8776
+ "start_date": {"data_type": "timestamp", "field_type": "column"},
8777
+ "state": {"data_type": "text", "field_type": "column"},
8778
+ "state_description": {"data_type": "text", "field_type": "string"},
8779
+ "state_to_english": {"data_type": "text", "field_type": "string"},
8780
+ "subawards_budget_change_comment*": {
8781
+ "data_type": "text",
8782
+ "field_type": "column",
8783
+ },
8784
+ "to_s": {"data_type": "text", "field_type": "string"},
8785
+ "travel_budget_change_comment*": {
8786
+ "data_type": "text",
8787
+ "field_type": "column",
8788
+ },
8789
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8790
+ },
8791
+ },
8792
+ "request_amendment_model_themes": {
8793
+ "endpoint": "request_amendment_model_themes",
8794
+ "fields": {
8795
+ "active": {"data_type": "bool", "field_type": "column"},
8796
+ "amendment_model_theme_id": {"data_type": "bigint", "field_type": "column"},
8797
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8798
+ "id": {"data_type": "bigint", "field_type": "column"},
8799
+ "limit": {"data_type": "bool", "field_type": "column"},
8800
+ "request_model_theme_id": {"data_type": "bigint", "field_type": "column"},
8801
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8802
+ },
8803
+ },
8804
+ "request_evaluation_metric": {
8805
+ "endpoint": "request_evaluation_metric",
8806
+ "fields": {
8807
+ "achieved": {"data_type": "bool", "field_type": "column"},
8808
+ "comment": {"data_type": "text", "field_type": "column"},
8809
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8810
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8811
+ "description": {"data_type": "text", "field_type": "column"},
8812
+ "grant_request_workflow_state": {
8813
+ "data_type": "text",
8814
+ "field_type": "string",
8815
+ },
8816
+ "id": {"data_type": "bigint", "field_type": "column"},
8817
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8818
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8819
+ "timeframe": {"data_type": "text", "field_type": "column"},
8820
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8821
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8822
+ },
8823
+ },
8824
+ "request_funding_source": {
8825
+ "endpoint": "request_funding_source",
8826
+ "fields": {
8827
+ "board_authority_id": {"data_type": "bigint", "field_type": "column"},
8828
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8829
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8830
+ "document_file_name": {"data_type": "text", "field_type": "column"},
8831
+ "funding_amount": {"data_type": "double", "field_type": "column"},
8832
+ "funding_amount_fx_2": {"data_type": "double", "field_type": "column"},
8833
+ "funding_amount_local": {"data_type": "double", "field_type": "column"},
8834
+ "funding_source_allocation_id": {
8835
+ "data_type": "bigint",
8836
+ "field_type": "column",
8837
+ },
8838
+ "fx_applied_date_1": {"data_type": "date", "field_type": "column"},
8839
+ "fx_applied_date_2": {"data_type": "date", "field_type": "column"},
8840
+ "fx_date_1": {"data_type": "date", "field_type": "column"},
8841
+ "fx_date_2": {"data_type": "date", "field_type": "column"},
8842
+ "fx_rate1": {"data_type": "double", "field_type": "column"},
8843
+ "fx_rate2": {"data_type": "double", "field_type": "column"},
8844
+ "fx_spotrate_1": {"data_type": "bool", "field_type": "column"},
8845
+ "fx_spotrate_2": {"data_type": "bool", "field_type": "column"},
8846
+ "fx_type_id": {"data_type": "bigint", "field_type": "column"},
8847
+ "grant_request_workflow_state": {
8848
+ "data_type": "text",
8849
+ "field_type": "string",
8850
+ },
8851
+ "id": {"data_type": "bigint", "field_type": "column"},
8852
+ "initiative_id": {"data_type": "bigint", "field_type": "column"},
8853
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
8854
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
8855
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8856
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8857
+ "program_id": {"data_type": "bigint", "field_type": "column"},
8858
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8859
+ "request_regrant_id": {"data_type": "bigint", "field_type": "column"},
8860
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8861
+ "sub_initiative_id": {"data_type": "bigint", "field_type": "column"},
8862
+ "sub_program_id": {"data_type": "bigint", "field_type": "column"},
8863
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8864
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8865
+ },
8866
+ },
8867
+ "request_geo_state": {
8868
+ "endpoint": "request_geo_state",
8869
+ "fields": {
8870
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8871
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8872
+ "geo_state_id": {"data_type": "bigint", "field_type": "column"},
8873
+ "grant_request_workflow_state": {
8874
+ "data_type": "text",
8875
+ "field_type": "string",
8876
+ },
8877
+ "id": {"data_type": "bigint", "field_type": "column"},
8878
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8879
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8880
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8881
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8882
+ },
8883
+ },
8884
+ "request_organization": {
8885
+ "endpoint": "request_organization",
8886
+ "fields": {
8887
+ "all_notes": {"data_type": "text", "field_type": "string"},
8888
+ "archived": {"data_type": "bool", "field_type": "column"},
8889
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8890
+ "description": {"data_type": "text", "field_type": "column"},
8891
+ "grant_request_workflow_state": {
8892
+ "data_type": "text",
8893
+ "field_type": "string",
8894
+ },
8895
+ "id": {"data_type": "bigint", "field_type": "column"},
8896
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8897
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8898
+ "principal_entity_id": {"data_type": "bigint", "field_type": "column"},
8899
+ "principal_entity_type": {"data_type": "text", "field_type": "column"},
8900
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8901
+ "to_s": {"data_type": "text", "field_type": "string"},
8902
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8903
+ },
8904
+ },
8905
+ "request_outcome": {
8906
+ "endpoint": "request_outcome",
8907
+ "fields": {
8908
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8909
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8910
+ "grant_request_workflow_state": {
8911
+ "data_type": "text",
8912
+ "field_type": "string",
8913
+ },
8914
+ "id": {"data_type": "bigint", "field_type": "column"},
8915
+ "outcome_id": {"data_type": "bigint", "field_type": "column"},
8916
+ "percent": {"data_type": "bigint", "field_type": "column"},
8917
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8918
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8919
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8920
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8921
+ },
8922
+ },
8923
+ "request_program": {
8924
+ "endpoint": "request_program",
8925
+ "fields": {
8926
+ "approved_at": {"data_type": "timestamp", "field_type": "column"},
8927
+ "approved_by_user_id": {"data_type": "bigint", "field_type": "column"},
8928
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8929
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
8930
+ "grant_request_workflow_state": {
8931
+ "data_type": "text",
8932
+ "field_type": "string",
8933
+ },
8934
+ "id": {"data_type": "bigint", "field_type": "column"},
8935
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
8936
+ "previous_state": {"data_type": "text", "field_type": "string"},
8937
+ "program_id": {"data_type": "bigint", "field_type": "column"},
8938
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8939
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8940
+ "state": {"data_type": "text", "field_type": "column"},
8941
+ "state_description": {"data_type": "text", "field_type": "string"},
8942
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8943
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
8944
+ },
8945
+ },
8946
+ "request_recommendation": {
8947
+ "endpoint": "request_recommendation",
8948
+ "fields": {
8949
+ "all_notes": {"data_type": "text", "field_type": "string"},
8950
+ "body": {"data_type": "text", "field_type": "column"},
8951
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8952
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8953
+ "grant_request_workflow_state": {
8954
+ "data_type": "text",
8955
+ "field_type": "string",
8956
+ },
8957
+ "id": {"data_type": "bigint", "field_type": "column"},
8958
+ "migrate_id": {"data_type": "text", "field_type": "column"},
8959
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
8960
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8961
+ "request_recommender_id": {"data_type": "bigint", "field_type": "column"},
8962
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8963
+ "to_s": {"data_type": "text", "field_type": "string"},
8964
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8965
+ },
8966
+ },
8967
+ "request_recommender": {
8968
+ "endpoint": "request_recommender",
8969
+ "fields": {
8970
+ "all_notes": {"data_type": "text", "field_type": "string"},
8971
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8972
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8973
+ "email": {"data_type": "text", "field_type": "column"},
8974
+ "first_name": {"data_type": "text", "field_type": "column"},
8975
+ "grant_request_workflow_state": {
8976
+ "data_type": "text",
8977
+ "field_type": "string",
8978
+ },
8979
+ "id": {"data_type": "bigint", "field_type": "column"},
8980
+ "last_name": {"data_type": "text", "field_type": "column"},
8981
+ "request_id": {"data_type": "bigint", "field_type": "column"},
8982
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
8983
+ "submission_token": {"data_type": "text", "field_type": "column"},
8984
+ "to_s": {"data_type": "text", "field_type": "string"},
8985
+ "token_expiry": {"data_type": "timestamp", "field_type": "column"},
8986
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
8987
+ },
8988
+ },
8989
+ "request_regrant": {
8990
+ "endpoint": "request_regrant",
8991
+ "fields": {
8992
+ "all_notes": {"data_type": "text", "field_type": "string"},
8993
+ "amount": {"data_type": "double", "field_type": "column"},
8994
+ "base_regrant_id": {"data_type": "text", "field_type": "column"},
8995
+ "contig_id": {"data_type": "text", "field_type": "column"},
8996
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
8997
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
8998
+ "delta": {"data_type": "bool", "field_type": "column"},
8999
+ "filter_state": {"data_type": "text", "field_type": "string"},
9000
+ "full_name": {"data_type": "text", "field_type": "string"},
9001
+ "grant_request_workflow_state": {
9002
+ "data_type": "text",
9003
+ "field_type": "string",
9004
+ },
9005
+ "granted_at": {"data_type": "timestamp", "field_type": "column"},
9006
+ "grantee_city": {"data_type": "text", "field_type": "string"},
9007
+ "grantee_email": {"data_type": "text", "field_type": "string"},
9008
+ "grantee_fax": {"data_type": "text", "field_type": "string"},
9009
+ "grantee_name_first_name_first": {
9010
+ "data_type": "text",
9011
+ "field_type": "string",
9012
+ },
9013
+ "grantee_name_last_name_first": {
9014
+ "data_type": "text",
9015
+ "field_type": "string",
9016
+ },
9017
+ "grantee_phone": {"data_type": "text", "field_type": "string"},
9018
+ "grantee_street_address": {"data_type": "text", "field_type": "string"},
9019
+ "grantee_street_address_2": {"data_type": "text", "field_type": "string"},
9020
+ "grantee_user_first_name_first": {
9021
+ "data_type": "text",
9022
+ "field_type": "string",
9023
+ },
9024
+ "grantee_user_last_name_first": {
9025
+ "data_type": "text",
9026
+ "field_type": "string",
9027
+ },
9028
+ "id": {"data_type": "bigint", "field_type": "column"},
9029
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
9030
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
9031
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
9032
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9033
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9034
+ "previous_state": {"data_type": "text", "field_type": "string"},
9035
+ "program_id": {"data_type": "bigint", "field_type": "column"},
9036
+ "program_org_name": {"data_type": "text", "field_type": "string"},
9037
+ "regrant_org_name": {"data_type": "text", "field_type": "string"},
9038
+ "request_grant_id": {"data_type": "bigint", "field_type": "string"},
9039
+ "request_hierarchy": {"data_type": "text", "field_type": "string"},
9040
+ "request_org_acronym": {"data_type": "text", "field_type": "string"},
9041
+ "request_org_name": {"data_type": "text", "field_type": "string"},
9042
+ "request_spending_year": {"data_type": "text", "field_type": "string"},
9043
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9044
+ "short_summary": {"data_type": "text", "field_type": "column"},
9045
+ "state": {"data_type": "text", "field_type": "column"},
9046
+ "state_description": {"data_type": "text", "field_type": "string"},
9047
+ "state_to_english": {"data_type": "text", "field_type": "string"},
9048
+ "to_s": {"data_type": "text", "field_type": "string"},
9049
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9050
+ },
9051
+ },
9052
+ "request_review": {
9053
+ "endpoint": "request_review",
9054
+ "fields": {
9055
+ "all_notes": {"data_type": "text", "field_type": "string"},
9056
+ "application_type*": {"data_type": "text", "field_type": "column"},
9057
+ "benefits": {"data_type": "text", "field_type": "column"},
9058
+ "budget_rating*": {"data_type": "bigint", "field_type": "column"},
9059
+ "budget_rating_1*": {"data_type": "bigint", "field_type": "column"},
9060
+ "capacity_comments*": {"data_type": "text", "field_type": "column"},
9061
+ "capacity_rating*": {"data_type": "bigint", "field_type": "column"},
9062
+ "clarity_and_feasibility_rating*": {
9063
+ "data_type": "bigint",
9064
+ "field_type": "column",
9065
+ },
9066
+ "clarity_comments*": {"data_type": "text", "field_type": "column"},
9067
+ "class_analysis_comments*": {"data_type": "text", "field_type": "column"},
9068
+ "class_analysis_completed*": {"data_type": "text", "field_type": "column"},
9069
+ "class_analysis_needed*": {"data_type": "text", "field_type": "column"},
9070
+ "class_analysis_select*": {"data_type": "text", "field_type": "column"},
9071
+ "comment": {"data_type": "text", "field_type": "column"},
9072
+ "conflict_exists_dynamic*": {"data_type": "bool", "field_type": "column"},
9073
+ "conflict_reported": {"data_type": "bool", "field_type": "column"},
9074
+ "contig_id": {"data_type": "text", "field_type": "column"},
9075
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9076
+ "delayed_conflict*": {"data_type": "bool", "field_type": "column"},
9077
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9078
+ "delta": {"data_type": "bool", "field_type": "column"},
9079
+ "eligibility_mission_multiple*": {
9080
+ "data_type": "text",
9081
+ "field_type": "column",
9082
+ },
9083
+ "eligibility_mission_multiple_comments*": {
9084
+ "data_type": "text",
9085
+ "field_type": "column",
9086
+ },
9087
+ "environmental_rating*": {"data_type": "bigint", "field_type": "column"},
9088
+ "external_review_average_2024*": {
9089
+ "data_type": "bigint",
9090
+ "field_type": "column",
9091
+ },
9092
+ "external_review_score_total_sum_2024*": {
9093
+ "data_type": "bigint",
9094
+ "field_type": "column",
9095
+ },
9096
+ "external_review_score_total_sum_2025*": {
9097
+ "data_type": "bigint",
9098
+ "field_type": "column",
9099
+ },
9100
+ "external_reviewer": {"data_type": "text", "field_type": "string"},
9101
+ "feedback_answered*": {"data_type": "text", "field_type": "column"},
9102
+ "filter_state": {"data_type": "text", "field_type": "string"},
9103
+ "goals_and_funding_rating*": {
9104
+ "data_type": "bigint",
9105
+ "field_type": "column",
9106
+ },
9107
+ "grant_or_request_id": {"data_type": "bigint", "field_type": "string"},
9108
+ "grant_request_workflow_state": {
9109
+ "data_type": "text",
9110
+ "field_type": "string",
9111
+ },
9112
+ "grantee_city": {"data_type": "text", "field_type": "string"},
9113
+ "grantee_email": {"data_type": "text", "field_type": "string"},
9114
+ "grantee_fax": {"data_type": "text", "field_type": "string"},
9115
+ "grantee_name_first_name_first": {
9116
+ "data_type": "text",
9117
+ "field_type": "string",
9118
+ },
9119
+ "grantee_name_last_name_first": {
9120
+ "data_type": "text",
9121
+ "field_type": "string",
9122
+ },
9123
+ "grantee_org_owner_first_name_first": {
9124
+ "data_type": "text",
9125
+ "field_type": "string",
9126
+ },
9127
+ "grantee_org_owner_last_name_first": {
9128
+ "data_type": "text",
9129
+ "field_type": "string",
9130
+ },
9131
+ "grantee_phone": {"data_type": "text", "field_type": "string"},
9132
+ "grantee_street_address": {"data_type": "text", "field_type": "string"},
9133
+ "grantee_street_address_2": {"data_type": "text", "field_type": "string"},
9134
+ "grantee_user_first_name_first": {
9135
+ "data_type": "text",
9136
+ "field_type": "string",
9137
+ },
9138
+ "grantee_user_last_name_first": {
9139
+ "data_type": "text",
9140
+ "field_type": "string",
9141
+ },
9142
+ "id": {"data_type": "bigint", "field_type": "column"},
9143
+ "impact_rating*": {"data_type": "bigint", "field_type": "column"},
9144
+ "implementation_feedback*": {"data_type": "text", "field_type": "column"},
9145
+ "independent_or_university*": {"data_type": "text", "field_type": "column"},
9146
+ "independent_or_university_select*": {
9147
+ "data_type": "text",
9148
+ "field_type": "column",
9149
+ },
9150
+ "innovation_rating*": {"data_type": "bigint", "field_type": "column"},
9151
+ "is_temp_precreate": {"data_type": "bool", "field_type": "column"},
9152
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
9153
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
9154
+ "measurements_rating*": {"data_type": "bigint", "field_type": "column"},
9155
+ "merits": {"data_type": "text", "field_type": "column"},
9156
+ "merits_rating*": {"data_type": "bigint", "field_type": "column"},
9157
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9158
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9159
+ "mission_alignment_exempt*": {"data_type": "text", "field_type": "column"},
9160
+ "mission_alignment_exempt_comments*": {
9161
+ "data_type": "text",
9162
+ "field_type": "column",
9163
+ },
9164
+ "number_different_amount_requested*": {
9165
+ "data_type": "text",
9166
+ "field_type": "column",
9167
+ },
9168
+ "outcomes": {"data_type": "text", "field_type": "column"},
9169
+ "outcomes_rating*": {"data_type": "bigint", "field_type": "column"},
9170
+ "pm_rating*": {"data_type": "bigint", "field_type": "column"},
9171
+ "previous_state": {"data_type": "text", "field_type": "string"},
9172
+ "program_org_name": {"data_type": "text", "field_type": "string"},
9173
+ "programme_goal_comments*": {"data_type": "text", "field_type": "column"},
9174
+ "programme_goal_rating*": {"data_type": "bigint", "field_type": "column"},
9175
+ "publication_rating*": {"data_type": "bigint", "field_type": "column"},
9176
+ "questions_for_grantee*": {"data_type": "text", "field_type": "column"},
9177
+ "questions_for_grantee_yes*": {"data_type": "text", "field_type": "column"},
9178
+ "questions_for_staff*": {"data_type": "text", "field_type": "column"},
9179
+ "questions_for_staff_yes*": {"data_type": "text", "field_type": "column"},
9180
+ "rating": {"data_type": "bigint", "field_type": "column"},
9181
+ "rating_float": {"data_type": "double", "field_type": "column"},
9182
+ "ratings_formula": {"data_type": "text", "field_type": "column"},
9183
+ "ratings_hash": {"data_type": "text", "field_type": "column"},
9184
+ "reasonability_rating*": {"data_type": "bigint", "field_type": "column"},
9185
+ "recommendation": {"data_type": "text", "field_type": "column"},
9186
+ "request_hierarchy": {"data_type": "text", "field_type": "string"},
9187
+ "request_id": {"data_type": "bigint", "field_type": "column"},
9188
+ "request_org_acronym": {"data_type": "text", "field_type": "string"},
9189
+ "request_org_name": {"data_type": "text", "field_type": "string"},
9190
+ "request_review_set_id": {"data_type": "bigint", "field_type": "column"},
9191
+ "research_applied*": {"data_type": "text", "field_type": "column"},
9192
+ "research_collaborative*": {"data_type": "text", "field_type": "column"},
9193
+ "research_novel*": {"data_type": "text", "field_type": "column"},
9194
+ "responds_to_needs_rating*": {
9195
+ "data_type": "bigint",
9196
+ "field_type": "column",
9197
+ },
9198
+ "response_to_legal_questions*": {
9199
+ "data_type": "text",
9200
+ "field_type": "column",
9201
+ },
9202
+ "review_type": {"data_type": "text", "field_type": "column"},
9203
+ "reviewer_name*": {"data_type": "text", "field_type": "column"},
9204
+ "roles_and_relationships_comments*": {
9205
+ "data_type": "text",
9206
+ "field_type": "column",
9207
+ },
9208
+ "roles_and_relationships_rating*": {
9209
+ "data_type": "bigint",
9210
+ "field_type": "column",
9211
+ },
9212
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9213
+ "start_review": {"data_type": "bool", "field_type": "column"},
9214
+ "state": {"data_type": "text", "field_type": "column"},
9215
+ "state_description": {"data_type": "text", "field_type": "string"},
9216
+ "state_to_english": {"data_type": "text", "field_type": "string"},
9217
+ "strengths_weaknesses_feedback*": {
9218
+ "data_type": "text",
9219
+ "field_type": "column",
9220
+ },
9221
+ "suitability_rating*": {"data_type": "bigint", "field_type": "column"},
9222
+ "support_funding*": {"data_type": "text", "field_type": "column"},
9223
+ "support_funding_btn_small*": {"data_type": "text", "field_type": "column"},
9224
+ "support_funding_conditions*": {
9225
+ "data_type": "text",
9226
+ "field_type": "column",
9227
+ },
9228
+ "support_funding_no*": {"data_type": "text", "field_type": "column"},
9229
+ "support_funding_yes*": {"data_type": "double", "field_type": "column"},
9230
+ "sustainability_rating*": {"data_type": "bigint", "field_type": "column"},
9231
+ "technical_rating*": {"data_type": "bigint", "field_type": "column"},
9232
+ "timing_rating*": {"data_type": "bigint", "field_type": "column"},
9233
+ "to_s": {"data_type": "text", "field_type": "string"},
9234
+ "type_of_conflict*": {"data_type": "text", "field_type": "column"},
9235
+ "type_of_conflict_other*": {"data_type": "text", "field_type": "column"},
9236
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9237
+ },
9238
+ },
9239
+ "request_review_set": {
9240
+ "endpoint": "request_review_set",
9241
+ "fields": {
9242
+ "all_notes": {"data_type": "text", "field_type": "string"},
9243
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9244
+ "filter_state": {"data_type": "text", "field_type": "string"},
9245
+ "grant_request_workflow_state": {
9246
+ "data_type": "text",
9247
+ "field_type": "string",
9248
+ },
9249
+ "id": {"data_type": "bigint", "field_type": "column"},
9250
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9251
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9252
+ "pre_create_reviews": {"data_type": "bool", "field_type": "column"},
9253
+ "previous_state": {"data_type": "text", "field_type": "string"},
9254
+ "request_id": {"data_type": "bigint", "field_type": "column"},
9255
+ "request_review_model_theme_id": {
9256
+ "data_type": "bigint",
9257
+ "field_type": "column",
9258
+ },
9259
+ "reviewer_group_id": {"data_type": "bigint", "field_type": "column"},
9260
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9261
+ "state": {"data_type": "text", "field_type": "column"},
9262
+ "state_description": {"data_type": "text", "field_type": "string"},
9263
+ "state_to_english": {"data_type": "text", "field_type": "string"},
9264
+ "states_json": {"data_type": "text", "field_type": "column"},
9265
+ "to_s": {"data_type": "text", "field_type": "string"},
9266
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9267
+ },
9268
+ },
9269
+ "request_reviewer_assignment": {
9270
+ "endpoint": "request_reviewer_assignment",
9271
+ "fields": {
9272
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9273
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9274
+ "id": {"data_type": "bigint", "field_type": "column"},
9275
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9276
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9277
+ "request_review_set_id": {"data_type": "bigint", "field_type": "column"},
9278
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9279
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9280
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9281
+ },
9282
+ },
9283
+ "role": {
9284
+ "endpoint": "role",
9285
+ "fields": {
9286
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9287
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9288
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9289
+ "id": {"data_type": "bigint", "field_type": "column"},
9290
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9291
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9292
+ "roleable_type": {"data_type": "text", "field_type": "column"},
9293
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9294
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9295
+ },
9296
+ },
9297
+ "role_user": {
9298
+ "endpoint": "role_user",
9299
+ "fields": {
9300
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9301
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9302
+ "id": {"data_type": "bigint", "field_type": "column"},
9303
+ "is_for_all": {"data_type": "bool", "field_type": "column"},
9304
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9305
+ "role_id": {"data_type": "bigint", "field_type": "column"},
9306
+ "roleable_id": {"data_type": "bigint", "field_type": "column"},
9307
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9308
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9309
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9310
+ },
9311
+ },
9312
+ "section": {
9313
+ "endpoint": "section",
9314
+ "fields": {
9315
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9316
+ "id": {"data_type": "bigint", "field_type": "column"},
9317
+ "model_type": {"data_type": "text", "field_type": "column"},
9318
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9319
+ },
9320
+ },
9321
+ "segment": {
9322
+ "endpoint": "segment",
9323
+ "fields": {
9324
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9325
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9326
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9327
+ "id": {"data_type": "bigint", "field_type": "column"},
9328
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
9329
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
9330
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9331
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9332
+ "program_id": {"data_type": "bigint", "field_type": "column"},
9333
+ "segment_tag_id": {"data_type": "bigint", "field_type": "column"},
9334
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9335
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9336
+ },
9337
+ },
9338
+ "segment_tag": {
9339
+ "endpoint": "segment_tag",
9340
+ "fields": {
9341
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9342
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9343
+ "id": {"data_type": "bigint", "field_type": "column"},
9344
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9345
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9346
+ "retired": {"data_type": "bool", "field_type": "column"},
9347
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9348
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9349
+ },
9350
+ },
9351
+ "shared_card": {
9352
+ "endpoint": "shared_card",
9353
+ "fields": {
9354
+ "card": {"data_type": "text", "field_type": "column"},
9355
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9356
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9357
+ "description": {"data_type": "text", "field_type": "column"},
9358
+ "id": {"data_type": "bigint", "field_type": "column"},
9359
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9360
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9361
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9362
+ },
9363
+ },
9364
+ "sms_log": {
9365
+ "endpoint": "sms_log",
9366
+ "fields": {
9367
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9368
+ "id": {"data_type": "bigint", "field_type": "column"},
9369
+ "message_id": {"data_type": "text", "field_type": "column"},
9370
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9371
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9372
+ },
9373
+ },
9374
+ "spending_forecast": {
9375
+ "endpoint": "spending_forecast",
9376
+ "fields": {
9377
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9378
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9379
+ "forecast_amount": {"data_type": "bigint", "field_type": "column"},
9380
+ "id": {"data_type": "bigint", "field_type": "column"},
9381
+ "model_id": {"data_type": "bigint", "field_type": "column"},
9382
+ "model_type": {"data_type": "text", "field_type": "column"},
9383
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9384
+ "spending_year": {"data_type": "bigint", "field_type": "column"},
9385
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9386
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9387
+ },
9388
+ },
9389
+ "sphinx_check": {
9390
+ "endpoint": "sphinx_check",
9391
+ "fields": {
9392
+ "all_notes": {"data_type": "text", "field_type": "string"},
9393
+ "check_ts": {"data_type": "bigint", "field_type": "column"},
9394
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9395
+ "delta": {"data_type": "bool", "field_type": "column"},
9396
+ "id": {"data_type": "bigint", "field_type": "column"},
9397
+ "sphinx_id": {"data_type": "bigint", "field_type": "long"},
9398
+ "string": {"data_type": "date", "field_type": "column"},
9399
+ "to_s": {"data_type": "text", "field_type": "string"},
9400
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9401
+ },
9402
+ },
9403
+ "stencil": {
9404
+ "endpoint": "stencil",
9405
+ "fields": {
9406
+ "compiled": {"data_type": "bool", "field_type": "column"},
9407
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9408
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9409
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9410
+ "enabled": {"data_type": "bool", "field_type": "column"},
9411
+ "form_type": {"data_type": "text", "field_type": "column"},
9412
+ "has_custom_ruby_code": {"data_type": "bool", "field_type": "column"},
9413
+ "id": {"data_type": "bigint", "field_type": "column"},
9414
+ "json": {"data_type": "text", "field_type": "column"},
9415
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
9416
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
9417
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9418
+ "model_theme_id": {"data_type": "bigint", "field_type": "column"},
9419
+ "model_type": {"data_type": "text", "field_type": "column"},
9420
+ "settings_json": {"data_type": "text", "field_type": "column"},
9421
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9422
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9423
+ "user_profile": {"data_type": "text", "field_type": "column"},
9424
+ },
9425
+ },
9426
+ "stencil_book": {
9427
+ "endpoint": "stencil_book",
9428
+ "fields": {
9429
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9430
+ "id": {"data_type": "bigint", "field_type": "column"},
9431
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9432
+ },
9433
+ },
9434
+ "stencil_book_page": {
9435
+ "endpoint": "stencil_book_page",
9436
+ "fields": {
9437
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9438
+ "id": {"data_type": "bigint", "field_type": "column"},
9439
+ "stencil_book_id": {"data_type": "bigint", "field_type": "column"},
9440
+ "stencil_id": {"data_type": "bigint", "field_type": "column"},
9441
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9442
+ },
9443
+ },
9444
+ "stencil_form": {
9445
+ "endpoint": "stencil_form",
9446
+ "fields": {
9447
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9448
+ "deployed_version": {"data_type": "text", "field_type": "column"},
9449
+ "form_type": {"data_type": "text", "field_type": "column"},
9450
+ "id": {"data_type": "bigint", "field_type": "column"},
9451
+ "stencil_id": {"data_type": "bigint", "field_type": "column"},
9452
+ "underscore_template": {"data_type": "text", "field_type": "column"},
9453
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9454
+ },
9455
+ },
9456
+ "sub_model": {
9457
+ "endpoint": "sub_model",
9458
+ "fields": {
9459
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9460
+ "id": {"data_type": "bigint", "field_type": "column"},
9461
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9462
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9463
+ "model_id": {"data_type": "bigint", "field_type": "column"},
9464
+ "model_type": {"data_type": "text", "field_type": "column"},
9465
+ "sub_modelable_id": {"data_type": "bigint", "field_type": "column"},
9466
+ "sub_modelable_type": {"data_type": "text", "field_type": "column"},
9467
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9468
+ },
9469
+ },
9470
+ "table_view": {
9471
+ "endpoint": "table_view",
9472
+ "fields": {
9473
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9474
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9475
+ "data": {"data_type": "text", "field_type": "column"},
9476
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9477
+ "id": {"data_type": "bigint", "field_type": "column"},
9478
+ "model_type": {"data_type": "text", "field_type": "column"},
9479
+ "shared": {"data_type": "bool", "field_type": "column"},
9480
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9481
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9482
+ },
9483
+ },
9484
+ "table_view_favorite": {
9485
+ "endpoint": "table_view_favorite",
9486
+ "fields": {
9487
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9488
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9489
+ "id": {"data_type": "bigint", "field_type": "column"},
9490
+ "model_type": {"data_type": "text", "field_type": "column"},
9491
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9492
+ },
9493
+ },
9494
+ "tag": {
9495
+ "endpoint": "tag",
9496
+ "fields": {
9497
+ "all_notes": {"data_type": "text", "field_type": "string"},
9498
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9499
+ "delta": {"data_type": "bool", "field_type": "column"},
9500
+ "id": {"data_type": "bigint", "field_type": "column"},
9501
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9502
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9503
+ "owner_id": {"data_type": "bigint", "field_type": "column"},
9504
+ "private_tag": {"data_type": "bool", "field_type": "column"},
9505
+ "to_s": {"data_type": "text", "field_type": "string"},
9506
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9507
+ },
9508
+ },
9509
+ "tagging": {
9510
+ "endpoint": "tagging",
9511
+ "fields": {
9512
+ "context": {"data_type": "text", "field_type": "column"},
9513
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9514
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9515
+ "id": {"data_type": "bigint", "field_type": "column"},
9516
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9517
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9518
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9519
+ "tag_id": {"data_type": "bigint", "field_type": "column"},
9520
+ "taggable_id": {"data_type": "bigint", "field_type": "column"},
9521
+ "taggable_type": {"data_type": "text", "field_type": "column"},
9522
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9523
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9524
+ },
9525
+ },
9526
+ "transaction_report_dependency": {
9527
+ "endpoint": "transaction_report_dependency",
9528
+ "fields": {
9529
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9530
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9531
+ "id": {"data_type": "bigint", "field_type": "column"},
9532
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9533
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9534
+ "request_report_id": {"data_type": "bigint", "field_type": "column"},
9535
+ "request_transaction_id": {"data_type": "bigint", "field_type": "column"},
9536
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9537
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9538
+ },
9539
+ },
9540
+ "translator_assignment": {
9541
+ "endpoint": "translator_assignment",
9542
+ "fields": {
9543
+ "all_notes": {"data_type": "text", "field_type": "string"},
9544
+ "comment": {"data_type": "text", "field_type": "column"},
9545
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9546
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9547
+ "id": {"data_type": "bigint", "field_type": "column"},
9548
+ "priority": {"data_type": "bigint", "field_type": "column"},
9549
+ "to_s": {"data_type": "text", "field_type": "string"},
9550
+ "translator_assignable_id": {"data_type": "bigint", "field_type": "column"},
9551
+ "translator_assignable_type": {"data_type": "text", "field_type": "column"},
9552
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9553
+ },
9554
+ },
9555
+ "translator_language": {
9556
+ "endpoint": "translator_language",
9557
+ "fields": {
9558
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9559
+ "id": {"data_type": "bigint", "field_type": "column"},
9560
+ "language_id": {"data_type": "bigint", "field_type": "column"},
9561
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9562
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9563
+ },
9564
+ },
9565
+ "user_email": {
9566
+ "endpoint": "user_email",
9567
+ "fields": {
9568
+ "body": {"data_type": "text", "field_type": "column"},
9569
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9570
+ "from": {"data_type": "text", "field_type": "column"},
9571
+ "id": {"data_type": "bigint", "field_type": "column"},
9572
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9573
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9574
+ "reply_to": {"data_type": "text", "field_type": "column"},
9575
+ "return_path": {"data_type": "text", "field_type": "column"},
9576
+ "status": {"data_type": "text", "field_type": "column"},
9577
+ "subject": {"data_type": "text", "field_type": "column"},
9578
+ "to": {"data_type": "text", "field_type": "column"},
9579
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9580
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9581
+ },
9582
+ },
9583
+ "user_permission": {
9584
+ "endpoint": "user_permission",
9585
+ "fields": {
9586
+ "all_notes": {"data_type": "text", "field_type": "string"},
9587
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9588
+ "id": {"data_type": "bigint", "field_type": "column"},
9589
+ "model_type": {"data_type": "text", "field_type": "column"},
9590
+ "to_s": {"data_type": "text", "field_type": "string"},
9591
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9592
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9593
+ },
9594
+ },
9595
+ "user_profile": {
9596
+ "endpoint": "user_profile",
9597
+ "fields": {
9598
+ "can_access_bulk_update_menu": {
9599
+ "data_type": "bool",
9600
+ "field_type": "column",
9601
+ },
9602
+ "can_access_chatbot": {"data_type": "bool", "field_type": "column"},
9603
+ "can_access_dedupe_tool": {"data_type": "bool", "field_type": "column"},
9604
+ "can_access_word_excel_addins": {
9605
+ "data_type": "bool",
9606
+ "field_type": "column",
9607
+ },
9608
+ "can_add_specific_grantee_budget_config": {
9609
+ "data_type": "bool",
9610
+ "field_type": "column",
9611
+ },
9612
+ "can_assign": {"data_type": "bool", "field_type": "column"},
9613
+ "can_assign_profiles_and_roles": {
9614
+ "data_type": "bool",
9615
+ "field_type": "column",
9616
+ },
9617
+ "can_bulk_bridger_status_check": {
9618
+ "data_type": "bool",
9619
+ "field_type": "column",
9620
+ },
9621
+ "can_bulk_generate_documents": {
9622
+ "data_type": "bool",
9623
+ "field_type": "column",
9624
+ },
9625
+ "can_bulk_run_charity_check": {"data_type": "bool", "field_type": "column"},
9626
+ "can_bulk_schedule_payments": {"data_type": "bool", "field_type": "column"},
9627
+ "can_bulk_schedule_reports": {"data_type": "bool", "field_type": "column"},
9628
+ "can_bulk_send_email_alerts": {"data_type": "bool", "field_type": "column"},
9629
+ "can_bulk_update_attribute": {"data_type": "bool", "field_type": "column"},
9630
+ "can_bulk_update_status": {"data_type": "bool", "field_type": "column"},
9631
+ "can_crud_funding_sources": {"data_type": "bool", "field_type": "column"},
9632
+ "can_crud_payment_contingencies": {
9633
+ "data_type": "bool",
9634
+ "field_type": "column",
9635
+ },
9636
+ "can_crud_reports": {"data_type": "bool", "field_type": "column"},
9637
+ "can_crud_rfs_on_active_grants": {
9638
+ "data_type": "bool",
9639
+ "field_type": "column",
9640
+ },
9641
+ "can_edit_dropdown_fields": {"data_type": "bool", "field_type": "column"},
9642
+ "can_edit_mavs": {"data_type": "bool", "field_type": "column"},
9643
+ "can_impersonate": {"data_type": "bool", "field_type": "column"},
9644
+ "can_impersonate_donor": {"data_type": "bool", "field_type": "column"},
9645
+ "can_impersonate_reviewer": {"data_type": "bool", "field_type": "column"},
9646
+ "can_impersonate_translator": {"data_type": "bool", "field_type": "column"},
9647
+ "can_listview_alert_emails": {"data_type": "bool", "field_type": "column"},
9648
+ "can_listview_jobs": {"data_type": "bool", "field_type": "column"},
9649
+ "can_manage_document_type": {"data_type": "bool", "field_type": "column"},
9650
+ "can_manage_email_template": {"data_type": "bool", "field_type": "column"},
9651
+ "can_manage_letters": {"data_type": "bool", "field_type": "column"},
9652
+ "can_switch_themes": {"data_type": "bool", "field_type": "column"},
9653
+ "can_update_alert_emails": {"data_type": "bool", "field_type": "column"},
9654
+ "can_update_jobs": {"data_type": "bool", "field_type": "column"},
9655
+ "can_update_sso_uid": {"data_type": "bool", "field_type": "column"},
9656
+ "can_update_user_login": {"data_type": "bool", "field_type": "column"},
9657
+ "can_update_user_password": {"data_type": "bool", "field_type": "column"},
9658
+ "categories": {"data_type": "text", "field_type": "column"},
9659
+ "cloned_user_profile_id": {"data_type": "bigint", "field_type": "column"},
9660
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9661
+ "dashboard_config": {"data_type": "text", "field_type": "column"},
9662
+ "dashboard_template_ids": {"data_type": "text", "field_type": "column"},
9663
+ "dashboard_theme_id": {"data_type": "bigint", "field_type": "column"},
9664
+ "disable_workflow_notes": {"data_type": "bool", "field_type": "column"},
9665
+ "hide_universal_search": {"data_type": "bool", "field_type": "column"},
9666
+ "id": {"data_type": "bigint", "field_type": "column"},
9667
+ "lock_dashboard_manager": {"data_type": "bool", "field_type": "column"},
9668
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9669
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9670
+ "must_segment": {"data_type": "bool", "field_type": "column"},
9671
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9672
+ },
9673
+ },
9674
+ "user_profile_rule": {
9675
+ "endpoint": "user_profile_rule",
9676
+ "fields": {
9677
+ "allowed": {"data_type": "bool", "field_type": "column"},
9678
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9679
+ "id": {"data_type": "bigint", "field_type": "column"},
9680
+ "model_type": {"data_type": "text", "field_type": "column"},
9681
+ "permission_name": {"data_type": "text", "field_type": "column"},
9682
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9683
+ "user_profile_id": {"data_type": "bigint", "field_type": "column"},
9684
+ },
9685
+ },
9686
+ "user_segment_tag": {
9687
+ "endpoint": "user_segment_tag",
9688
+ "fields": {
9689
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9690
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9691
+ "id": {"data_type": "bigint", "field_type": "column"},
9692
+ "is_default": {"data_type": "bool", "field_type": "column"},
9693
+ "is_read_only": {"data_type": "bool", "field_type": "column"},
9694
+ "segment_tag_id": {"data_type": "bigint", "field_type": "column"},
9695
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9696
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9697
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9698
+ },
9699
+ },
9700
+ "webhook_subscription": {
9701
+ "endpoint": "webhook_subscription",
9702
+ "fields": {
9703
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9704
+ "event": {"data_type": "text", "field_type": "column"},
9705
+ "id": {"data_type": "bigint", "field_type": "column"},
9706
+ "model_type": {"data_type": "text", "field_type": "column"},
9707
+ "platform": {"data_type": "text", "field_type": "column"},
9708
+ "tracked_fields": {"data_type": "text", "field_type": "column"},
9709
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9710
+ "url": {"data_type": "text", "field_type": "column"},
9711
+ },
9712
+ },
9713
+ "wiki_document": {
9714
+ "endpoint": "wiki_document",
9715
+ "fields": {
9716
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9717
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9718
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9719
+ "id": {"data_type": "bigint", "field_type": "column"},
9720
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
9721
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
9722
+ "model_id": {"data_type": "bigint", "field_type": "column"},
9723
+ "model_type": {"data_type": "text", "field_type": "column"},
9724
+ "note": {"data_type": "text", "field_type": "column"},
9725
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9726
+ "title": {"data_type": "text", "field_type": "column"},
9727
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9728
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9729
+ "wiki_document_template_id": {
9730
+ "data_type": "bigint",
9731
+ "field_type": "column",
9732
+ },
9733
+ "wiki_order": {"data_type": "bigint", "field_type": "column"},
9734
+ },
9735
+ },
9736
+ "wiki_document_template": {
9737
+ "endpoint": "wiki_document_template",
9738
+ "fields": {
9739
+ "category": {"data_type": "text", "field_type": "column"},
9740
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9741
+ "created_by_id": {"data_type": "bigint", "field_type": "column"},
9742
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9743
+ "delta": {"data_type": "bool", "field_type": "column"},
9744
+ "description": {"data_type": "text", "field_type": "column"},
9745
+ "document": {"data_type": "text", "field_type": "column"},
9746
+ "document_type": {"data_type": "text", "field_type": "column"},
9747
+ "filename": {"data_type": "text", "field_type": "column"},
9748
+ "id": {"data_type": "bigint", "field_type": "column"},
9749
+ "model_type": {"data_type": "text", "field_type": "column"},
9750
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9751
+ "updated_by_id": {"data_type": "bigint", "field_type": "column"},
9752
+ },
9753
+ },
9754
+ "work_task": {
9755
+ "endpoint": "work_task",
9756
+ "fields": {
9757
+ "all_notes": {"data_type": "text", "field_type": "string"},
9758
+ "completed_at": {"data_type": "timestamp", "field_type": "column"},
9759
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9760
+ "deleted_at": {"data_type": "timestamp", "field_type": "column"},
9761
+ "delta": {"data_type": "bool", "field_type": "column"},
9762
+ "due_at": {"data_type": "timestamp", "field_type": "column"},
9763
+ "filter_state": {"data_type": "text", "field_type": "string"},
9764
+ "id": {"data_type": "bigint", "field_type": "column"},
9765
+ "locked_by_id": {"data_type": "bigint", "field_type": "column"},
9766
+ "locked_until": {"data_type": "timestamp", "field_type": "column"},
9767
+ "machine_state_id": {"data_type": "bigint", "field_type": "column"},
9768
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9769
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9770
+ "previous_state": {"data_type": "text", "field_type": "string"},
9771
+ "related_work_task_id": {"data_type": "bigint", "field_type": "column"},
9772
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9773
+ "state": {"data_type": "bigint", "field_type": "column"},
9774
+ "state_description": {"data_type": "text", "field_type": "string"},
9775
+ "state_to_english": {"data_type": "text", "field_type": "string"},
9776
+ "task_completed": {"data_type": "bool", "field_type": "column"},
9777
+ "task_order": {"data_type": "bigint", "field_type": "column"},
9778
+ "task_text": {"data_type": "text", "field_type": "column"},
9779
+ "taskable_id": {"data_type": "bigint", "field_type": "column"},
9780
+ "taskable_type": {"data_type": "text", "field_type": "column"},
9781
+ "to_s": {"data_type": "text", "field_type": "string"},
9782
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9783
+ },
9784
+ },
9785
+ "workflow_event": {
9786
+ "endpoint": "workflow_event",
9787
+ "fields": {
9788
+ "all_notes": {"data_type": "text", "field_type": "string"},
9789
+ "change_type": {"data_type": "text", "field_type": "column"},
9790
+ "comment": {"data_type": "text", "field_type": "column"},
9791
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9792
+ "created_by_email": {"data_type": "text", "field_type": "string"},
9793
+ "created_by_first_name_first": {
9794
+ "data_type": "text",
9795
+ "field_type": "string",
9796
+ },
9797
+ "created_by_last_name_first": {"data_type": "text", "field_type": "string"},
9798
+ "id": {"data_type": "bigint", "field_type": "column"},
9799
+ "ip_address": {"data_type": "text", "field_type": "column"},
9800
+ "migrate_id": {"data_type": "text", "field_type": "column"},
9801
+ "migrate_source_name": {"data_type": "text", "field_type": "column"},
9802
+ "new_state": {"data_type": "text", "field_type": "column"},
9803
+ "old_state": {"data_type": "text", "field_type": "column"},
9804
+ "related_workflowable_id": {"data_type": "bigint", "field_type": "column"},
9805
+ "related_workflowable_type": {"data_type": "text", "field_type": "column"},
9806
+ "segment_id": {"data_type": "bigint", "field_type": "column"},
9807
+ "to_s": {"data_type": "text", "field_type": "string"},
9808
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9809
+ "workflowable_id": {"data_type": "bigint", "field_type": "column"},
9810
+ "workflowable_type": {"data_type": "text", "field_type": "column"},
9811
+ },
9812
+ },
9813
+ "zenith_user_configuration": {
9814
+ "endpoint": "zenith_user_configuration",
9815
+ "fields": {
9816
+ "created_at": {"data_type": "timestamp", "field_type": "column"},
9817
+ "id": {"data_type": "bigint", "field_type": "column"},
9818
+ "json": {"data_type": "text", "field_type": "column"},
9819
+ "updated_at": {"data_type": "timestamp", "field_type": "column"},
9820
+ "user_id": {"data_type": "bigint", "field_type": "column"},
9821
+ },
9822
+ },
5648
9823
  }
5649
9824
 
5650
9825