gitextract_me0jgsil/ ├── .gitignore ├── LICENSE ├── README.md ├── contraxsuite_services/ │ ├── .flake8 │ ├── .pylintrc │ ├── __init__.py │ ├── apps/ │ │ ├── __init__.py │ │ ├── analyze/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── forms.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ └── clear_old_transformer_models.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170731_0948.py │ │ │ │ ├── 0003_auto_20170731_0948.py │ │ │ │ ├── 0004_auto_20171011_1613.py │ │ │ │ ├── 0005_documenttransformer_documentvector_textunittransformer_textunitvector.py │ │ │ │ ├── 0006_auto_20191203_0833.py │ │ │ │ ├── 0007_auto_20191204_1255.py │ │ │ │ ├── 0008_documentclassification_documentclassifier_documentclassifierassessment_documentclassifiersuggestion_.py │ │ │ │ ├── 0009_auto_20200127_1252.py │ │ │ │ ├── 0010_transformer_unique_name.py │ │ │ │ ├── 0011_denorm_textunit_similarity.py │ │ │ │ ├── 0012_populate_textunit_similarity_fields.py │ │ │ │ ├── 0013_vacuum_textunit_similarity.py │ │ │ │ ├── 0014_textunit_similarity_restore_constraints.py │ │ │ │ ├── 0015_auto_20201209_1541.py │ │ │ │ ├── 0016_auto_20201224_0846.py │ │ │ │ ├── 0017_auto_20201229_0950.py │ │ │ │ ├── 0018_auto_20210104_1313.py │ │ │ │ ├── 0019_auto_20210105_0836.py │ │ │ │ ├── 0020_similarityrun_unit_id.py │ │ │ │ ├── 0021_auto_20210106_1009.py │ │ │ │ ├── 0022_load_document_transformer.py │ │ │ │ ├── 0023_auto_20210323_0714.py │ │ │ │ ├── 0024_add_mlmodel.py │ │ │ │ ├── 0025_move_contracttype_classifier.py │ │ │ │ ├── 0026_auto_20210324_1247.py │ │ │ │ ├── 0027_create_transformer_db_records.py │ │ │ │ ├── 0028_similarityrun_distance_type.py │ │ │ │ ├── 0029_auto_20210416_1250.py │ │ │ │ ├── 0030_auto_20210505_1344.py │ │ │ │ ├── 0031_auto_20210514_0722.py │ │ │ │ ├── 0032_is_contract_migration.py │ │ │ │ ├── 0033_textunitvector_document.py │ │ │ │ ├── 0034_textunitvector_unit_type.py │ │ │ │ └── __init__.py │ │ │ ├── ml/ │ │ │ │ ├── __init__.py │ │ │ │ ├── classifier_repository.py │ │ │ │ ├── classify.py │ │ │ │ ├── cluster.py │ │ │ │ ├── contract_type_classifier.py │ │ │ │ ├── features.py │ │ │ │ ├── similarity.py │ │ │ │ ├── sparse_matrix.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base_transformer_test.py │ │ │ │ │ ├── test_classify_doc2vec.py │ │ │ │ │ ├── test_contract_type_classifier.py │ │ │ │ │ ├── test_data/ │ │ │ │ │ │ └── models/ │ │ │ │ │ │ └── en/ │ │ │ │ │ │ ├── contract_type_classifier/ │ │ │ │ │ │ │ └── document/ │ │ │ │ │ │ │ └── pipeline_contract_type_classifier.cloudpickle │ │ │ │ │ │ └── transformer/ │ │ │ │ │ │ └── document/ │ │ │ │ │ │ └── document_doc2vec_dm_1_vector_100_window_10/ │ │ │ │ │ │ └── model.pickle │ │ │ │ │ ├── test_doc2vec_transformer.py │ │ │ │ │ ├── test_sparse_matrix.py │ │ │ │ │ ├── test_utils.py │ │ │ │ │ └── texts_collection.py │ │ │ │ ├── transform.py │ │ │ │ └── utils.py │ │ │ ├── models.py │ │ │ ├── notifications.py │ │ │ ├── similarity_textunit_migration_common.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task_menu_item.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── celery.py │ │ ├── celery_worker_roles.py │ │ ├── common/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── archive_file.py │ │ │ ├── collection_utils.py │ │ │ ├── context_managers.py │ │ │ ├── context_processors.py │ │ │ ├── contraxsuite_urls.py │ │ │ ├── db_cache/ │ │ │ │ ├── __init__.py │ │ │ │ └── db_cache.py │ │ │ ├── debug_utils.py │ │ │ ├── decorators.py │ │ │ ├── error_explorer.py │ │ │ ├── errors.py │ │ │ ├── expressions.py │ │ │ ├── fields.py │ │ │ ├── file_storage/ │ │ │ │ ├── __init__.py │ │ │ │ ├── file_storage.py │ │ │ │ ├── filebrowser_webdav_file_storage.py │ │ │ │ ├── local_file_adapter.py │ │ │ │ ├── local_file_storage.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_file_storage.py │ │ │ │ │ ├── test_local_file_storage.py │ │ │ │ │ ├── test_webdav_file_storage.py │ │ │ │ │ └── webdav_propfind_response_example.xml │ │ │ │ └── webdav_file_storage.py │ │ │ ├── forms.py │ │ │ ├── loaders.py │ │ │ ├── log_utils.py │ │ │ ├── logger.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── create_superuser.py │ │ │ │ ├── download_s3_models.py │ │ │ │ ├── force_migrate.py │ │ │ │ ├── force_refill_migrations.py │ │ │ │ ├── force_reinitiate_migrations.py │ │ │ │ ├── generate_graph_models.py │ │ │ │ ├── get_openapi_schema.py │ │ │ │ ├── init_app_vars.py │ │ │ │ ├── init_cache.py │ │ │ │ ├── load_review_status_groups.py │ │ │ │ ├── load_review_statuses.py │ │ │ │ ├── loadnewdata.py │ │ │ │ ├── rp.py │ │ │ │ ├── set_app_var.py │ │ │ │ ├── set_site.py │ │ │ │ ├── sp.py │ │ │ │ └── unsafe_fix_catastrophic_backtracking.py │ │ │ ├── managers.py │ │ │ ├── middleware.py │ │ │ ├── migration_manager.py │ │ │ ├── migration_utils.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_reviewstatus.py │ │ │ │ ├── 0003_reviewstatus_is_active.py │ │ │ │ ├── 0004_auto_20180622_1138.py │ │ │ │ ├── 0005_reviewstatusgroup.py │ │ │ │ ├── 0006_create_review_status_groups_20180713_1341.py │ │ │ │ ├── 0007_reviewstatus_group.py │ │ │ │ ├── 0008_migrate_groups_20180713_1351.py │ │ │ │ ├── 0009_objectstorage.py │ │ │ │ ├── 0010_action.py │ │ │ │ ├── 0011_auto_20180828_0418.py │ │ │ │ ├── 0012_auto_20181012_0643.py │ │ │ │ ├── 0013_customapirequestlog.py │ │ │ │ ├── 0014_appvar_description.py │ │ │ │ ├── 0015_methodstats.py │ │ │ │ ├── 0016_auto_20190906_0727.py │ │ │ │ ├── 0017_methodstatscollectorplugin.py │ │ │ │ ├── 0018_auto_20190916_0730.py │ │ │ │ ├── 0019_menugroup_menuitem.py │ │ │ │ ├── 0020_auto_20191016_1549.py │ │ │ │ ├── 0021_auto_20191017_1457.py │ │ │ │ ├── 0022_threaddumprecord.py │ │ │ │ ├── 0023_auto_20191101_1021.py │ │ │ │ ├── 0024_auto_20191101_1028.py │ │ │ │ ├── 0025_auto_20200110_1354.py │ │ │ │ ├── 0026_set_appvar_categories.py │ │ │ │ ├── 0027_historicalappvar.py │ │ │ │ ├── 0028_exportfile.py │ │ │ │ ├── 0029_exportfile_email_sent.py │ │ │ │ ├── 0030_smtp_backend_appvar.py │ │ │ │ ├── 0031_auto_20210108_1934.py │ │ │ │ ├── 0031_smtp_backend_appvar_description.py │ │ │ │ ├── 0032_move_strict_date_parse_appvar.py │ │ │ │ ├── 0033_merge_20210127_0828.py │ │ │ │ ├── 0034_auto_20210127_1536.py │ │ │ │ ├── 0035_auto_20210128_0922.py │ │ │ │ ├── 0036_auto_20210204_0833.py │ │ │ │ ├── 0037_expire_appvars.py │ │ │ │ ├── 0038_auto_20210309_1324.py │ │ │ │ ├── 0039_auto_20210311_0543.py │ │ │ │ ├── 0040_document_locale_appvar.py │ │ │ │ ├── 0041_remove_appvar_duplicates.py │ │ │ │ ├── 0042_fix_appvar_indexes.py │ │ │ │ ├── 0043_update_appvar_helptext.py │ │ │ │ ├── 0044_update_appvar_duplicate_docs.py │ │ │ │ ├── 0045_change_email_backend.py │ │ │ │ ├── 0046_update_old_project_actions.py │ │ │ │ ├── 0047_create_appvar_detect_contract_type_settings.py │ │ │ │ └── __init__.py │ │ │ ├── mixins.py │ │ │ ├── model_utils/ │ │ │ │ ├── __init__.py │ │ │ │ ├── hr_django_json_encoder.py │ │ │ │ ├── improved_django_json_encoder.py │ │ │ │ ├── model_bulk_delete.py │ │ │ │ ├── model_class_dictionary.py │ │ │ │ ├── model_stats_sets_manager.py │ │ │ │ ├── safe_bulk_create.py │ │ │ │ ├── table_deps.py │ │ │ │ ├── table_deps_builder.py │ │ │ │ └── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_bulk_delete.py │ │ │ │ ├── test_hr_django_json_encoder.py │ │ │ │ ├── test_improved_django_json_encoder.py │ │ │ │ ├── test_model_class_dictionary.py │ │ │ │ ├── test_safe_bulk_delete.py │ │ │ │ └── test_singleton.py │ │ │ ├── models.py │ │ │ ├── pandas_excel_formatter.py │ │ │ ├── permissions.py │ │ │ ├── plugins.py │ │ │ ├── processes.py │ │ │ ├── querysets.py │ │ │ ├── redis.py │ │ │ ├── s3/ │ │ │ │ ├── __init__.py │ │ │ │ └── s3_browser.py │ │ │ ├── schemas.py │ │ │ ├── script_utils.py │ │ │ ├── serializers.py │ │ │ ├── signals.py │ │ │ ├── singleton.py │ │ │ ├── sql_commons.py │ │ │ ├── streaming_utils.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task_menu_item.html │ │ │ ├── templatetags/ │ │ │ │ ├── __init__.py │ │ │ │ ├── debug_tags.py │ │ │ │ └── project_tags.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_appvar_cache.py │ │ │ │ ├── test_check_timeout.py │ │ │ │ ├── test_collection_utils.py │ │ │ │ ├── test_download_s3_models.py │ │ │ │ ├── test_expressions.py │ │ │ │ ├── test_log_utils.py │ │ │ │ ├── test_map.py │ │ │ │ ├── test_sql_commons.py │ │ │ │ ├── test_url_utils.py │ │ │ │ └── test_utils.py │ │ │ ├── time_limit.py │ │ │ ├── topological_sort.py │ │ │ ├── url_utils.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ ├── validators.py │ │ │ ├── views.py │ │ │ └── widgets.py │ │ ├── datascience/ │ │ │ ├── __init__.py │ │ │ ├── api_wrapper.py │ │ │ └── pprint_queryset.py │ │ ├── deployment/ │ │ │ ├── __init__.py │ │ │ ├── app_data.py │ │ │ ├── app_vars.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── init_app_data.py │ │ │ │ └── init_deployment_object.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── tasks.py │ │ ├── document/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ ├── annotator_error.py │ │ │ │ ├── field_value_views.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── apps.py │ │ │ ├── async_notifications.py │ │ │ ├── async_tasks/ │ │ │ │ ├── __init__.py │ │ │ │ └── detect_field_values_task.py │ │ │ ├── constants.py │ │ │ ├── document_class.py │ │ │ ├── document_interface.py │ │ │ ├── field_detection/ │ │ │ │ ├── __init__.py │ │ │ │ ├── csv_regexps_field_detection_strategy.py │ │ │ │ ├── detect_field_values_params.py │ │ │ │ ├── detector_field_matcher.py │ │ │ │ ├── field_based_ml_field_detection.py │ │ │ │ ├── field_classifier_suggestion.py │ │ │ │ ├── field_detection.py │ │ │ │ ├── field_detection_celery_api.py │ │ │ │ ├── field_detection_repository.py │ │ │ │ ├── fields_detection_abstractions.py │ │ │ │ ├── formula_based_field_detection.py │ │ │ │ ├── mlflow_field_detection.py │ │ │ │ ├── regexps_and_text_based_ml_field_detection.py │ │ │ │ ├── regexps_field_detection.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_csv_regexps_detection_cache.py │ │ │ │ │ ├── test_document_field_multiline_regex_detector.py │ │ │ │ │ ├── test_formula_error_detector.py │ │ │ │ │ ├── test_pre_process_regexp_option.py │ │ │ │ │ ├── test_regex_only_detection_strategy.py │ │ │ │ │ └── test_regexps_field_detection.py │ │ │ │ └── text_based_ml.py │ │ │ ├── field_processing/ │ │ │ │ ├── __init__.py │ │ │ │ ├── document_vectorizers.py │ │ │ │ ├── field_processing_utils.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_fields_processing_utils.py │ │ │ │ │ ├── test_number_vectorizer.py │ │ │ │ │ ├── test_recurring_date_vectorizer.py │ │ │ │ │ └── test_serial_date_vectorizer.py │ │ │ │ └── vectorizers.py │ │ │ ├── field_type_registry.py │ │ │ ├── field_types.py │ │ │ ├── forms.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── create_document_type.py │ │ │ │ ├── delete_documents.py │ │ │ │ └── load_annotation_statuses.py │ │ │ ├── migration/ │ │ │ │ ├── __init__.py │ │ │ │ ├── document_export.py │ │ │ │ ├── document_import.py │ │ │ │ └── table_export_map.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170731_0948.py │ │ │ │ ├── 0003_auto_20170818_0632.py │ │ │ │ ├── 0004_document_title.py │ │ │ │ ├── 0005_document_full_text.py │ │ │ │ ├── 0006_document_data.py │ │ │ │ ├── 0007_historicaldocument.py │ │ │ │ ├── 0008_auto_20180213_0739.py │ │ │ │ ├── 0009_auto_20180213_0746.py │ │ │ │ ├── 0010_auto_20180213_0818.py │ │ │ │ ├── 0011_auto_20180213_0825.py │ │ │ │ ├── 0012_auto_20180213_0829.py │ │ │ │ ├── 00136_delete_pending.py │ │ │ │ ├── 00137_historical_document_delete_pending.py │ │ │ │ ├── 0013_auto_20180213_2001.py │ │ │ │ ├── 0014_auto_20180215_0848.py │ │ │ │ ├── 0015_auto_20180219_0034.py │ │ │ │ ├── 0016_auto_20180219_1215.py │ │ │ │ ├── 0017_auto_20180223_1512.py │ │ │ │ ├── 0018_auto_20180223_1512.py │ │ │ │ ├── 0019_auto_20180223_1728.py │ │ │ │ ├── 0020_auto_20180305_1404.py │ │ │ │ ├── 0021_auto_20180305_1947.py │ │ │ │ ├── 0022_auto_20180306_1128.py │ │ │ │ ├── 0023_auto_20180306_1208.py │ │ │ │ ├── 0024_auto_20180306_1209.py │ │ │ │ ├── 0025_auto_20180306_1959.py │ │ │ │ ├── 0025_auto_20180307_0653.py │ │ │ │ ├── 0026_auto_20180307_0655.py │ │ │ │ ├── 0026_auto_20180308_0801.py │ │ │ │ ├── 0027_auto_20180307_1345.py │ │ │ │ ├── 0028_merge_20180308_1136.py │ │ │ │ ├── 0029_auto_20180309_1732.py │ │ │ │ ├── 0030_auto_20180314_1447.py │ │ │ │ ├── 0031_auto_20180315_1458.py │ │ │ │ ├── 0032_auto_20180330_1305.py │ │ │ │ ├── 0033_auto_20180401_0739.py │ │ │ │ ├── 0034_auto_20180401_0739.py │ │ │ │ ├── 0035_auto_20180404_1559.py │ │ │ │ ├── 0036_document_status.py │ │ │ │ ├── 0037_auto_20180405_1710.py │ │ │ │ ├── 0038_auto_20180406_1945.py │ │ │ │ ├── 0039_auto_20180407_1217.py │ │ │ │ ├── 0040_auto_20180420_1142.py │ │ │ │ ├── 0041_auto_20180420_1528.py │ │ │ │ ├── 0042_auto_20180426_1551.py │ │ │ │ ├── 0043_auto_20180426_1943.py │ │ │ │ ├── 0044_auto_20180426_1954.py │ │ │ │ ├── 0045_auto_20180615_1050.py │ │ │ │ ├── 0046_auto_20180622_1138.py │ │ │ │ ├── 0047_auto_20180628_1116.py │ │ │ │ ├── 0048_auto_20180705_1411.py │ │ │ │ ├── 0049_auto_20180706_0553.py │ │ │ │ ├── 0050_migrate_doc_size_20180706_0608.py │ │ │ │ ├── 0051_auto_20180718_0713.py │ │ │ │ ├── 0052_documentfield_description.py │ │ │ │ ├── 0053_custom_document_type_field_relation.py │ │ │ │ ├── 0054_auto_20180730_1013.py │ │ │ │ ├── 0055_auto_20180730_1433.py │ │ │ │ ├── 0056_auto_20180731_1435.py │ │ │ │ ├── 0056_externalfieldvalue.py │ │ │ │ ├── 0057_merge_20180802_0716.py │ │ │ │ ├── 0058_documentfield_value_regexp.py │ │ │ │ ├── 0059_auto_20180816_0457.py │ │ │ │ ├── 0060_auto_20180819_0534.py │ │ │ │ ├── 0061_auto_20180822_1708.py │ │ │ │ ├── 0062_fix_catastrophic_backtracking.py │ │ │ │ ├── 0063_fix_catastrophic_backtracking_for_all_detectors.py │ │ │ │ ├── 0064_auto_20180827_1330.py │ │ │ │ ├── 0065_auto_20180828_0757.py │ │ │ │ ├── 0066_fix_catastrophic_backtracking.py │ │ │ │ ├── 0067_auto_20180830_1347.py │ │ │ │ ├── 0068_auto_20180902_1951.py │ │ │ │ ├── 0069_documenttypefieldcategory.py │ │ │ │ ├── 0070_auto_20180911_0648.py │ │ │ │ ├── 0071_auto_20180911_0821.py │ │ │ │ ├── 0072_auto_20180914_0907.py │ │ │ │ ├── 0073_auto_20180919_0715.py │ │ │ │ ├── 0074_documentfield_require_text_annotations.py │ │ │ │ ├── 0075_auto_20180924_1728.py │ │ │ │ ├── 0076_auto_20180925_1232.py │ │ │ │ ├── 0077_auto_20180925_1626.py │ │ │ │ ├── 0078_auto_20180926_1702.py │ │ │ │ ├── 0079_documenttypefield_order.py │ │ │ │ ├── 0080_auto_20181002_1716.py │ │ │ │ ├── 0081_auto_20181003_2032.py │ │ │ │ ├── 0082_auto_20181003_2335.py │ │ │ │ ├── 0083_auto_20181003_2350.py │ │ │ │ ├── 0084_documenttype_editor_type.py │ │ │ │ ├── 0085_clean_dependends_on.py │ │ │ │ ├── 0086_textunit_metadata.py │ │ │ │ ├── 0087_documentfield_text_unit_type.py │ │ │ │ ├── 0088_documenttype_metadata.py │ │ │ │ ├── 0089_documentfield_metadata.py │ │ │ │ ├── 0090_auto_20181009_1149.py │ │ │ │ ├── 0091_auto_20181012_0827.py │ │ │ │ ├── 0092_auto_20181012_2155.py │ │ │ │ ├── 0093_auto_20181014_1748.py │ │ │ │ ├── 0094_documenttype_field_code_aliases.py │ │ │ │ ├── 0095_auto_20181019_2329.py │ │ │ │ ├── 0096_auto_20181022_0811.py │ │ │ │ ├── 0097_auto_20181022_0813.py │ │ │ │ ├── 0098_fix_geography_field_serialization.py │ │ │ │ ├── 0099_auto_20181025_1253.py │ │ │ │ ├── 0100_fix_date_field_serialization.py │ │ │ │ ├── 0101_auto_20181105_1144.py │ │ │ │ ├── 0102_auto_20181106_2359.py │ │ │ │ ├── 0103_documentfield_classifier_init_script.py │ │ │ │ ├── 0104_auto_20181123_1122.py │ │ │ │ ├── 0105_auto_20181128_1238.py │ │ │ │ ├── 0106_new_schema_document_type_fields_to_1_n.py │ │ │ │ ├── 0107_data_document_type_fields_to_1_n.py │ │ │ │ ├── 0108_apply_new_schema.py │ │ │ │ ├── 0109_fix_cached_fields.py │ │ │ │ ├── 0110_remove_temporary_fields.py │ │ │ │ ├── 0111_documentfielddetector_text_part.py │ │ │ │ ├── 0112_auto_20181222_1630.py │ │ │ │ ├── 0113_auto_20190104_1605.py │ │ │ │ ├── 0114_documentfield_allow_adding_choices.py │ │ │ │ ├── 0115_auto_20190116_1413.py │ │ │ │ ├── 0116_documentfield_default_value.py │ │ │ │ ├── 0117_auto_20190118_1214.py │ │ │ │ ├── 0118_auto_20190125_1551.py │ │ │ │ ├── 0119_auto_20190129_1253.py │ │ │ │ ├── 0120_auto_20190209_1201.py │ │ │ │ ├── 0121_auto_20190213_0952.py │ │ │ │ ├── 0122_auto_20190215_1040.py │ │ │ │ ├── 0123_auto_20190218_1341.py │ │ │ │ ├── 0124_auto_20190311_0855.py │ │ │ │ ├── 0125_auto_20190325_1530.py │ │ │ │ ├── 0125_documentfieldcategory_export_key.py │ │ │ │ ├── 0126_merge_20190327_1150.py │ │ │ │ ├── 0127_auto_20190405_0747.py │ │ │ │ ├── 0127_auto_20190408_1009.py │ │ │ │ ├── 0128_auto_20190409_1443.py │ │ │ │ ├── 0129_auto_20190418_1355.py │ │ │ │ ├── 0130_auto_20190419_1038.py │ │ │ │ ├── 0131_auto_20190419_1134.py │ │ │ │ ├── 0132_auto_20190419_1144.py │ │ │ │ ├── 0133_auto_20190424_1038.py │ │ │ │ ├── 0134_docfield_default_value.py │ │ │ │ ├── 0135_auto_20190510_0727.py │ │ │ │ ├── 0138_auto_20190527_1446.py │ │ │ │ ├── 0139_auto_20190527_1622.py │ │ │ │ ├── 0140_auto_20190530_0845.py │ │ │ │ ├── 0141_auto_20190531_0709.py │ │ │ │ ├── 0142_auto_20190531_1437.py │ │ │ │ ├── 0143_auto_20190716_1807.py │ │ │ │ ├── 0144_auto_20190725_0832.py │ │ │ │ ├── 0145_drop_index_20190731_1305.py │ │ │ │ ├── 0146_drop_index_20190731_1325.py │ │ │ │ ├── 0147_auto_20190823_1140.py │ │ │ │ ├── 0150_auto_20190902_1400.py │ │ │ │ ├── 0151_move_document_table.py │ │ │ │ ├── 0152_auto_20190902_1549.py │ │ │ │ ├── 0155_auto_20190924_0822.py │ │ │ │ ├── 0156_auto_20190930_1245.py │ │ │ │ ├── 0156_auto_20191002_0835.py │ │ │ │ ├── 0157_migrate_fieldvalues.py │ │ │ │ ├── 0158_update_processed.py │ │ │ │ ├── 0159_auto_20191004_0608.py │ │ │ │ ├── 0160_remove_docfieldval.py │ │ │ │ ├── 0161_auto_20191024_0903.py │ │ │ │ ├── 0162_auto_20191025_0412.py │ │ │ │ ├── 0163_auto_20191101_0752.py │ │ │ │ ├── 0164_auto_20191107_0831.py │ │ │ │ ├── 0165_fill_documenttext_metadata.py │ │ │ │ ├── 0166_auto_20191107_1047.py │ │ │ │ ├── 0167_remove_textunit_metadata.py │ │ │ │ ├── 0168_auto_20191114_1808.py │ │ │ │ ├── 0169_documentfield_vectorizer_stop_words.py │ │ │ │ ├── 0170_textunittext.py │ │ │ │ ├── 0171_migrate_textunit_text.py │ │ │ │ ├── 0172_auto_20191206_0650.py │ │ │ │ ├── 0173_auto_20191223_0908.py │ │ │ │ ├── 0174_auto_20200115_0823.py │ │ │ │ ├── 0175_auto_20200115_0828.py │ │ │ │ ├── 0176_auto_20200115_0829.py │ │ │ │ ├── 0177_auto_20200113_2143.py │ │ │ │ ├── 0178_documentfield_mlflow_detect_on_document_level.py │ │ │ │ ├── 0178_fieldannotationsavedfilter.py │ │ │ │ ├── 0179_auto_20200123_1327.py │ │ │ │ ├── 0180_auto_20200123_1330.py │ │ │ │ ├── 0181_merge_20200123_2008.py │ │ │ │ ├── 0182_auto_20200130_0752.py │ │ │ │ ├── 0183_auto_20200210_1427.py │ │ │ │ ├── 0184_auto_20200218_1714.py │ │ │ │ ├── 0185_auto_20200219_0706.py │ │ │ │ ├── 0186_auto_20200303_0857.py │ │ │ │ ├── 0187_auto_20200318_1430.py │ │ │ │ ├── 0188_auto_20200323_1551.py │ │ │ │ ├── 0189_auto_20200323_1551.py │ │ │ │ ├── 0190_auto_20200323_1551.py │ │ │ │ ├── 0191_auto_20200323_1551.py │ │ │ │ ├── 0192_auto_20200403_1148.py │ │ │ │ ├── 0193_auto_20200406_0833.py │ │ │ │ ├── 0194_auto_20200415_1545.py │ │ │ │ ├── 0195_auto_20200420_0936.py │ │ │ │ ├── 0196_auto_20200422_1059.py │ │ │ │ ├── 0197_auto_20200512_0940.py │ │ │ │ ├── 0198_auto_20200512_1157.py │ │ │ │ ├── 0199_auto_20200115_0828.py │ │ │ │ ├── 0200_auto_20200512_1815.py │ │ │ │ ├── 0201_auto_20200513_1844.py │ │ │ │ ├── 0202_auto_20200610_0917.py │ │ │ │ ├── 0203_auto_20200617_1327.py │ │ │ │ ├── 0204_auto_20200629_0743.py │ │ │ │ ├── 0205_add_dock_page.py │ │ │ │ ├── 0206_auto_20200713_1430.py │ │ │ │ ├── 0207_auto_20200718_1606.py │ │ │ │ ├── 0208_auto_20200805_1622.py │ │ │ │ ├── 0209_auto_20200818_1011.py │ │ │ │ ├── 0210_fill_note_user.py │ │ │ │ ├── 0211_set_rel_info_20200821_1030.py │ │ │ │ ├── 0212_detect_limit_count.py │ │ │ │ ├── 0213_field_category_per_document.py │ │ │ │ ├── 0214_auto_20200910_0719.py │ │ │ │ ├── 0215_auto_20200914_1449.py │ │ │ │ ├── 0216_ocr_rating.py │ │ │ │ ├── 0217_auto_20201111_2137.py │ │ │ │ ├── 0218_auto_20201118_1104.py │ │ │ │ ├── 0218_b_auto_20201117_0429.py │ │ │ │ ├── 0218_permissions.py │ │ │ │ ├── 0219_auto_20201119_0645.py │ │ │ │ ├── 0220_merge_20201119_1037.py │ │ │ │ ├── 0221_auto_20201216_1437.py │ │ │ │ ├── 0222_auto_20201224_1533.py │ │ │ │ ├── 0223_document_contract_class.py │ │ │ │ ├── 0224_auto_20210106_1234.py │ │ │ │ ├── 0225_auto_20210128_1213.py │ │ │ │ ├── 0226_remove_documentfield_stop_words.py │ │ │ │ ├── 0227_remove_fields_dirty_flag.py │ │ │ │ ├── 0228_auto_20210210_1241.py │ │ │ │ ├── 0229_add_mod_hist_rawdb_fields.py │ │ │ │ ├── 0230_auto_20210212_2324.py │ │ │ │ ├── 0231_move_detecting_limits.py │ │ │ │ ├── 0232_document_pdf_presentation_binary.py │ │ │ │ ├── 0233_auto_20210222_0851.py │ │ │ │ ├── 0234_boolean_to_related_type.py │ │ │ │ ├── 0235_amount_to_float_type.py │ │ │ │ ├── 0236_auto_20210330_1150.py │ │ │ │ ├── 0237_auto_20210330_1327.py │ │ │ │ ├── 0238_replace_removed_value_detection_strategies.py │ │ │ │ ├── 0239_auto_20210402_1120.py │ │ │ │ ├── 0240_auto_20210419_1117.py │ │ │ │ ├── 0241_documenttable_bounding_rect.py │ │ │ │ ├── 0242_auto_20210426_1209.py │ │ │ │ ├── 0243_remove_orphan_fields.py │ │ │ │ ├── 0244_obligatory_field_doc_type.py │ │ │ │ ├── 0245_fix_decimal_format.py │ │ │ │ ├── 0246_auto_20210722_0711.py │ │ │ │ ├── 0247_auto_20210722_1001.py │ │ │ │ ├── 0248_textunittext_document.py │ │ │ │ ├── 0249_document_field_detector_update.py │ │ │ │ ├── 0250_auto_20210830_0843.py │ │ │ │ ├── 0251_merge_textunit.py │ │ │ │ ├── 0252_remove_textunittext.py │ │ │ │ ├── 0253_modify_textunit_trigger.py │ │ │ │ ├── 0254_auto_20220511_1444.py │ │ │ │ ├── 0255_auto_20220617_0913.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── notifications.py │ │ │ ├── pdf_coordinates/ │ │ │ │ ├── __init__.py │ │ │ │ ├── pdf_coords_commons.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pdf_test_common.py │ │ │ │ │ └── test_coords_location.py │ │ │ │ └── text_coord_map.py │ │ │ ├── repository/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_document_repository.py │ │ │ │ ├── base_field_detector_repository.py │ │ │ │ ├── base_text_unit_repository.py │ │ │ │ ├── document_bulk_delete.py │ │ │ │ ├── document_field_repository.py │ │ │ │ ├── document_repository.py │ │ │ │ ├── dto.py │ │ │ │ ├── field_detector_repository.py │ │ │ │ └── text_unit_repository.py │ │ │ ├── schemas.py │ │ │ ├── scheme_migrations/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_scheme_migration.py │ │ │ │ ├── document_scheme_migration.py │ │ │ │ ├── scheme_migration.py │ │ │ │ └── tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── test_scheme_migration.py │ │ │ ├── signals.py │ │ │ ├── sync_tasks/ │ │ │ │ ├── __init__.py │ │ │ │ ├── document_files_cleaner.py │ │ │ │ ├── ensure_new_paths_unique_task.py │ │ │ │ ├── rename_old_documents_task.py │ │ │ │ └── soft_delete_document_task.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ ├── documentfield_admin_select.html │ │ │ │ └── task_menu_item.html │ │ │ ├── tests.py │ │ │ ├── unit_tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── test_models.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ ├── value_extraction_hints.py │ │ │ └── views.py │ │ ├── dump/ │ │ │ ├── __init__.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_dump.py │ │ │ ├── apps.py │ │ │ ├── document_type_import.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── dump_data.py │ │ │ │ └── dump_field_values.py │ │ │ └── urls.py │ │ ├── extract/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── apps.py │ │ │ ├── companies_extractor.py │ │ │ ├── company_types.py │ │ │ ├── dict_data_cache.py │ │ │ ├── locating_performance_meter.py │ │ │ ├── locators.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170805_0955.py │ │ │ │ ├── 0003_auto_20170805_1140.py │ │ │ │ ├── 0004_auto_20170807_1327.py │ │ │ │ ├── 0005_auto_20170810_2015.py │ │ │ │ ├── 0006_auto_20170831_1607.py │ │ │ │ ├── 0007_auto_20170831_1611.py │ │ │ │ ├── 0008_auto_20170906_0735.py │ │ │ │ ├── 0009_auto_20170920_1515.py │ │ │ │ ├── 0010_auto_20170920_1523.py │ │ │ │ ├── 0011_auto_20170920_1523.py │ │ │ │ ├── 0012_remove_currencyusage_amount0.py │ │ │ │ ├── 0013_auto_20170920_2012.py │ │ │ │ ├── 0014_auto_20170920_2023.py │ │ │ │ ├── 0015_amountusage.py │ │ │ │ ├── 0016_distanceusage.py │ │ │ │ ├── 0017_ratiousage.py │ │ │ │ ├── 0018_percentusage.py │ │ │ │ ├── 0019_auto_20170923_0833.py │ │ │ │ ├── 0020_auto_20170923_0833.py │ │ │ │ ├── 0021_auto_20170923_0848.py │ │ │ │ ├── 0022_auto_20170923_0849.py │ │ │ │ ├── 0023_auto_20170923_0850.py │ │ │ │ ├── 0024_definitionusage_definition_str.py │ │ │ │ ├── 0025_dateusage_date_str.py │ │ │ │ ├── 0026_auto_20170924_0824.py │ │ │ │ ├── 0027_auto_20170924_0850.py │ │ │ │ ├── 0028_citationusage.py │ │ │ │ ├── 0029_auto_20171031_0849.py │ │ │ │ ├── 0030_auto_20171031_0924.py │ │ │ │ ├── 0031_auto_20171031_1553.py │ │ │ │ ├── 0032_auto_20171031_1610.py │ │ │ │ ├── 0033_auto_20171103_1131.py │ │ │ │ ├── 0034_auto_20171108_1200.py │ │ │ │ ├── 0035_auto_20171110_1239.py │ │ │ │ ├── 0036_auto_20171110_1419.py │ │ │ │ ├── 0037_geoentity_priority.py │ │ │ │ ├── 0038_cache_locate_configs.py │ │ │ │ ├── 0039_auto_20190204_1246.py │ │ │ │ ├── 0040_auto_20190204_1301.py │ │ │ │ ├── 0041_auto_20190209_1201.py │ │ │ │ ├── 0042_auto_20190212_1337.py │ │ │ │ ├── 0043_auto_20190227_1952.py │ │ │ │ ├── 0044_cache_locate_configs.py │ │ │ │ ├── 0045_documenttermusage.py │ │ │ │ ├── 0046_auto_20200321_1322.py │ │ │ │ ├── 0047_documentdefinitionusage.py │ │ │ │ ├── 0048_auto_20200323_1702.py │ │ │ │ ├── 0053_auto_20200402_0909.py │ │ │ │ ├── 0054_systemwidedefinitionusage_systemwidegeoentityusage_systemwidepartyusage_systemwidetermusage.py │ │ │ │ ├── 0055_project_mat_views.py │ │ │ │ ├── 0056_auto_20200515_1323.py │ │ │ │ ├── 0057_blacklistrecord.py │ │ │ │ ├── 0058_auto_20200713_1430.py │ │ │ │ ├── 0059_add_matviews_index.py │ │ │ │ ├── 0060_typed_dict_entities.py │ │ │ │ ├── 0061_auto_20200826_0719.py │ │ │ │ ├── 0062_auto_20201207_1241.py │ │ │ │ ├── 0063_companytype_companytypetag.py │ │ │ │ ├── 0064_auto_20210222_0747.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── signals.py │ │ │ ├── term_stems.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── highq_integration/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── dto.py │ │ │ ├── forms.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20201224_1533.py │ │ │ │ ├── 0003_auto_20210106_1923.py │ │ │ │ ├── 0004_auto_20210402_1913.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ ├── column_mapping_form.html │ │ │ │ └── task_menu_item.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── imanage_integration/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── debug/ │ │ │ │ ├── __init__.py │ │ │ │ ├── data/ │ │ │ │ │ └── .gitignore │ │ │ │ └── mock_imanage_server.py │ │ │ ├── forms.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_imanagedocument_imanage_doc_number.py │ │ │ │ ├── 0003_auto_20190206_1353.py │ │ │ │ ├── 0004_imanagedocument_import_problem.py │ │ │ │ ├── 0005_imanagedocument_import_problem_false.py │ │ │ │ ├── 0006_auto_20190325_1530.py │ │ │ │ ├── 0007_auto_20190424_1047.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task_menu_item.html │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── logging/ │ │ │ ├── __init__.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ └── app_vars.py │ │ ├── materialized_views/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── app_vars.py │ │ │ ├── forms.py │ │ │ ├── mat_views.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_materializedview_status.py │ │ │ │ ├── 0003_remove_materializedview_last_update_duration.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task_menu_item.html │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── mlflow/ │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── app_vars.py │ │ │ ├── mlflow_model_client.py │ │ │ ├── mlflow_model_manager.py │ │ │ ├── mlflow_socket_server_script.py │ │ │ └── tasks.py │ │ ├── notifications/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── apps.py │ │ │ ├── document_notification.py │ │ │ ├── forms.py │ │ │ ├── mail_server_config.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20190311_0855.py │ │ │ │ ├── 0003_auto_20190315_0901.py │ │ │ │ ├── 0004_auto_20190319_1455.py │ │ │ │ ├── 0005_documentnotificationsubscription_recipients_cc.py │ │ │ │ ├── 0006_auto_20190424_1047.py │ │ │ │ ├── 0007_auto_20190724_1238.py │ │ │ │ ├── 0008_documentnotificationsubscription_max_stack.py │ │ │ │ ├── 0009_auto_20191003_0546.py │ │ │ │ ├── 0010_auto_20201007_0926.py │ │ │ │ ├── 0011_auto_20201224_1533.py │ │ │ │ ├── 0012_update_mail_appvar.py │ │ │ │ ├── 0013_webnotification_webnotificationmessage.py │ │ │ │ ├── 0014_webnotificationmessage_notification_type.py │ │ │ │ ├── 0015_remove_webnotificationmessage_redirect_link.py │ │ │ │ ├── 0016_webnotificationmessage_redirect_link.py │ │ │ │ ├── 0017_auto_20210805_1238.py │ │ │ │ ├── 0018_webnotificationmessage_message.py │ │ │ │ ├── 0019_update_web_notifications_message_field.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── notification_renderer.py │ │ │ ├── notification_templates/ │ │ │ │ ├── document_digest/ │ │ │ │ │ ├── template.html │ │ │ │ │ └── template.txt │ │ │ │ └── document_notification/ │ │ │ │ ├── template.html │ │ │ │ ├── template.txt │ │ │ │ ├── template_pack.html │ │ │ │ └── template_pack.txt │ │ │ ├── notifications.py │ │ │ ├── schemas.py │ │ │ ├── signals.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ ├── notifications/ │ │ │ │ │ └── digest_config_change.html │ │ │ │ └── task_menu_item.html │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_send_email.py │ │ │ │ ├── test_values_look_equal.py │ │ │ │ └── test_web_notifications.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── project/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── constants.py │ │ │ ├── context_processors.py │ │ │ ├── forms.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ └── delete_projects.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20170731_0948.py │ │ │ │ ├── 0003_auto_20180302_0904.py │ │ │ │ ├── 0004_auto_20180305_1915.py │ │ │ │ ├── 0005_projectupload.py │ │ │ │ ├── 0006_auto_20180306_1208.py │ │ │ │ ├── 0007_auto_20180307_0653.py │ │ │ │ ├── 0008_uploadsession_completed.py │ │ │ │ ├── 0009_auto_20180313_1330.py │ │ │ │ ├── 0010_projectclustering.py │ │ │ │ ├── 0011_auto_20180324_0503.py │ │ │ │ ├── 0012_auto_20180401_2046.py │ │ │ │ ├── 0013_auto_20180405_1710.py │ │ │ │ ├── 0014_auto_20180406_0522.py │ │ │ │ ├── 0015_auto_20180406_1103.py │ │ │ │ ├── 0016_auto_20180406_1945.py │ │ │ │ ├── 0017_delete_reviewstatus.py │ │ │ │ ├── 0018_auto_20180510_1105.py │ │ │ │ ├── 0019_auto_20180630_0807.py │ │ │ │ ├── 0020_fix_projectclustering_task_id_type_20180706_0858.py │ │ │ │ ├── 0021_auto_20180725_1829.py │ │ │ │ ├── 0022_project_super_reviewers.py │ │ │ │ ├── 0023_auto_20180730_1013.py │ │ │ │ ├── 0024_project_send_email_notification.py │ │ │ │ ├── 0025_auto_20181010_1739.py │ │ │ │ ├── 0026_auto_20181013_0730.py │ │ │ │ ├── 0027_documentfilter_created_by.py │ │ │ │ ├── 0028_projectdocumentsfilter.py │ │ │ │ ├── 0029_auto_20181102_1910.py │ │ │ │ ├── 0030_auto_20190424_1047.py │ │ │ │ ├── 0031_delete_pending_field.py │ │ │ │ ├── 0032_auto_20190527_1446.py │ │ │ │ ├── 0033_auto_20190916_1356.py │ │ │ │ ├── 0034_auto_20191016_0857.py │ │ │ │ ├── 0035_projecttermconfiguration.py │ │ │ │ ├── 0036_auto_20191112_1039.py │ │ │ │ ├── 0037_auto_20191113_1208.py │ │ │ │ ├── 0038_project_hide_clause_review.py │ │ │ │ ├── 0039_userprojectssavedfilter.py │ │ │ │ ├── 0040_auto_20200512_1829.py │ │ │ │ ├── 0041_auto_20200522_0811.py │ │ │ │ ├── 0042_auto_20200713_1518.py │ │ │ │ ├── 0043_permissions.py │ │ │ │ ├── 0044_auto_20201201_0954.py │ │ │ │ ├── 0045_auto_20201209_1541.py │ │ │ │ ├── 0045_project_term_tags.py │ │ │ │ ├── 0046_delete_projecttermconfiguration.py │ │ │ │ ├── 0047_merge_20201218_0901.py │ │ │ │ ├── 0048_project_companytype_tags.py │ │ │ │ ├── 0049_project_default_tags.py │ │ │ │ ├── 0050_auto_20210222_0851.py │ │ │ │ ├── 0051_clear_project_transformers.py │ │ │ │ ├── 0052_retarget_project_transformers.py │ │ │ │ ├── 0053_auto_20211104_1244.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── notifications.py │ │ │ ├── repository/ │ │ │ │ ├── __init__.py │ │ │ │ └── project_repository.py │ │ │ ├── schemas.py │ │ │ ├── signals.py │ │ │ ├── sync_tasks/ │ │ │ │ ├── __init__.py │ │ │ │ └── soft_delete_project_task.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── email/ │ │ │ │ ├── notify_upload_completed.html │ │ │ │ ├── notify_upload_completed.txt │ │ │ │ ├── notify_upload_started.html │ │ │ │ └── notify_upload_started.txt │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── utils/ │ │ │ │ ├── __init__.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_unique_name_builder.py │ │ │ │ └── unique_name.py │ │ │ └── views.py │ │ ├── rawdb/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_dump_models.py │ │ │ ├── app_vars.py │ │ │ ├── apps.py │ │ │ ├── constants.py │ │ │ ├── field_value_tables.py │ │ │ ├── forms.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20181207_0817.py │ │ │ │ ├── 0003_auto_20181211_1034.py │ │ │ │ ├── 0004_savedfilter.py │ │ │ │ ├── 0005_remove_savedfilter_document_sort_order.py │ │ │ │ ├── 0006_remove_savedfilter_filter_sql.py │ │ │ │ ├── 0007_auto_20181219_2013.py │ │ │ │ ├── 0008_auto_20181219_2122.py │ │ │ │ ├── 0009_auto_20181219_2124.py │ │ │ │ ├── 0010_auto_20181226_1111.py │ │ │ │ ├── 0011_savedfilter_filter_type.py │ │ │ │ ├── 0012_add_postgres_index_extension.py │ │ │ │ ├── 0013_add_app_vars_descriptions.py │ │ │ │ ├── 0014_auto_20190104_1605.py │ │ │ │ ├── 0015_auto_20190319_1501.py │ │ │ │ ├── 0016_auto_20190705_1123.py │ │ │ │ ├── 0017_auto_20190710_1314.py │ │ │ │ ├── 0018_initiate_reindex.py │ │ │ │ ├── 0019_auto_20191024_1632.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── notifications.py │ │ │ ├── rawdb/ │ │ │ │ ├── __init__.py │ │ │ │ ├── errors.py │ │ │ │ ├── query_parsing.py │ │ │ │ ├── rawdb_field_handlers.py │ │ │ │ └── system_rawdb_config.py │ │ │ ├── repository/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_raw_db_repository.py │ │ │ │ ├── raw_db_migrations.py │ │ │ │ └── raw_db_repository.py │ │ │ ├── schemas.py │ │ │ ├── signals.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task_menu_item.html │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── test_calc_doctype_cache_columns.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── similarity/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── chunk_similarity_task.py │ │ │ ├── forms.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_documentsimilarityconfig_project.py │ │ │ │ ├── 0003_auto_20190530_0845.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── notifications.py │ │ │ ├── signals.py │ │ │ ├── similarity_metrics.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task_menu_item.html │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_document_chunk_similarity_processor.py │ │ │ │ └── test_similatiry_processor.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── task/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── celery_backend/ │ │ │ │ ├── __init__.py │ │ │ │ ├── advanced_celery.py │ │ │ │ ├── autoscaler.py │ │ │ │ ├── constants.py │ │ │ │ ├── database.py │ │ │ │ ├── managers.py │ │ │ │ ├── task_utils.py │ │ │ │ └── utils.py │ │ │ ├── forms.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── load_documents.py │ │ │ │ ├── load_entities.py │ │ │ │ ├── load_terms.py │ │ │ │ ├── locate_entities.py │ │ │ │ ├── locate_parties.py │ │ │ │ ├── locate_terms.py │ │ │ │ └── total_cleanup.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_task_user.py │ │ │ │ ├── 0003_task_metadata.py │ │ │ │ ├── 0004_task_celery_task_result.py │ │ │ │ ├── 0005_task_visible.py │ │ │ │ ├── 0006_auto_20180315_1759.py │ │ │ │ ├── 0007_auto_20180330_1305.py │ │ │ │ ├── 0008_auto_20180330_1522.py │ │ │ │ ├── 0009_auto_20180404_0851.py │ │ │ │ ├── 0010_auto_20180510_1105.py │ │ │ │ ├── 0011_taskconfig.py │ │ │ │ ├── 0012_auto_20180606_1630.py │ │ │ │ ├── 0013_auto_20180606_1928.py │ │ │ │ ├── 0014_auto_20180606_1956.py │ │ │ │ ├── 0015_auto_20180610_2212.py │ │ │ │ ├── 0016_auto_20180613_1529.py │ │ │ │ ├── 0017_auto_20180615_1400.py │ │ │ │ ├── 0018_auto_20180615_1423.py │ │ │ │ ├── 0019_remove_task_duration_at_last_update_time.py │ │ │ │ ├── 0020_remove_task_progress.py │ │ │ │ ├── 0021_remove_task_date_done.py │ │ │ │ ├── 0022_auto_20180619_1629.py │ │ │ │ ├── 0023_task_description.py │ │ │ │ ├── 0024_auto_20180621_0845.py │ │ │ │ ├── 0025_auto_20180622_1528.py │ │ │ │ ├── 0026_auto_20180624_1632.py │ │ │ │ ├── 0027_auto_20180624_1633.py │ │ │ │ ├── 0028_auto_20180624_2227.py │ │ │ │ ├── 0029_task_log_extra.py │ │ │ │ ├── 0030_create_undex_20180712_1131.py │ │ │ │ ├── 0031_auto_20180725_1416.py │ │ │ │ ├── 0032_data_migration_20180725_1417.py │ │ │ │ ├── 0033_task_completed.py │ │ │ │ ├── 0034_data_migration_20180725_1445.py │ │ │ │ ├── 0035_auto_20180816_1249.py │ │ │ │ ├── 0036_task_run_count.py │ │ │ │ ├── 0037_auto_20180822_1258.py │ │ │ │ ├── 0038_remove_task_own_date_work_start.py │ │ │ │ ├── 0039_task_worker.py │ │ │ │ ├── 0040_auto_20180910_0913.py │ │ │ │ ├── 0040_task_run_after_sub_tasks_finished.py │ │ │ │ ├── 0041_merge_20180911_0538.py │ │ │ │ ├── 0042_task_args.py │ │ │ │ ├── 0043_create_document_soft_time_limit.py │ │ │ │ ├── 0044_fix_document_soft_time_limit.py │ │ │ │ ├── 0045_fix_document_soft_time_limit.py │ │ │ │ ├── 0046_fix_document_soft_time_limit.py │ │ │ │ ├── 0047_task_priority.py │ │ │ │ ├── 0048_task_call_stack.py │ │ │ │ ├── 0049_auto_20190911_1646.py │ │ │ │ ├── 0050_task_run_after_sub_tasks_failed.py │ │ │ │ ├── 0051_auto_20191113_1825.py │ │ │ │ ├── 0052_task_has_sub_tasks.py │ │ │ │ ├── 0053_auto_20191114_0825.py │ │ │ │ ├── 0054_auto_remove_args_index.py │ │ │ │ ├── 0055_auto_20200113_2143.py │ │ │ │ ├── 0056_auto_20200206_1030.py │ │ │ │ ├── 0057_add_task_display_name.py │ │ │ │ ├── 0058_auto_20200323_1529.py │ │ │ │ ├── 0059_auto_20200420_1504.py │ │ │ │ ├── 0060_auto_20200424_1121.py │ │ │ │ ├── 0061_auto_20200424_1341.py │ │ │ │ ├── 0062_auto_20200609_0914.py │ │ │ │ ├── 0063_auto_20200630_1353.py │ │ │ │ ├── 0064_task_spawned_processes.py │ │ │ │ ├── 0065_raise_failure_status_order.py │ │ │ │ ├── 0066_taskstatentry.py │ │ │ │ ├── 0067_task_bad_health_check_num.py │ │ │ │ ├── 0068_task_queue.py │ │ │ │ ├── 0069_auto_20201208_0911.py │ │ │ │ ├── 0070_auto_20201208_1813.py │ │ │ │ ├── 0071_add_reindex_task.py │ │ │ │ ├── 0072_auto_20210402_1120.py │ │ │ │ ├── 0073_remove_dirty_from_task_names.py │ │ │ │ ├── 0075_task_weight.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── ocr_rating/ │ │ │ │ ├── __init__.py │ │ │ │ └── ocr_rating_calculator.py │ │ │ ├── schemas.py │ │ │ ├── signals.py │ │ │ ├── static/ │ │ │ │ └── moment-duration-format.js │ │ │ ├── task_health_check/ │ │ │ │ ├── __init__.py │ │ │ │ └── task_health_check.py │ │ │ ├── task_monitor.py │ │ │ ├── task_visibility.py │ │ │ ├── tasks.py │ │ │ ├── templates/ │ │ │ │ └── task/ │ │ │ │ ├── task_detail.html │ │ │ │ ├── task_form.html │ │ │ │ └── task_list.html │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── test_calc_task_status.py │ │ │ ├── urls.py │ │ │ ├── utils/ │ │ │ │ ├── __init__.py │ │ │ │ ├── task_utils.py │ │ │ │ └── tests/ │ │ │ │ └── __init__.py │ │ │ └── views.py │ │ ├── tus/ │ │ │ ├── __init__.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── schemas.py │ │ │ └── storage.py │ │ ├── users/ │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── admin.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ └── v1.py │ │ │ ├── app_vars.py │ │ │ ├── authentication.py │ │ │ ├── forms.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ └── __init__.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20180522_0810.py │ │ │ │ ├── 0003_role.py │ │ │ │ ├── 0004_load_roles_20180626_1435.py │ │ │ │ ├── 0005_migrate_users_20180626_1514.py │ │ │ │ ├── 0006_auto_20180626_1523.py │ │ │ │ ├── 0007_user_photo.py │ │ │ │ ├── 0008_auto_20180919_0715.py │ │ │ │ ├── 0009_user_timezone.py │ │ │ │ ├── 0010_auto_20190424_1047.py │ │ │ │ ├── 0011_auto_20200113_2143.py │ │ │ │ ├── 0012_auto_20200706_0907.py │ │ │ │ ├── 0013_auto_20200706_0912.py │ │ │ │ ├── 0014_auto_20200713_1531.py │ │ │ │ ├── 0015_socialappuri.py │ │ │ │ ├── 0016_user_origin.py │ │ │ │ ├── 0017_permissions.py │ │ │ │ ├── 0017_user_name.py │ │ │ │ ├── 0018_permissions.py │ │ │ │ ├── 0019_merge_20201119_1037.py │ │ │ │ ├── 0020_auto_20201218_0759.py │ │ │ │ ├── 0021_auto_20201224_1533.py │ │ │ │ ├── 0022_unique_email.py │ │ │ │ ├── 0023_user_initials.py │ │ │ │ ├── 0024_add_doctype_manager_permissions.py │ │ │ │ ├── 0025_user_uid.py │ │ │ │ ├── 0026_add_task_permissions_to_project_creator_group.py │ │ │ │ ├── 0027_add_task_perms_to_project_and_doc_type_creator_group.py │ │ │ │ ├── 0028_auto_20220615_1302.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── permissions.py │ │ │ ├── rest_auth_urls.py │ │ │ ├── schemas.py │ │ │ ├── serializers.py │ │ │ ├── signals.py │ │ │ ├── social/ │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters.py │ │ │ │ ├── clients.py │ │ │ │ ├── custom_auxilary.py │ │ │ │ ├── custom_uris.py │ │ │ │ ├── elevate/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── clients.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── schemas.py │ │ │ │ │ └── views.py │ │ │ │ ├── google/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── provider.py │ │ │ │ │ └── views.py │ │ │ │ ├── office365/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── provider.py │ │ │ │ │ └── views.py │ │ │ │ ├── okta/ │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── provider.py │ │ │ │ │ └── views.py │ │ │ │ ├── provider.py │ │ │ │ ├── serializers.py │ │ │ │ └── urls.py │ │ │ ├── tests.py │ │ │ ├── unit_tests/ │ │ │ │ ├── __init__.py │ │ │ │ └── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── factories.py │ │ │ │ ├── manual_test_admin.py │ │ │ │ ├── manual_test_models.py │ │ │ │ ├── manual_test_urls.py │ │ │ │ ├── manual_test_views.py │ │ │ │ ├── test_adapters.py │ │ │ │ └── test_auxilary.py │ │ │ ├── urls.py │ │ │ ├── user_utils.py │ │ │ └── views.py │ │ └── websocket/ │ │ ├── __init__.py │ │ ├── channel_message.py │ │ ├── channel_message_types.py │ │ ├── routing.py │ │ └── websockets.py │ ├── asgi.py │ ├── contraxsuite_logging.py │ ├── data/ │ │ └── README.md │ ├── deploy/ │ │ ├── README.md │ │ └── base/ │ │ ├── debian-requirements.txt │ │ ├── notes.txt │ │ ├── python-requirements-all-3.8.txt │ │ ├── python-requirements-all.txt │ │ ├── python-requirements-ignore-conflicts.txt │ │ ├── python-requirements-lexnlp.txt │ │ ├── python-requirements-text-extraction.txt │ │ ├── python-unwanted-requirements.txt │ │ └── supported_locales.txt │ ├── fixtures/ │ │ ├── additional/ │ │ │ ├── .gitignore │ │ │ └── README.md │ │ ├── common/ │ │ │ ├── 2_ReviewStatusGroup.json │ │ │ ├── 3_ReviewStatus.json │ │ │ └── 4_FieldAnnotationStatus.json │ │ └── demo/ │ │ └── document_data/ │ │ └── LeaseDemo.json │ ├── jars/ │ │ └── .keep │ ├── local_settings.py.example │ ├── manage.py │ ├── nodb_settings.py │ ├── notebooks/ │ │ └── demo/ │ │ ├── accessing_field_values_sql.ipynb │ │ ├── api_usage_example.ipynb │ │ ├── clone_document_type.ipynb │ │ ├── clustering.ipynb │ │ ├── delete_user.ipynb │ │ ├── doc_type_export_csv.ipynb │ │ ├── download_imanage_document_files.ipynb │ │ ├── field_value_rename.ipynb │ │ ├── migrate_field.ipynb │ │ ├── remove_extra_terms.ipynb │ │ └── replace_field_code_in_formulas.ipynb │ ├── run_celery.sh │ ├── runpylint.sh │ ├── settings.py │ ├── smtp.py │ ├── swagger_view.py │ ├── task_names.py │ ├── templates/ │ │ ├── 400.html │ │ ├── 403.html │ │ ├── 403_csrf.html │ │ ├── 404.html │ │ ├── 405.html │ │ ├── 500.html │ │ ├── _base_grid_buttons_block.html │ │ ├── _base_jqxgrid_block.html │ │ ├── _django_ql_searchbox.html │ │ ├── _form_field.html │ │ ├── _jq_imports_block.html │ │ ├── about.html │ │ ├── account/ │ │ │ ├── account_inactive.html │ │ │ ├── base.html │ │ │ ├── email/ │ │ │ │ ├── password_reset_key_message.html │ │ │ │ └── password_reset_key_subject.txt │ │ │ ├── email.html │ │ │ ├── email_confirm.html │ │ │ ├── login.html │ │ │ ├── logout.html │ │ │ ├── old_templates/ │ │ │ │ ├── login_old.html │ │ │ │ ├── password_reset_done.html │ │ │ │ ├── password_reset_from_key.html │ │ │ │ ├── password_reset_from_key_done.html │ │ │ │ └── password_reset_old.html │ │ │ ├── password_change.html │ │ │ ├── password_reset.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_from_key.html │ │ │ ├── password_reset_from_key_done.html │ │ │ ├── password_set.html │ │ │ ├── signup.html │ │ │ ├── signup_closed.html │ │ │ ├── verification_sent.html │ │ │ └── verified_email_required.html │ │ ├── admin/ │ │ │ ├── actions.html │ │ │ ├── analyze/ │ │ │ │ └── mlmodel/ │ │ │ │ └── change_form.html │ │ │ ├── base.html │ │ │ ├── base_site.html │ │ │ ├── common/ │ │ │ │ └── confirm_delete_view.html │ │ │ ├── document/ │ │ │ │ ├── document/ │ │ │ │ │ └── change_list.html │ │ │ │ ├── documentfield/ │ │ │ │ │ ├── change_form.html │ │ │ │ │ ├── confirm_newchoices_view.html │ │ │ │ │ ├── delete_confirmation.html │ │ │ │ │ └── delete_selected_confirmation.html │ │ │ │ ├── documentfieldmultilineregexdetector/ │ │ │ │ │ └── change_form.html │ │ │ │ ├── documenttype/ │ │ │ │ │ ├── change_form.html │ │ │ │ │ ├── delete_confirmation.html │ │ │ │ │ └── delete_selected_confirmation.html │ │ │ │ ├── field_combobox.html │ │ │ │ ├── field_values_warning_save_form.html │ │ │ │ ├── ql_searchbox.html │ │ │ │ ├── softdeletedocument/ │ │ │ │ │ ├── change_list.html │ │ │ │ │ └── confirm_delete_view.html │ │ │ │ ├── text_unit/ │ │ │ │ │ └── change_list.html │ │ │ │ ├── users_tasks_warning.html │ │ │ │ └── users_tasks_warning_save_form.html │ │ │ ├── extract/ │ │ │ │ ├── companytype/ │ │ │ │ │ ├── change_list.html │ │ │ │ │ └── companytypes_csv_import.html │ │ │ │ └── term/ │ │ │ │ ├── change_list.html │ │ │ │ └── terms_csv_import.html │ │ │ ├── ms_exchange_integration/ │ │ │ │ └── mailboxmessage/ │ │ │ │ ├── change_list.html │ │ │ │ └── confirm_delete_view.html │ │ │ ├── notifications/ │ │ │ │ └── documentnotificationsubscription/ │ │ │ │ └── change_form.html │ │ │ ├── project/ │ │ │ │ └── softdeleteproject/ │ │ │ │ ├── change_list.html │ │ │ │ └── confirm_delete_view.html │ │ │ └── task/ │ │ │ └── reindexroutine/ │ │ │ └── change_form.html │ │ ├── allauth_2fa/ │ │ │ ├── authenticate.html │ │ │ ├── backup_tokens.html │ │ │ ├── remove.html │ │ │ └── setup.html │ │ ├── analyze/ │ │ │ ├── document_classification_list.html │ │ │ ├── document_classifier_list.html │ │ │ ├── document_classifier_suggestion_list.html │ │ │ ├── document_cluster_list.html │ │ │ ├── document_similarity_list.html │ │ │ ├── text_unit_classification_list.html │ │ │ ├── text_unit_classifier_list.html │ │ │ ├── text_unit_classifier_suggestion_list.html │ │ │ ├── text_unit_cluster_list.html │ │ │ └── text_unit_similarity_list.html │ │ ├── base.html │ │ ├── base_delete.html │ │ ├── base_detail.html │ │ ├── base_error.html │ │ ├── base_form.html │ │ ├── base_list.html │ │ ├── base_list_ajax.html │ │ ├── common/ │ │ │ ├── db_schema_visualization/ │ │ │ │ ├── input.html │ │ │ │ └── output.html │ │ │ ├── db_stats.html │ │ │ ├── docker_stats.html │ │ │ └── method_stats_overview.html │ │ ├── django_extensions/ │ │ │ └── graph_models/ │ │ │ ├── contraxsuite/ │ │ │ │ ├── digraph.dot │ │ │ │ ├── label.dot │ │ │ │ └── relation.dot │ │ │ └── contraxsuite_with_repository_permalinks/ │ │ │ ├── digraph.dot │ │ │ ├── label.dot │ │ │ └── relation.dot │ │ ├── document/ │ │ │ ├── _document_lang_popup_js.html │ │ │ ├── _document_property_popup_js.html │ │ │ ├── _document_tables.html │ │ │ ├── _document_tasks.html │ │ │ ├── _note_js.html │ │ │ ├── document_action_list.html │ │ │ ├── document_detail.html │ │ │ ├── document_enhanced_view.html │ │ │ ├── document_list.html │ │ │ ├── document_note_list.html │ │ │ ├── document_property_list.html │ │ │ ├── document_relation_list.html │ │ │ ├── document_source.html │ │ │ ├── document_tag_list.html │ │ │ ├── stats.html │ │ │ ├── text_unit_detail.html │ │ │ ├── text_unit_lang_list.html │ │ │ ├── text_unit_list.html │ │ │ ├── text_unit_note_list.html │ │ │ ├── text_unit_property_list.html │ │ │ ├── text_unit_ref_usage_list.html │ │ │ └── text_unit_tag_list.html │ │ ├── email/ │ │ │ ├── email_base.html │ │ │ ├── logo_new.html │ │ │ ├── logo_old.html │ │ │ └── logo_svg.html │ │ ├── extract/ │ │ │ ├── amount_usage_list.html │ │ │ ├── citation_usage_list.html │ │ │ ├── copyright_usage_list.html │ │ │ ├── court_usage_list.html │ │ │ ├── currency_usage_list.html │ │ │ ├── date_duration_usage_list.html │ │ │ ├── date_usage_calendar.html │ │ │ ├── date_usage_list.html │ │ │ ├── date_usage_timeline.html │ │ │ ├── definition_usage_list.html │ │ │ ├── distance_usage_list.html │ │ │ ├── geo_entity_list.html │ │ │ ├── geo_entity_usage_chart.html │ │ │ ├── geo_entity_usage_list.html │ │ │ ├── geo_entity_usage_map.html │ │ │ ├── party_network_chart.html │ │ │ ├── party_summary.html │ │ │ ├── party_usage_list.html │ │ │ ├── percent_usage_list.html │ │ │ ├── ratio_usage_list.html │ │ │ ├── regulation_usage_list.html │ │ │ ├── term_usage_list.html │ │ │ ├── top_amount_usage_list.html │ │ │ ├── top_citation_usage_list.html │ │ │ ├── top_copyright_usage_list.html │ │ │ ├── top_court_usage_list.html │ │ │ ├── top_currency_usage_list.html │ │ │ ├── top_date_duration_usage_list.html │ │ │ ├── top_date_usage_list.html │ │ │ ├── top_definition_usage_list.html │ │ │ ├── top_distance_usage_list.html │ │ │ ├── top_geo_entity_usage_list.html │ │ │ ├── top_party_usage_list.html │ │ │ ├── top_percent_usage_list.html │ │ │ ├── top_ratio_usage_list.html │ │ │ ├── top_regulation_usage_list.html │ │ │ ├── top_term_usage_list.html │ │ │ ├── top_trademark_usage_list.html │ │ │ ├── top_url_usage_list.html │ │ │ ├── trademark_usage_list.html │ │ │ └── url_usage_list.html │ │ ├── filebrowser/ │ │ │ ├── base.html │ │ │ ├── createdir.html │ │ │ ├── delete_confirm.html │ │ │ ├── detail.html │ │ │ ├── include/ │ │ │ │ ├── breadcrumbs.html │ │ │ │ └── tableheader.html │ │ │ ├── index.html │ │ │ └── upload.html │ │ ├── home.html │ │ ├── layout/ │ │ │ ├── breadcrumbs.html │ │ │ ├── header.html │ │ │ └── left_sidebar.html │ │ ├── pdf_export.html │ │ ├── project/ │ │ │ ├── dashboard.html │ │ │ ├── project_action_list.html │ │ │ ├── project_list.html │ │ │ └── task_queue_list.html │ │ ├── registration/ │ │ │ ├── password_reset_email.html │ │ │ └── password_reset_subject.txt │ │ ├── social_app/ │ │ │ └── index.html │ │ ├── socialaccount/ │ │ │ └── authentication_error.html │ │ ├── swagger_ui/ │ │ │ └── base.html │ │ └── users/ │ │ ├── user_detail.html │ │ ├── user_form.html │ │ ├── user_list.html │ │ └── user_object_permissions.html │ ├── tests/ │ │ ├── __init__.py │ │ ├── django_db_mock.py │ │ ├── django_test_case.py │ │ ├── nodb_runner.py │ │ ├── resources/ │ │ │ └── documents/ │ │ │ ├── ocr/ │ │ │ │ └── wordx/ │ │ │ │ ├── doc_table_01.docx │ │ │ │ ├── doc_table_02.docx │ │ │ │ ├── hyperlink.docx │ │ │ │ ├── lists.docx │ │ │ │ ├── numbered_headings.docx │ │ │ │ ├── tables_only.docx │ │ │ │ ├── template_01.docx │ │ │ │ ├── template_02.docx │ │ │ │ └── text_headings.docx │ │ │ ├── parsing/ │ │ │ │ ├── heading_doc_paragraphs.csv │ │ │ │ ├── heading_doc_sections.txt │ │ │ │ ├── heading_doc_sentences.txt │ │ │ │ ├── heading_document.txt │ │ │ │ ├── parsed_mixed_pdf.xhtml │ │ │ │ ├── pdf_malformat_parsed_default.txt │ │ │ │ ├── pdf_malformat_parsed_stripper.txt │ │ │ │ ├── text_abusing_headers.txt │ │ │ │ ├── word_table.docx │ │ │ │ ├── xhtml_ocr_emptyimages.xhtml │ │ │ │ ├── xhtml_ocr_mixed.xhtml │ │ │ │ ├── xhtml_ocr_mixed_long.xhtml │ │ │ │ ├── xhtml_ocr_mixed_short.xhtml │ │ │ │ └── xhtml_pdf.xhtml │ │ │ ├── pdf_coordinates/ │ │ │ │ ├── page_boxes.json │ │ │ │ ├── page_fragment.txt │ │ │ │ ├── rendered/ │ │ │ │ │ └── empty │ │ │ │ ├── three_pages_boxes.json │ │ │ │ ├── three_pages_pages.json │ │ │ │ └── three_pages_text.txt │ │ │ └── scheme_migrations/ │ │ │ ├── doc_type_v_16.json │ │ │ └── doc_type_v_17.json │ │ └── testutils.py │ ├── urls.py │ └── util/ │ ├── create_release_branch.sh │ ├── setenv.sh │ └── unify_py_file_structure.py ├── docker/ │ ├── .gitignore │ ├── README.md │ ├── build/ │ │ ├── .gitignore │ │ ├── build_setenv.sh │ │ ├── contraxsuite-app/ │ │ │ ├── .gitignore │ │ │ ├── Dockerfile.template │ │ │ ├── check_celery.sh │ │ │ ├── dump.sh │ │ │ ├── install_ssl_certs_to_python.sh │ │ │ ├── prepare-image-app.sh │ │ │ ├── start.template.sh │ │ │ └── webdav_upload.sh │ │ └── prepare-docker-images.sh │ ├── deploy/ │ │ ├── .gitignore │ │ ├── config-templates/ │ │ │ ├── backup-cron.conf │ │ │ ├── db-backup.sh.template │ │ │ ├── elastalert-config.yaml.template │ │ │ ├── elastalert-examples/ │ │ │ │ ├── elastalert-bad-gateway-error.yaml │ │ │ │ ├── elastalert-disk-usage.yaml │ │ │ │ ├── elastalert-down-docker-services.yaml │ │ │ │ └── elastalert-task-failed.yaml │ │ │ ├── elastalert-server-config.json.template │ │ │ ├── elastalert-smtp-auth.yaml │ │ │ ├── elasticsearch.yml.template │ │ │ ├── filebeat-backend-dev.template.yml │ │ │ ├── filebeat.template.yml │ │ │ ├── jupyter_notebook_config.py.template │ │ │ ├── kibana.yml.template │ │ │ ├── local_settings_celery.py.template │ │ │ ├── local_settings_websrv.py.template │ │ │ ├── metricbeat.yml.template │ │ │ ├── nginx/ │ │ │ │ ├── cors_disable │ │ │ │ ├── cors_enable │ │ │ │ ├── mime.types │ │ │ │ └── uwsgi_params │ │ │ ├── nginx-customer.conf.template │ │ │ ├── nginx-external-routes.conf.template │ │ │ ├── nginx-frontend-routes.conf.template │ │ │ ├── nginx-http.conf.template │ │ │ ├── nginx-https.conf.template │ │ │ ├── nginx-internal.conf.template │ │ │ ├── nginx-powa.conf.template │ │ │ ├── nginx.conf.template │ │ │ ├── pg_hba.conf │ │ │ ├── pgbouncer.celery.template.ini │ │ │ ├── pgbouncer.userlist.template.txt │ │ │ ├── pgbouncer.websrv.template.ini │ │ │ ├── postgres_init.sql.template │ │ │ ├── postgresql.template.conf │ │ │ ├── powa-web.conf.template │ │ │ ├── rabbitmq.template.conf │ │ │ └── uwsgi.ini.template │ │ ├── dependencies/ │ │ │ └── README.md │ │ ├── deploy-contraxsuite-to-swarm-cluster.sh │ │ ├── docker-compose-templates/ │ │ │ ├── docker-compose-backend-develop-mini.yml │ │ │ ├── docker-compose-backend-develop.yml │ │ │ ├── docker-compose-single-host-db-open.yml │ │ │ ├── docker-compose-single-host.yml │ │ │ └── docker-compose-single-master-many-workers.yml │ │ ├── k8s/ │ │ │ ├── .gitignore │ │ │ ├── aks/ │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── aks_setenv.sh │ │ │ │ └── scripts/ │ │ │ │ ├── .gitignore │ │ │ │ ├── az_01_login_use_device_code.sh │ │ │ │ ├── az_02_get_k8s_versions.sh │ │ │ │ ├── az_03_create_cluster.sh │ │ │ │ ├── az_04_connect_kubectl_to_cluster.sh │ │ │ │ ├── ceph_add_nodepool.sh │ │ │ │ ├── ceph_cephblockpool_cs.yaml │ │ │ │ ├── ceph_cluster_cs.yaml │ │ │ │ ├── ceph_operator_cs.yaml │ │ │ │ ├── ceph_remove_nodepool.sh │ │ │ │ ├── ceph_rook_common.yaml │ │ │ │ ├── ceph_rook_install.sh │ │ │ │ ├── ceph_storageclass_cs.yaml │ │ │ │ ├── certmanager_install.sh │ │ │ │ ├── dockerhub_01_authenticate.sh │ │ │ │ ├── helm_01_install.sh │ │ │ │ ├── helm_02_init_with_service_acc_run_once.sh │ │ │ │ ├── kubeapps_01_install.sh │ │ │ │ ├── kubeapps_02_open_dashboard.sh │ │ │ │ ├── kubeapps_03_retrieve_token.sh │ │ │ │ ├── kubectl_create_dashboard_rolebinding.sh │ │ │ │ ├── kubectl_get_nodes.sh │ │ │ │ ├── prometheus_grafana_del_dns_records.sh │ │ │ │ ├── prometheus_grafana_get_ip.sh │ │ │ │ ├── prometheus_grafana_install.sh │ │ │ │ └── prometheuscert.template.yml │ │ │ ├── azure-file-sc.yaml │ │ │ ├── contraxsuite/ │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.template.yaml │ │ │ │ ├── templates/ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── horizontalpodautoscaler.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ ├── job.yaml │ │ │ │ │ ├── keda.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── pvcs.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── tests/ │ │ │ │ │ └── storage.yaml │ │ │ │ └── values.template.yaml │ │ │ ├── helm_setenv.sh │ │ │ ├── prepare_helm_configs.sh │ │ │ ├── pvc.yaml │ │ │ └── values.yaml │ │ ├── nginx-error-pages/ │ │ │ ├── 404.html │ │ │ └── 502.html │ │ ├── prepare_configs.sh │ │ ├── registry/ │ │ │ ├── deploy-registry.sh │ │ │ ├── docker-compose.yml │ │ │ ├── registry_hard_reset.sh │ │ │ ├── registry_list_contents.sh │ │ │ └── registry_rm_prev_versions.sh │ │ └── undeploy-contraxsuite-from-swarm-cluster.sh │ ├── init_local_env.sh │ ├── link_media_to_docker_volume.sh │ ├── setenv.sh │ ├── setup_local_contraxsuite_ubuntu_18_04.sh │ ├── util/ │ │ ├── allow-insecure-registry.sh │ │ ├── change_apt_sources_to_https.sh │ │ ├── check_rabbit_queues.sh │ │ ├── collect_docker_stats.sh │ │ ├── commons.sh │ │ ├── configure_host.sh │ │ ├── configure_proxy.sh │ │ ├── docker-prune-worker.sh │ │ ├── docker-prune-workers.sh │ │ ├── docker_volumes_full_backup.sh │ │ ├── es_recovery.sh │ │ ├── fix_nginx_logs.sh │ │ ├── gen_self_signed_nginx_certs.sh │ │ ├── gen_worker_init_script.sh │ │ ├── install-docker-shared-user.sh │ │ ├── install-docker-swarm.sh │ │ ├── install-docker-ubuntu-20-04.sh │ │ ├── install-docker-ubuntu.sh │ │ ├── install-swarmpit.sh │ │ ├── install_powa.sh │ │ ├── load_dict_data.sh │ │ ├── monitor_disk_usage.sh │ │ ├── monitor_docker_services.sh │ │ ├── postgres_external_backup.sh │ │ ├── postgres_s3_backup.sh │ │ ├── reboot-worker.sh │ │ ├── reboot-workers.sh │ │ ├── remove_down_nodes.sh │ │ ├── set-docker-target-dir.sh │ │ ├── thread_dump_worker.sh │ │ ├── thread_dump_workers.sh │ │ ├── total_cleanup.sh │ │ ├── update-nginx-certificates-no-input.sh │ │ ├── update-nginx-certificates.sh │ │ ├── worker-init-script.sh.template │ │ └── write-crontab-cert-script.sh │ └── volumes.sh ├── documentation/ │ └── docs/ │ ├── Makefile │ ├── README.md │ ├── contraxsuite_documentation_center/ │ │ ├── assets/ │ │ │ └── css/ │ │ │ └── contraxsuite_documentation_center.css │ │ └── index.html │ ├── docstring_coverage_skipmagic.txt │ ├── make.bat │ ├── make.py │ ├── requirements.txt │ ├── source/ │ │ ├── _ext/ │ │ │ └── formfield_extension.py │ │ ├── _static/ │ │ │ └── css/ │ │ │ └── custom_styles.css │ │ ├── _templates/ │ │ │ └── layout.html │ │ ├── api/ │ │ │ └── contraxsuite_orm/ │ │ │ ├── analyze.rst │ │ │ ├── common.rst │ │ │ ├── datascience.rst │ │ │ ├── deployment.rst │ │ │ ├── document.rst │ │ │ ├── extract.rst │ │ │ ├── highq_integration.rst │ │ │ ├── imanage_integration.rst │ │ │ ├── materialized_views.rst │ │ │ ├── mlflow.rst │ │ │ ├── notifications.rst │ │ │ ├── project.rst │ │ │ ├── rawdb.rst │ │ │ ├── similarity.rst │ │ │ ├── task.rst │ │ │ └── users.rst │ │ ├── conf.py │ │ ├── configuration/ │ │ │ ├── core_concepts.md │ │ │ ├── install.rst │ │ │ └── setup.rst │ │ ├── developer_documentation_schema.yaml │ │ ├── index.rst │ │ ├── introduction/ │ │ │ ├── intro_legal_analytics.rst │ │ │ ├── overview.md │ │ │ └── pricing_support.md │ │ └── user_guides/ │ │ ├── doc_exp/ │ │ │ ├── admin.md │ │ │ ├── custom_project_terms.md │ │ │ ├── doc_type_migration.md │ │ │ ├── documents.md │ │ │ ├── intro.md │ │ │ ├── locators.md │ │ │ ├── pass_notif.md │ │ │ └── text_units.md │ │ ├── power_users/ │ │ │ ├── create_document_field.md │ │ │ ├── create_document_type.md │ │ │ ├── create_field_detectors.md │ │ │ ├── import_jupyter_notebooks.md │ │ │ ├── integration_highq.rst │ │ │ ├── user_roles.md │ │ │ └── writing_formulas.md │ │ └── reviewers/ │ │ ├── batch_analysis.md │ │ ├── contract_analysis.md │ │ ├── contract_clause_analysis.md │ │ ├── create_manage.md │ │ └── stats.md │ └── utils/ │ ├── __init__.py │ ├── autodoc_rst_maker.py │ └── strip_license.py ├── notebook-examples/ │ ├── clustering.ipynb │ ├── custom_ocr_workflow.ipynb │ ├── document_model_tutorial.ipynb │ ├── example_image.tif │ ├── example_image_messy.tif │ ├── topic_modeling_lda.ipynb │ └── topic_modeling_word2vec.ipynb ├── scripts/ │ ├── init_empty_dev_db.sh │ ├── init_lexnlp_private_models.sh │ ├── run_tests_nodb.sh │ ├── run_uwsgi.sh │ └── sub_project_utils.sh ├── sdk/ │ ├── README │ ├── csharp/ │ │ └── sdk/ │ │ ├── .gitignore │ │ ├── .openapi-generator/ │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .openapi-generator-ignore │ │ ├── .travis.yml │ │ ├── Org.OpenAPITools.sln │ │ ├── README.md │ │ ├── build.bat │ │ ├── build.sh │ │ ├── docs/ │ │ │ ├── AccessTokenSchema.md │ │ │ ├── Action.md │ │ │ ├── AmountUsage.md │ │ │ ├── AnalyzeApi.md │ │ │ ├── Annotation.md │ │ │ ├── AnnotationBatchRequest.md │ │ │ ├── AnnotationBatchResponse.md │ │ │ ├── AnnotationInDocument.md │ │ │ ├── AnnotationSuggestRequest.md │ │ │ ├── AnnotationUpdateResponse.md │ │ │ ├── ApiApi.md │ │ │ ├── AppVar.md │ │ │ ├── AssignProjectAnnotationsRequest.md │ │ │ ├── AssignProjectDocumentRequest.md │ │ │ ├── AssignProjectDocumentsRequest.md │ │ │ ├── CheckDocumentFieldFormulaRequest.md │ │ │ ├── CheckNewDocumentFieldFormulaRequest.md │ │ │ ├── CitationUsage.md │ │ │ ├── CleanupProjectRequest.md │ │ │ ├── CloneDocumentFieldRequest.md │ │ │ ├── CloneDocumentTypeRequest.md │ │ │ ├── ClusterProjectRequest.md │ │ │ ├── ClusterProjectResponse.md │ │ │ ├── Code.md │ │ │ ├── CommonApi.md │ │ │ ├── CopyrightUsage.md │ │ │ ├── CountSuccessResponse.md │ │ │ ├── CourtUsage.md │ │ │ ├── CurrencyUsage.md │ │ │ ├── CustomPasswordChange.md │ │ │ ├── CustomPasswordReset.md │ │ │ ├── CustomPasswordResetConfirm.md │ │ │ ├── DateDurationUsage.md │ │ │ ├── DateUsage.md │ │ │ ├── DateUsageCalendar.md │ │ │ ├── DateUsageTimeline.md │ │ │ ├── DefinitionUsage.md │ │ │ ├── DetectProjectFieldValuesRequest.md │ │ │ ├── DistanceUsage.md │ │ │ ├── DocumentApi.md │ │ │ ├── DocumentCluster.md │ │ │ ├── DocumentClusterDocumentData.md │ │ │ ├── DocumentClusterDocumentDataInner.md │ │ │ ├── DocumentClusterUpdate.md │ │ │ ├── DocumentDefinitions.md │ │ │ ├── DocumentDetail.md │ │ │ ├── DocumentDetailAssigneeData.md │ │ │ ├── DocumentDetailAvailableAssigneesData.md │ │ │ ├── DocumentDetailAvailableAssigneesDataInner.md │ │ │ ├── DocumentDetailNotes.md │ │ │ ├── DocumentDetailStatusData.md │ │ │ ├── DocumentDetailUser.md │ │ │ ├── DocumentDocumentsDownloadZipGET404Response.md │ │ │ ├── DocumentDownloadZipResponse.md │ │ │ ├── DocumentFieldAnnotation.md │ │ │ ├── DocumentFieldCategoryCreate.md │ │ │ ├── DocumentFieldCategoryList.md │ │ │ ├── DocumentFieldCategoryListFields.md │ │ │ ├── DocumentFieldCategoryListFieldsInner.md │ │ │ ├── DocumentFieldCreate.md │ │ │ ├── DocumentFieldDetail.md │ │ │ ├── DocumentFieldDetectorCreate.md │ │ │ ├── DocumentFieldDetectorDetail.md │ │ │ ├── DocumentFieldList.md │ │ │ ├── DocumentFieldListCategory.md │ │ │ ├── DocumentFieldListFamily.md │ │ │ ├── DocumentFieldStatsResponse.md │ │ │ ├── DocumentFieldValue.md │ │ │ ├── DocumentNoteCreate.md │ │ │ ├── DocumentNoteDetail.md │ │ │ ├── DocumentNoteDetailUser.md │ │ │ ├── DocumentNoteUpdate.md │ │ │ ├── DocumentPDFRepr.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequest.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInner.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponse.md │ │ │ ├── DocumentSimilarity.md │ │ │ ├── DocumentSimilarityByFeaturesForm.md │ │ │ ├── DocumentSimilarityRun.md │ │ │ ├── DocumentTypeCreate.md │ │ │ ├── DocumentTypeDetail.md │ │ │ ├── DocumentTypeDetailCategories.md │ │ │ ├── DocumentTypeDetailCategoriesInner.md │ │ │ ├── DocumentTypeDetailFieldsData.md │ │ │ ├── DocumentTypeDetailFieldsDataInner.md │ │ │ ├── DocumentTypeForStats.md │ │ │ ├── DocumentTypeImportRequest.md │ │ │ ├── DocumentTypeImportResponse.md │ │ │ ├── DocumentTypeStats.md │ │ │ ├── DocumentTypeStatsData.md │ │ │ ├── DocumentsForUser.md │ │ │ ├── DocumentsForUserResponse.md │ │ │ ├── DocumentsForUserResponseData.md │ │ │ ├── DocumentsForUserResponseDataInner.md │ │ │ ├── DumpApi.md │ │ │ ├── DumpDocumentConfigGET200Response.md │ │ │ ├── DumpFixture.md │ │ │ ├── DumpPUTErrorResponse.md │ │ │ ├── ExtractApi.md │ │ │ ├── FieldAnnotationStatus.md │ │ │ ├── GeoAliasUsage.md │ │ │ ├── GeoEntityList.md │ │ │ ├── GeoEntityUpdate.md │ │ │ ├── GeoEntityUsage.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse4041.md │ │ │ ├── LoadFixture.md │ │ │ ├── LocateItemsRequest.md │ │ │ ├── LoggingAPIViewRequest.md │ │ │ ├── LoggingApi.md │ │ │ ├── Login.md │ │ │ ├── LoginResponse.md │ │ │ ├── MLModel.md │ │ │ ├── MarkForSeenWebNotificationRequest.md │ │ │ ├── MarkForSeenWebNotificationResponse.md │ │ │ ├── MarkUnmarkForDeleteDocumentsRequest.md │ │ │ ├── MarkUnmarkForDeleteDocumentsResponse.md │ │ │ ├── MarkUnmarkForDeleteProjectsReponse.md │ │ │ ├── MarkUnmarkForDeleteProjectsRequest.md │ │ │ ├── MediaDataApi.md │ │ │ ├── MenuGroup.md │ │ │ ├── MenuItem.md │ │ │ ├── NotificationsApi.md │ │ │ ├── Party.md │ │ │ ├── PartySimilarity.md │ │ │ ├── PartySimilarityForm.md │ │ │ ├── PartyUsage.md │ │ │ ├── PercentUsage.md │ │ │ ├── ProjectActiveTasks.md │ │ │ ├── ProjectActiveTasksTasks.md │ │ │ ├── ProjectAnnotationsAssigneesResponse.md │ │ │ ├── ProjectApi.md │ │ │ ├── ProjectAppVar.md │ │ │ ├── ProjectClustering.md │ │ │ ├── ProjectClusteringDocumentClusters.md │ │ │ ├── ProjectClusteringDocumentClustersInner.md │ │ │ ├── ProjectClusteringStatusResponse.md │ │ │ ├── ProjectCreate.md │ │ │ ├── ProjectDetail.md │ │ │ ├── ProjectDetailOwnersData.md │ │ │ ├── ProjectDetailOwnersDataInner.md │ │ │ ├── ProjectDocumentSimilarity.md │ │ │ ├── ProjectDocumentSimilarityResponse.md │ │ │ ├── ProjectDocumentSimilarityResponseData.md │ │ │ ├── ProjectDocumentSimilarityResponseDataInner.md │ │ │ ├── ProjectDocumentsAssigneesResponse.md │ │ │ ├── ProjectDocumentsSimilarityByVectorsForm.md │ │ │ ├── ProjectList.md │ │ │ ├── ProjectListStatusData.md │ │ │ ├── ProjectListTypeData.md │ │ │ ├── ProjectProgressResponse.md │ │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404Response.md │ │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200Response.md │ │ │ ├── ProjectSearchSimilarDocumentsRequest.md │ │ │ ├── ProjectSearchSimilarTextUnitsRequest.md │ │ │ ├── ProjectStats.md │ │ │ ├── ProjectTasks.md │ │ │ ├── ProjectTextUnitSimilarity.md │ │ │ ├── ProjectTextUnitsSimilarityByVectorsForm.md │ │ │ ├── ProjectUpdate.md │ │ │ ├── ProjectUploadSessionFilesResponse.md │ │ │ ├── ProjectUploadSessionPOSTResponse.md │ │ │ ├── ProjectUploadSessionProgressResponse.md │ │ │ ├── RatioUsage.md │ │ │ ├── RawdbApi.md │ │ │ ├── RawdbDocumentsPOSTRequest.md │ │ │ ├── Register.md │ │ │ ├── RegulationUsage.md │ │ │ ├── RestAuthApi.md │ │ │ ├── RestAuthCommonResponse.md │ │ │ ├── ReviewStatus.md │ │ │ ├── ReviewStatusDetail.md │ │ │ ├── ReviewStatusDetailGroupData.md │ │ │ ├── ReviewStatusGroup.md │ │ │ ├── SelectProjectsRequest.md │ │ │ ├── SelectProjectsResponse.md │ │ │ ├── SendClusterToProjectRequest.md │ │ │ ├── SetProjectAnnotationsStatusAsyncResponse.md │ │ │ ├── SetProjectAnnotationsStatusRequest.md │ │ │ ├── SetProjectDocumentsStatusRequest.md │ │ │ ├── SimilarProjectTextUnitsRequest.md │ │ │ ├── SimilarityApi.md │ │ │ ├── SimilarityForm.md │ │ │ ├── SimilarityPOSTObjectResponse.md │ │ │ ├── SimilarityRun.md │ │ │ ├── SocialAccountsResponse.md │ │ │ ├── SocialAccountsResponseSocialAccounts.md │ │ │ ├── SocialClientList.md │ │ │ ├── SocialClientListUrls.md │ │ │ ├── SocialLogin.md │ │ │ ├── Task.md │ │ │ ├── TaskApi.md │ │ │ ├── TaskIdResponse.md │ │ │ ├── TaskLogResponse.md │ │ │ ├── TaskLogResponseRecords.md │ │ │ ├── TaskQueue.md │ │ │ ├── TaskQueueDocumentsData.md │ │ │ ├── TaskQueueDocumentsDataInner.md │ │ │ ├── TaskQueueReviewersData.md │ │ │ ├── TaskQueueReviewersDataInner.md │ │ │ ├── TermTag.md │ │ │ ├── TermUsage.md │ │ │ ├── TextUnitClassification.md │ │ │ ├── TextUnitClassificationCreate.md │ │ │ ├── TextUnitClassifier.md │ │ │ ├── TextUnitClassifierSuggestion.md │ │ │ ├── TextUnitCluster.md │ │ │ ├── TextUnitDjangoQL.md │ │ │ ├── TextUnitSimilarity.md │ │ │ ├── TextUnitSimilarityByFeaturesForm.md │ │ │ ├── TrademarkUsage.md │ │ │ ├── Transformer.md │ │ │ ├── TusApi.md │ │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400Response.md │ │ │ ├── Typeahead.md │ │ │ ├── UpdateProjectDocumentsFieldsRequest.md │ │ │ ├── UpdateProjectDocumentsFieldsResponse.md │ │ │ ├── Upload.md │ │ │ ├── UploadSessionBatchUploadRequest.md │ │ │ ├── UploadSessionCreate.md │ │ │ ├── UploadSessionDeleteFileRequest.md │ │ │ ├── UploadSessionDetail.md │ │ │ ├── UploadSessionUpdate.md │ │ │ ├── UrlUsage.md │ │ │ ├── User.md │ │ │ ├── UserProfile.md │ │ │ ├── UserStats.md │ │ │ ├── UsersApi.md │ │ │ ├── V1Api.md │ │ │ ├── VarApi.md │ │ │ ├── VerifyAuthTokenRequest.md │ │ │ ├── VerifyAuthTokenResponse.md │ │ │ ├── VerifyEmail.md │ │ │ ├── WebNotificationDetail.md │ │ │ └── WebNotificationDetailNotification.md │ │ ├── git_push.sh │ │ ├── mono_nunit_test.sh │ │ └── src/ │ │ ├── Org.OpenAPITools/ │ │ │ ├── Api/ │ │ │ │ ├── AnalyzeApi.cs │ │ │ │ ├── ApiApi.cs │ │ │ │ ├── CommonApi.cs │ │ │ │ ├── DocumentApi.cs │ │ │ │ ├── DumpApi.cs │ │ │ │ ├── ExtractApi.cs │ │ │ │ ├── LoggingApi.cs │ │ │ │ ├── MediaDataApi.cs │ │ │ │ ├── NotificationsApi.cs │ │ │ │ ├── ProjectApi.cs │ │ │ │ ├── RawdbApi.cs │ │ │ │ ├── RestAuthApi.cs │ │ │ │ ├── SimilarityApi.cs │ │ │ │ ├── TaskApi.cs │ │ │ │ ├── TusApi.cs │ │ │ │ ├── UsersApi.cs │ │ │ │ ├── V1Api.cs │ │ │ │ └── VarApi.cs │ │ │ ├── Client/ │ │ │ │ ├── ApiClient.cs │ │ │ │ ├── ApiException.cs │ │ │ │ ├── ApiResponse.cs │ │ │ │ ├── Configuration.cs │ │ │ │ ├── ExceptionFactory.cs │ │ │ │ ├── GlobalConfiguration.cs │ │ │ │ ├── IApiAccessor.cs │ │ │ │ ├── IReadableConfiguration.cs │ │ │ │ └── OpenAPIDateConverter.cs │ │ │ ├── Model/ │ │ │ │ ├── AccessTokenSchema.cs │ │ │ │ ├── Action.cs │ │ │ │ ├── AmountUsage.cs │ │ │ │ ├── Annotation.cs │ │ │ │ ├── AnnotationBatchRequest.cs │ │ │ │ ├── AnnotationBatchResponse.cs │ │ │ │ ├── AnnotationInDocument.cs │ │ │ │ ├── AnnotationSuggestRequest.cs │ │ │ │ ├── AnnotationUpdateResponse.cs │ │ │ │ ├── AppVar.cs │ │ │ │ ├── AssignProjectAnnotationsRequest.cs │ │ │ │ ├── AssignProjectDocumentRequest.cs │ │ │ │ ├── AssignProjectDocumentsRequest.cs │ │ │ │ ├── CheckDocumentFieldFormulaRequest.cs │ │ │ │ ├── CheckNewDocumentFieldFormulaRequest.cs │ │ │ │ ├── CitationUsage.cs │ │ │ │ ├── CleanupProjectRequest.cs │ │ │ │ ├── CloneDocumentFieldRequest.cs │ │ │ │ ├── CloneDocumentTypeRequest.cs │ │ │ │ ├── ClusterProjectRequest.cs │ │ │ │ ├── ClusterProjectResponse.cs │ │ │ │ ├── Code.cs │ │ │ │ ├── CopyrightUsage.cs │ │ │ │ ├── CountSuccessResponse.cs │ │ │ │ ├── CourtUsage.cs │ │ │ │ ├── CurrencyUsage.cs │ │ │ │ ├── CustomPasswordChange.cs │ │ │ │ ├── CustomPasswordReset.cs │ │ │ │ ├── CustomPasswordResetConfirm.cs │ │ │ │ ├── DateDurationUsage.cs │ │ │ │ ├── DateUsage.cs │ │ │ │ ├── DateUsageCalendar.cs │ │ │ │ ├── DateUsageTimeline.cs │ │ │ │ ├── DefinitionUsage.cs │ │ │ │ ├── DetectProjectFieldValuesRequest.cs │ │ │ │ ├── DistanceUsage.cs │ │ │ │ ├── DocumentCluster.cs │ │ │ │ ├── DocumentClusterDocumentData.cs │ │ │ │ ├── DocumentClusterDocumentDataInner.cs │ │ │ │ ├── DocumentClusterUpdate.cs │ │ │ │ ├── DocumentDefinitions.cs │ │ │ │ ├── DocumentDetail.cs │ │ │ │ ├── DocumentDetailAssigneeData.cs │ │ │ │ ├── DocumentDetailAvailableAssigneesData.cs │ │ │ │ ├── DocumentDetailAvailableAssigneesDataInner.cs │ │ │ │ ├── DocumentDetailNotes.cs │ │ │ │ ├── DocumentDetailStatusData.cs │ │ │ │ ├── DocumentDetailUser.cs │ │ │ │ ├── DocumentDocumentsDownloadZipGET404Response.cs │ │ │ │ ├── DocumentDownloadZipResponse.cs │ │ │ │ ├── DocumentFieldAnnotation.cs │ │ │ │ ├── DocumentFieldCategoryCreate.cs │ │ │ │ ├── DocumentFieldCategoryList.cs │ │ │ │ ├── DocumentFieldCategoryListFields.cs │ │ │ │ ├── DocumentFieldCategoryListFieldsInner.cs │ │ │ │ ├── DocumentFieldCreate.cs │ │ │ │ ├── DocumentFieldDetail.cs │ │ │ │ ├── DocumentFieldDetectorCreate.cs │ │ │ │ ├── DocumentFieldDetectorDetail.cs │ │ │ │ ├── DocumentFieldList.cs │ │ │ │ ├── DocumentFieldListCategory.cs │ │ │ │ ├── DocumentFieldListFamily.cs │ │ │ │ ├── DocumentFieldStatsResponse.cs │ │ │ │ ├── DocumentFieldValue.cs │ │ │ │ ├── DocumentNoteCreate.cs │ │ │ │ ├── DocumentNoteDetail.cs │ │ │ │ ├── DocumentNoteDetailUser.cs │ │ │ │ ├── DocumentNoteUpdate.cs │ │ │ │ ├── DocumentPDFRepr.cs │ │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequest.cs │ │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInner.cs │ │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponse.cs │ │ │ │ ├── DocumentSimilarity.cs │ │ │ │ ├── DocumentSimilarityByFeaturesForm.cs │ │ │ │ ├── DocumentSimilarityRun.cs │ │ │ │ ├── DocumentTypeCreate.cs │ │ │ │ ├── DocumentTypeDetail.cs │ │ │ │ ├── DocumentTypeDetailCategories.cs │ │ │ │ ├── DocumentTypeDetailCategoriesInner.cs │ │ │ │ ├── DocumentTypeDetailFieldsData.cs │ │ │ │ ├── DocumentTypeDetailFieldsDataInner.cs │ │ │ │ ├── DocumentTypeForStats.cs │ │ │ │ ├── DocumentTypeImportRequest.cs │ │ │ │ ├── DocumentTypeImportResponse.cs │ │ │ │ ├── DocumentTypeStats.cs │ │ │ │ ├── DocumentTypeStatsData.cs │ │ │ │ ├── DocumentsForUser.cs │ │ │ │ ├── DocumentsForUserResponse.cs │ │ │ │ ├── DocumentsForUserResponseData.cs │ │ │ │ ├── DocumentsForUserResponseDataInner.cs │ │ │ │ ├── DumpDocumentConfigGET200Response.cs │ │ │ │ ├── DumpFixture.cs │ │ │ │ ├── DumpPUTErrorResponse.cs │ │ │ │ ├── FieldAnnotationStatus.cs │ │ │ │ ├── GeoAliasUsage.cs │ │ │ │ ├── GeoEntityList.cs │ │ │ │ ├── GeoEntityUpdate.cs │ │ │ │ ├── GeoEntityUsage.cs │ │ │ │ ├── InlineResponse400.cs │ │ │ │ ├── InlineResponse404.cs │ │ │ │ ├── InlineResponse4041.cs │ │ │ │ ├── LoadFixture.cs │ │ │ │ ├── LocateItemsRequest.cs │ │ │ │ ├── LoggingAPIViewRequest.cs │ │ │ │ ├── Login.cs │ │ │ │ ├── LoginResponse.cs │ │ │ │ ├── MLModel.cs │ │ │ │ ├── MarkForSeenWebNotificationRequest.cs │ │ │ │ ├── MarkForSeenWebNotificationResponse.cs │ │ │ │ ├── MarkUnmarkForDeleteDocumentsRequest.cs │ │ │ │ ├── MarkUnmarkForDeleteDocumentsResponse.cs │ │ │ │ ├── MarkUnmarkForDeleteProjectsReponse.cs │ │ │ │ ├── MarkUnmarkForDeleteProjectsRequest.cs │ │ │ │ ├── MenuGroup.cs │ │ │ │ ├── MenuItem.cs │ │ │ │ ├── Party.cs │ │ │ │ ├── PartySimilarity.cs │ │ │ │ ├── PartySimilarityForm.cs │ │ │ │ ├── PartyUsage.cs │ │ │ │ ├── PercentUsage.cs │ │ │ │ ├── ProjectActiveTasks.cs │ │ │ │ ├── ProjectActiveTasksTasks.cs │ │ │ │ ├── ProjectAnnotationsAssigneesResponse.cs │ │ │ │ ├── ProjectAppVar.cs │ │ │ │ ├── ProjectClustering.cs │ │ │ │ ├── ProjectClusteringDocumentClusters.cs │ │ │ │ ├── ProjectClusteringDocumentClustersInner.cs │ │ │ │ ├── ProjectClusteringStatusResponse.cs │ │ │ │ ├── ProjectCreate.cs │ │ │ │ ├── ProjectDetail.cs │ │ │ │ ├── ProjectDetailOwnersData.cs │ │ │ │ ├── ProjectDetailOwnersDataInner.cs │ │ │ │ ├── ProjectDocumentSimilarity.cs │ │ │ │ ├── ProjectDocumentSimilarityResponse.cs │ │ │ │ ├── ProjectDocumentSimilarityResponseData.cs │ │ │ │ ├── ProjectDocumentSimilarityResponseDataInner.cs │ │ │ │ ├── ProjectDocumentsAssigneesResponse.cs │ │ │ │ ├── ProjectDocumentsSimilarityByVectorsForm.cs │ │ │ │ ├── ProjectList.cs │ │ │ │ ├── ProjectListStatusData.cs │ │ │ │ ├── ProjectListTypeData.cs │ │ │ │ ├── ProjectProgressResponse.cs │ │ │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404Response.cs │ │ │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200Response.cs │ │ │ │ ├── ProjectSearchSimilarDocumentsRequest.cs │ │ │ │ ├── ProjectSearchSimilarTextUnitsRequest.cs │ │ │ │ ├── ProjectStats.cs │ │ │ │ ├── ProjectTasks.cs │ │ │ │ ├── ProjectTextUnitSimilarity.cs │ │ │ │ ├── ProjectTextUnitsSimilarityByVectorsForm.cs │ │ │ │ ├── ProjectUpdate.cs │ │ │ │ ├── ProjectUploadSessionFilesResponse.cs │ │ │ │ ├── ProjectUploadSessionPOSTResponse.cs │ │ │ │ ├── ProjectUploadSessionProgressResponse.cs │ │ │ │ ├── RatioUsage.cs │ │ │ │ ├── RawdbDocumentsPOSTRequest.cs │ │ │ │ ├── Register.cs │ │ │ │ ├── RegulationUsage.cs │ │ │ │ ├── RestAuthCommonResponse.cs │ │ │ │ ├── ReviewStatus.cs │ │ │ │ ├── ReviewStatusDetail.cs │ │ │ │ ├── ReviewStatusDetailGroupData.cs │ │ │ │ ├── ReviewStatusGroup.cs │ │ │ │ ├── SelectProjectsRequest.cs │ │ │ │ ├── SelectProjectsResponse.cs │ │ │ │ ├── SendClusterToProjectRequest.cs │ │ │ │ ├── SetProjectAnnotationsStatusAsyncResponse.cs │ │ │ │ ├── SetProjectAnnotationsStatusRequest.cs │ │ │ │ ├── SetProjectDocumentsStatusRequest.cs │ │ │ │ ├── SimilarProjectTextUnitsRequest.cs │ │ │ │ ├── SimilarityForm.cs │ │ │ │ ├── SimilarityPOSTObjectResponse.cs │ │ │ │ ├── SimilarityRun.cs │ │ │ │ ├── SocialAccountsResponse.cs │ │ │ │ ├── SocialAccountsResponseSocialAccounts.cs │ │ │ │ ├── SocialClientList.cs │ │ │ │ ├── SocialClientListUrls.cs │ │ │ │ ├── SocialLogin.cs │ │ │ │ ├── Task.cs │ │ │ │ ├── TaskIdResponse.cs │ │ │ │ ├── TaskLogResponse.cs │ │ │ │ ├── TaskLogResponseRecords.cs │ │ │ │ ├── TaskQueue.cs │ │ │ │ ├── TaskQueueDocumentsData.cs │ │ │ │ ├── TaskQueueDocumentsDataInner.cs │ │ │ │ ├── TaskQueueReviewersData.cs │ │ │ │ ├── TaskQueueReviewersDataInner.cs │ │ │ │ ├── TermTag.cs │ │ │ │ ├── TermUsage.cs │ │ │ │ ├── TextUnitClassification.cs │ │ │ │ ├── TextUnitClassificationCreate.cs │ │ │ │ ├── TextUnitClassifier.cs │ │ │ │ ├── TextUnitClassifierSuggestion.cs │ │ │ │ ├── TextUnitCluster.cs │ │ │ │ ├── TextUnitDjangoQL.cs │ │ │ │ ├── TextUnitSimilarity.cs │ │ │ │ ├── TextUnitSimilarityByFeaturesForm.cs │ │ │ │ ├── TrademarkUsage.cs │ │ │ │ ├── Transformer.cs │ │ │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400Response.cs │ │ │ │ ├── Typeahead.cs │ │ │ │ ├── UpdateProjectDocumentsFieldsRequest.cs │ │ │ │ ├── UpdateProjectDocumentsFieldsResponse.cs │ │ │ │ ├── Upload.cs │ │ │ │ ├── UploadSessionBatchUploadRequest.cs │ │ │ │ ├── UploadSessionCreate.cs │ │ │ │ ├── UploadSessionDeleteFileRequest.cs │ │ │ │ ├── UploadSessionDetail.cs │ │ │ │ ├── UploadSessionUpdate.cs │ │ │ │ ├── UrlUsage.cs │ │ │ │ ├── User.cs │ │ │ │ ├── UserProfile.cs │ │ │ │ ├── UserStats.cs │ │ │ │ ├── VerifyAuthTokenRequest.cs │ │ │ │ ├── VerifyAuthTokenResponse.cs │ │ │ │ ├── VerifyEmail.cs │ │ │ │ ├── WebNotificationDetail.cs │ │ │ │ └── WebNotificationDetailNotification.cs │ │ │ ├── Org.OpenAPITools.csproj │ │ │ ├── Org.OpenAPITools.nuspec │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ └── Org.OpenAPITools.Test/ │ │ ├── Api/ │ │ │ ├── AnalyzeApiTests.cs │ │ │ ├── ApiApiTests.cs │ │ │ ├── CommonApiTests.cs │ │ │ ├── DocumentApiTests.cs │ │ │ ├── DumpApiTests.cs │ │ │ ├── ExtractApiTests.cs │ │ │ ├── LoggingApiTests.cs │ │ │ ├── MediaDataApiTests.cs │ │ │ ├── NotificationsApiTests.cs │ │ │ ├── ProjectApiTests.cs │ │ │ ├── RawdbApiTests.cs │ │ │ ├── RestAuthApiTests.cs │ │ │ ├── SimilarityApiTests.cs │ │ │ ├── TaskApiTests.cs │ │ │ ├── TusApiTests.cs │ │ │ ├── UsersApiTests.cs │ │ │ ├── V1ApiTests.cs │ │ │ └── VarApiTests.cs │ │ ├── Model/ │ │ │ ├── AccessTokenSchemaTests.cs │ │ │ ├── ActionTests.cs │ │ │ ├── AmountUsageTests.cs │ │ │ ├── AnnotationBatchRequestTests.cs │ │ │ ├── AnnotationBatchResponseTests.cs │ │ │ ├── AnnotationInDocumentTests.cs │ │ │ ├── AnnotationSuggestRequestTests.cs │ │ │ ├── AnnotationTests.cs │ │ │ ├── AnnotationUpdateResponseTests.cs │ │ │ ├── AppVarTests.cs │ │ │ ├── AssignProjectAnnotationsRequestTests.cs │ │ │ ├── AssignProjectDocumentRequestTests.cs │ │ │ ├── AssignProjectDocumentsRequestTests.cs │ │ │ ├── CheckDocumentFieldFormulaRequestTests.cs │ │ │ ├── CheckNewDocumentFieldFormulaRequestTests.cs │ │ │ ├── CitationUsageTests.cs │ │ │ ├── CleanupProjectRequestTests.cs │ │ │ ├── CloneDocumentFieldRequestTests.cs │ │ │ ├── CloneDocumentTypeRequestTests.cs │ │ │ ├── ClusterProjectRequestTests.cs │ │ │ ├── ClusterProjectResponseTests.cs │ │ │ ├── CodeTests.cs │ │ │ ├── CopyrightUsageTests.cs │ │ │ ├── CountSuccessResponseTests.cs │ │ │ ├── CourtUsageTests.cs │ │ │ ├── CurrencyUsageTests.cs │ │ │ ├── CustomPasswordChangeTests.cs │ │ │ ├── CustomPasswordResetConfirmTests.cs │ │ │ ├── CustomPasswordResetTests.cs │ │ │ ├── DateDurationUsageTests.cs │ │ │ ├── DateUsageCalendarTests.cs │ │ │ ├── DateUsageTests.cs │ │ │ ├── DateUsageTimelineTests.cs │ │ │ ├── DefinitionUsageTests.cs │ │ │ ├── DetectProjectFieldValuesRequestTests.cs │ │ │ ├── DistanceUsageTests.cs │ │ │ ├── DocumentClusterDocumentDataInnerTests.cs │ │ │ ├── DocumentClusterDocumentDataTests.cs │ │ │ ├── DocumentClusterTests.cs │ │ │ ├── DocumentClusterUpdateTests.cs │ │ │ ├── DocumentDefinitionsTests.cs │ │ │ ├── DocumentDetailAssigneeDataTests.cs │ │ │ ├── DocumentDetailAvailableAssigneesDataInnerTests.cs │ │ │ ├── DocumentDetailAvailableAssigneesDataTests.cs │ │ │ ├── DocumentDetailNotesTests.cs │ │ │ ├── DocumentDetailStatusDataTests.cs │ │ │ ├── DocumentDetailTests.cs │ │ │ ├── DocumentDetailUserTests.cs │ │ │ ├── DocumentDocumentsDownloadZipGET404ResponseTests.cs │ │ │ ├── DocumentDownloadZipResponseTests.cs │ │ │ ├── DocumentFieldAnnotationTests.cs │ │ │ ├── DocumentFieldCategoryCreateTests.cs │ │ │ ├── DocumentFieldCategoryListFieldsInnerTests.cs │ │ │ ├── DocumentFieldCategoryListFieldsTests.cs │ │ │ ├── DocumentFieldCategoryListTests.cs │ │ │ ├── DocumentFieldCreateTests.cs │ │ │ ├── DocumentFieldDetailTests.cs │ │ │ ├── DocumentFieldDetectorCreateTests.cs │ │ │ ├── DocumentFieldDetectorDetailTests.cs │ │ │ ├── DocumentFieldListCategoryTests.cs │ │ │ ├── DocumentFieldListFamilyTests.cs │ │ │ ├── DocumentFieldListTests.cs │ │ │ ├── DocumentFieldStatsResponseTests.cs │ │ │ ├── DocumentFieldValueTests.cs │ │ │ ├── DocumentNoteCreateTests.cs │ │ │ ├── DocumentNoteDetailTests.cs │ │ │ ├── DocumentNoteDetailUserTests.cs │ │ │ ├── DocumentNoteUpdateTests.cs │ │ │ ├── DocumentPDFReprTests.cs │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInnerTests.cs │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestTests.cs │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponseTests.cs │ │ │ ├── DocumentSimilarityByFeaturesFormTests.cs │ │ │ ├── DocumentSimilarityRunTests.cs │ │ │ ├── DocumentSimilarityTests.cs │ │ │ ├── DocumentTypeCreateTests.cs │ │ │ ├── DocumentTypeDetailCategoriesInnerTests.cs │ │ │ ├── DocumentTypeDetailCategoriesTests.cs │ │ │ ├── DocumentTypeDetailFieldsDataInnerTests.cs │ │ │ ├── DocumentTypeDetailFieldsDataTests.cs │ │ │ ├── DocumentTypeDetailTests.cs │ │ │ ├── DocumentTypeForStatsTests.cs │ │ │ ├── DocumentTypeImportRequestTests.cs │ │ │ ├── DocumentTypeImportResponseTests.cs │ │ │ ├── DocumentTypeStatsDataTests.cs │ │ │ ├── DocumentTypeStatsTests.cs │ │ │ ├── DocumentsForUserResponseDataInnerTests.cs │ │ │ ├── DocumentsForUserResponseDataTests.cs │ │ │ ├── DocumentsForUserResponseTests.cs │ │ │ ├── DocumentsForUserTests.cs │ │ │ ├── DumpDocumentConfigGET200ResponseTests.cs │ │ │ ├── DumpFixtureTests.cs │ │ │ ├── DumpPUTErrorResponseTests.cs │ │ │ ├── FieldAnnotationStatusTests.cs │ │ │ ├── GeoAliasUsageTests.cs │ │ │ ├── GeoEntityListTests.cs │ │ │ ├── GeoEntityUpdateTests.cs │ │ │ ├── GeoEntityUsageTests.cs │ │ │ ├── InlineResponse400Tests.cs │ │ │ ├── InlineResponse4041Tests.cs │ │ │ ├── InlineResponse404Tests.cs │ │ │ ├── LoadFixtureTests.cs │ │ │ ├── LocateItemsRequestTests.cs │ │ │ ├── LoggingAPIViewRequestTests.cs │ │ │ ├── LoginResponseTests.cs │ │ │ ├── LoginTests.cs │ │ │ ├── MLModelTests.cs │ │ │ ├── MarkForSeenWebNotificationRequestTests.cs │ │ │ ├── MarkForSeenWebNotificationResponseTests.cs │ │ │ ├── MarkUnmarkForDeleteDocumentsRequestTests.cs │ │ │ ├── MarkUnmarkForDeleteDocumentsResponseTests.cs │ │ │ ├── MarkUnmarkForDeleteProjectsReponseTests.cs │ │ │ ├── MarkUnmarkForDeleteProjectsRequestTests.cs │ │ │ ├── MenuGroupTests.cs │ │ │ ├── MenuItemTests.cs │ │ │ ├── PartySimilarityFormTests.cs │ │ │ ├── PartySimilarityTests.cs │ │ │ ├── PartyTests.cs │ │ │ ├── PartyUsageTests.cs │ │ │ ├── PercentUsageTests.cs │ │ │ ├── ProjectActiveTasksTasksTests.cs │ │ │ ├── ProjectActiveTasksTests.cs │ │ │ ├── ProjectAnnotationsAssigneesResponseTests.cs │ │ │ ├── ProjectAppVarTests.cs │ │ │ ├── ProjectClusteringDocumentClustersInnerTests.cs │ │ │ ├── ProjectClusteringDocumentClustersTests.cs │ │ │ ├── ProjectClusteringStatusResponseTests.cs │ │ │ ├── ProjectClusteringTests.cs │ │ │ ├── ProjectCreateTests.cs │ │ │ ├── ProjectDetailOwnersDataInnerTests.cs │ │ │ ├── ProjectDetailOwnersDataTests.cs │ │ │ ├── ProjectDetailTests.cs │ │ │ ├── ProjectDocumentSimilarityResponseDataInnerTests.cs │ │ │ ├── ProjectDocumentSimilarityResponseDataTests.cs │ │ │ ├── ProjectDocumentSimilarityResponseTests.cs │ │ │ ├── ProjectDocumentSimilarityTests.cs │ │ │ ├── ProjectDocumentsAssigneesResponseTests.cs │ │ │ ├── ProjectDocumentsSimilarityByVectorsFormTests.cs │ │ │ ├── ProjectListStatusDataTests.cs │ │ │ ├── ProjectListTests.cs │ │ │ ├── ProjectListTypeDataTests.cs │ │ │ ├── ProjectProgressResponseTests.cs │ │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404ResponseTests.cs │ │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200ResponseTests.cs │ │ │ ├── ProjectSearchSimilarDocumentsRequestTests.cs │ │ │ ├── ProjectSearchSimilarTextUnitsRequestTests.cs │ │ │ ├── ProjectStatsTests.cs │ │ │ ├── ProjectTasksTests.cs │ │ │ ├── ProjectTextUnitSimilarityTests.cs │ │ │ ├── ProjectTextUnitsSimilarityByVectorsFormTests.cs │ │ │ ├── ProjectUpdateTests.cs │ │ │ ├── ProjectUploadSessionFilesResponseTests.cs │ │ │ ├── ProjectUploadSessionPOSTResponseTests.cs │ │ │ ├── ProjectUploadSessionProgressResponseTests.cs │ │ │ ├── RatioUsageTests.cs │ │ │ ├── RawdbDocumentsPOSTRequestTests.cs │ │ │ ├── RegisterTests.cs │ │ │ ├── RegulationUsageTests.cs │ │ │ ├── RestAuthCommonResponseTests.cs │ │ │ ├── ReviewStatusDetailGroupDataTests.cs │ │ │ ├── ReviewStatusDetailTests.cs │ │ │ ├── ReviewStatusGroupTests.cs │ │ │ ├── ReviewStatusTests.cs │ │ │ ├── SelectProjectsRequestTests.cs │ │ │ ├── SelectProjectsResponseTests.cs │ │ │ ├── SendClusterToProjectRequestTests.cs │ │ │ ├── SetProjectAnnotationsStatusAsyncResponseTests.cs │ │ │ ├── SetProjectAnnotationsStatusRequestTests.cs │ │ │ ├── SetProjectDocumentsStatusRequestTests.cs │ │ │ ├── SimilarProjectTextUnitsRequestTests.cs │ │ │ ├── SimilarityFormTests.cs │ │ │ ├── SimilarityPOSTObjectResponseTests.cs │ │ │ ├── SimilarityRunTests.cs │ │ │ ├── SocialAccountsResponseSocialAccountsTests.cs │ │ │ ├── SocialAccountsResponseTests.cs │ │ │ ├── SocialClientListTests.cs │ │ │ ├── SocialClientListUrlsTests.cs │ │ │ ├── SocialLoginTests.cs │ │ │ ├── TaskIdResponseTests.cs │ │ │ ├── TaskLogResponseRecordsTests.cs │ │ │ ├── TaskLogResponseTests.cs │ │ │ ├── TaskQueueDocumentsDataInnerTests.cs │ │ │ ├── TaskQueueDocumentsDataTests.cs │ │ │ ├── TaskQueueReviewersDataInnerTests.cs │ │ │ ├── TaskQueueReviewersDataTests.cs │ │ │ ├── TaskQueueTests.cs │ │ │ ├── TaskTests.cs │ │ │ ├── TermTagTests.cs │ │ │ ├── TermUsageTests.cs │ │ │ ├── TextUnitClassificationCreateTests.cs │ │ │ ├── TextUnitClassificationTests.cs │ │ │ ├── TextUnitClassifierSuggestionTests.cs │ │ │ ├── TextUnitClassifierTests.cs │ │ │ ├── TextUnitClusterTests.cs │ │ │ ├── TextUnitDjangoQLTests.cs │ │ │ ├── TextUnitSimilarityByFeaturesFormTests.cs │ │ │ ├── TextUnitSimilarityTests.cs │ │ │ ├── TrademarkUsageTests.cs │ │ │ ├── TransformerTests.cs │ │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400ResponseTests.cs │ │ │ ├── TypeaheadTests.cs │ │ │ ├── UpdateProjectDocumentsFieldsRequestTests.cs │ │ │ ├── UpdateProjectDocumentsFieldsResponseTests.cs │ │ │ ├── UploadSessionBatchUploadRequestTests.cs │ │ │ ├── UploadSessionCreateTests.cs │ │ │ ├── UploadSessionDeleteFileRequestTests.cs │ │ │ ├── UploadSessionDetailTests.cs │ │ │ ├── UploadSessionUpdateTests.cs │ │ │ ├── UploadTests.cs │ │ │ ├── UrlUsageTests.cs │ │ │ ├── UserProfileTests.cs │ │ │ ├── UserStatsTests.cs │ │ │ ├── UserTests.cs │ │ │ ├── VerifyAuthTokenRequestTests.cs │ │ │ ├── VerifyAuthTokenResponseTests.cs │ │ │ ├── VerifyEmailTests.cs │ │ │ ├── WebNotificationDetailNotificationTests.cs │ │ │ └── WebNotificationDetailTests.cs │ │ ├── Org.OpenAPITools.Test.csproj │ │ └── packages.config │ ├── java/ │ │ ├── java.conf │ │ └── sdk/ │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── maven.yml │ │ ├── .gitignore │ │ ├── .openapi-generator/ │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .openapi-generator-ignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api/ │ │ │ └── openapi.yaml │ │ ├── build.gradle │ │ ├── build.sbt │ │ ├── docs/ │ │ │ ├── AccessTokenSchema.md │ │ │ ├── Action.md │ │ │ ├── AmountUsage.md │ │ │ ├── AnalyzeApi.md │ │ │ ├── Annotation.md │ │ │ ├── AnnotationBatchRequest.md │ │ │ ├── AnnotationBatchResponse.md │ │ │ ├── AnnotationInDocument.md │ │ │ ├── AnnotationSuggestRequest.md │ │ │ ├── AnnotationUpdateResponse.md │ │ │ ├── ApiApi.md │ │ │ ├── AppVar.md │ │ │ ├── AssignProjectAnnotationsRequest.md │ │ │ ├── AssignProjectDocumentRequest.md │ │ │ ├── AssignProjectDocumentsRequest.md │ │ │ ├── CheckDocumentFieldFormulaRequest.md │ │ │ ├── CheckNewDocumentFieldFormulaRequest.md │ │ │ ├── CitationUsage.md │ │ │ ├── CleanupProjectRequest.md │ │ │ ├── CloneDocumentFieldRequest.md │ │ │ ├── CloneDocumentTypeRequest.md │ │ │ ├── ClusterProjectRequest.md │ │ │ ├── ClusterProjectResponse.md │ │ │ ├── Code.md │ │ │ ├── CommonApi.md │ │ │ ├── CopyrightUsage.md │ │ │ ├── CountSuccessResponse.md │ │ │ ├── CourtUsage.md │ │ │ ├── CurrencyUsage.md │ │ │ ├── CustomPasswordChange.md │ │ │ ├── CustomPasswordReset.md │ │ │ ├── CustomPasswordResetConfirm.md │ │ │ ├── DateDurationUsage.md │ │ │ ├── DateUsage.md │ │ │ ├── DateUsageCalendar.md │ │ │ ├── DateUsageTimeline.md │ │ │ ├── DefinitionUsage.md │ │ │ ├── DetectProjectFieldValuesRequest.md │ │ │ ├── DistanceUsage.md │ │ │ ├── DocumentApi.md │ │ │ ├── DocumentCluster.md │ │ │ ├── DocumentClusterDocumentData.md │ │ │ ├── DocumentClusterDocumentDataInner.md │ │ │ ├── DocumentClusterUpdate.md │ │ │ ├── DocumentDefinitions.md │ │ │ ├── DocumentDetail.md │ │ │ ├── DocumentDetailAssigneeData.md │ │ │ ├── DocumentDetailAvailableAssigneesData.md │ │ │ ├── DocumentDetailAvailableAssigneesDataInner.md │ │ │ ├── DocumentDetailNotes.md │ │ │ ├── DocumentDetailStatusData.md │ │ │ ├── DocumentDetailUser.md │ │ │ ├── DocumentDocumentsDownloadZipGET404Response.md │ │ │ ├── DocumentDownloadZipResponse.md │ │ │ ├── DocumentFieldAnnotation.md │ │ │ ├── DocumentFieldCategoryCreate.md │ │ │ ├── DocumentFieldCategoryList.md │ │ │ ├── DocumentFieldCategoryListFields.md │ │ │ ├── DocumentFieldCategoryListFieldsInner.md │ │ │ ├── DocumentFieldCreate.md │ │ │ ├── DocumentFieldDetail.md │ │ │ ├── DocumentFieldDetectorCreate.md │ │ │ ├── DocumentFieldDetectorDetail.md │ │ │ ├── DocumentFieldList.md │ │ │ ├── DocumentFieldListCategory.md │ │ │ ├── DocumentFieldListFamily.md │ │ │ ├── DocumentFieldStatsResponse.md │ │ │ ├── DocumentFieldValue.md │ │ │ ├── DocumentNoteCreate.md │ │ │ ├── DocumentNoteDetail.md │ │ │ ├── DocumentNoteDetailUser.md │ │ │ ├── DocumentNoteUpdate.md │ │ │ ├── DocumentPDFRepr.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequest.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInner.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponse.md │ │ │ ├── DocumentSimilarity.md │ │ │ ├── DocumentSimilarityByFeaturesForm.md │ │ │ ├── DocumentSimilarityRun.md │ │ │ ├── DocumentTypeCreate.md │ │ │ ├── DocumentTypeDetail.md │ │ │ ├── DocumentTypeDetailCategories.md │ │ │ ├── DocumentTypeDetailCategoriesInner.md │ │ │ ├── DocumentTypeDetailFieldsData.md │ │ │ ├── DocumentTypeDetailFieldsDataInner.md │ │ │ ├── DocumentTypeForStats.md │ │ │ ├── DocumentTypeImportRequest.md │ │ │ ├── DocumentTypeImportResponse.md │ │ │ ├── DocumentTypeStats.md │ │ │ ├── DocumentTypeStatsData.md │ │ │ ├── DocumentsForUser.md │ │ │ ├── DocumentsForUserResponse.md │ │ │ ├── DocumentsForUserResponseData.md │ │ │ ├── DocumentsForUserResponseDataInner.md │ │ │ ├── DumpApi.md │ │ │ ├── DumpDocumentConfigGET200Response.md │ │ │ ├── DumpFixture.md │ │ │ ├── DumpPUTErrorResponse.md │ │ │ ├── ExtractApi.md │ │ │ ├── FieldAnnotationStatus.md │ │ │ ├── GeoAliasUsage.md │ │ │ ├── GeoEntityList.md │ │ │ ├── GeoEntityUpdate.md │ │ │ ├── GeoEntityUsage.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse4041.md │ │ │ ├── LoadFixture.md │ │ │ ├── LocateItemsRequest.md │ │ │ ├── LoggingAPIViewRequest.md │ │ │ ├── LoggingApi.md │ │ │ ├── Login.md │ │ │ ├── LoginResponse.md │ │ │ ├── MLModel.md │ │ │ ├── MarkForSeenWebNotificationRequest.md │ │ │ ├── MarkForSeenWebNotificationResponse.md │ │ │ ├── MarkUnmarkForDeleteDocumentsRequest.md │ │ │ ├── MarkUnmarkForDeleteDocumentsResponse.md │ │ │ ├── MarkUnmarkForDeleteProjectsReponse.md │ │ │ ├── MarkUnmarkForDeleteProjectsRequest.md │ │ │ ├── MediaDataApi.md │ │ │ ├── MenuGroup.md │ │ │ ├── MenuItem.md │ │ │ ├── NotificationsApi.md │ │ │ ├── Party.md │ │ │ ├── PartySimilarity.md │ │ │ ├── PartySimilarityForm.md │ │ │ ├── PartyUsage.md │ │ │ ├── PercentUsage.md │ │ │ ├── ProjectActiveTasks.md │ │ │ ├── ProjectActiveTasksTasks.md │ │ │ ├── ProjectAnnotationsAssigneesResponse.md │ │ │ ├── ProjectApi.md │ │ │ ├── ProjectAppVar.md │ │ │ ├── ProjectClustering.md │ │ │ ├── ProjectClusteringDocumentClusters.md │ │ │ ├── ProjectClusteringDocumentClustersInner.md │ │ │ ├── ProjectClusteringStatusResponse.md │ │ │ ├── ProjectCreate.md │ │ │ ├── ProjectDetail.md │ │ │ ├── ProjectDetailOwnersData.md │ │ │ ├── ProjectDetailOwnersDataInner.md │ │ │ ├── ProjectDocumentSimilarity.md │ │ │ ├── ProjectDocumentSimilarityResponse.md │ │ │ ├── ProjectDocumentSimilarityResponseData.md │ │ │ ├── ProjectDocumentSimilarityResponseDataInner.md │ │ │ ├── ProjectDocumentsAssigneesResponse.md │ │ │ ├── ProjectDocumentsSimilarityByVectorsForm.md │ │ │ ├── ProjectList.md │ │ │ ├── ProjectListStatusData.md │ │ │ ├── ProjectListTypeData.md │ │ │ ├── ProjectProgressResponse.md │ │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404Response.md │ │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200Response.md │ │ │ ├── ProjectSearchSimilarDocumentsRequest.md │ │ │ ├── ProjectSearchSimilarTextUnitsRequest.md │ │ │ ├── ProjectStats.md │ │ │ ├── ProjectTasks.md │ │ │ ├── ProjectTextUnitSimilarity.md │ │ │ ├── ProjectTextUnitsSimilarityByVectorsForm.md │ │ │ ├── ProjectUpdate.md │ │ │ ├── ProjectUploadSessionFilesResponse.md │ │ │ ├── ProjectUploadSessionPOSTResponse.md │ │ │ ├── ProjectUploadSessionProgressResponse.md │ │ │ ├── RatioUsage.md │ │ │ ├── RawdbApi.md │ │ │ ├── RawdbDocumentsPOSTRequest.md │ │ │ ├── Register.md │ │ │ ├── RegulationUsage.md │ │ │ ├── RestAuthApi.md │ │ │ ├── RestAuthCommonResponse.md │ │ │ ├── ReviewStatus.md │ │ │ ├── ReviewStatusDetail.md │ │ │ ├── ReviewStatusDetailGroupData.md │ │ │ ├── ReviewStatusGroup.md │ │ │ ├── SelectProjectsRequest.md │ │ │ ├── SelectProjectsResponse.md │ │ │ ├── SendClusterToProjectRequest.md │ │ │ ├── SetProjectAnnotationsStatusAsyncResponse.md │ │ │ ├── SetProjectAnnotationsStatusRequest.md │ │ │ ├── SetProjectDocumentsStatusRequest.md │ │ │ ├── SimilarProjectTextUnitsRequest.md │ │ │ ├── SimilarityApi.md │ │ │ ├── SimilarityForm.md │ │ │ ├── SimilarityPOSTObjectResponse.md │ │ │ ├── SimilarityRun.md │ │ │ ├── SocialAccountsResponse.md │ │ │ ├── SocialAccountsResponseSocialAccounts.md │ │ │ ├── SocialClientList.md │ │ │ ├── SocialClientListUrls.md │ │ │ ├── SocialLogin.md │ │ │ ├── Task.md │ │ │ ├── TaskApi.md │ │ │ ├── TaskIdResponse.md │ │ │ ├── TaskLogResponse.md │ │ │ ├── TaskLogResponseRecords.md │ │ │ ├── TaskQueue.md │ │ │ ├── TaskQueueDocumentsData.md │ │ │ ├── TaskQueueDocumentsDataInner.md │ │ │ ├── TaskQueueReviewersData.md │ │ │ ├── TaskQueueReviewersDataInner.md │ │ │ ├── TermTag.md │ │ │ ├── TermUsage.md │ │ │ ├── TextUnitClassification.md │ │ │ ├── TextUnitClassificationCreate.md │ │ │ ├── TextUnitClassifier.md │ │ │ ├── TextUnitClassifierSuggestion.md │ │ │ ├── TextUnitCluster.md │ │ │ ├── TextUnitDjangoQL.md │ │ │ ├── TextUnitSimilarity.md │ │ │ ├── TextUnitSimilarityByFeaturesForm.md │ │ │ ├── TrademarkUsage.md │ │ │ ├── Transformer.md │ │ │ ├── TusApi.md │ │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400Response.md │ │ │ ├── Typeahead.md │ │ │ ├── UpdateProjectDocumentsFieldsRequest.md │ │ │ ├── UpdateProjectDocumentsFieldsResponse.md │ │ │ ├── Upload.md │ │ │ ├── UploadSessionBatchUploadRequest.md │ │ │ ├── UploadSessionCreate.md │ │ │ ├── UploadSessionDeleteFileRequest.md │ │ │ ├── UploadSessionDetail.md │ │ │ ├── UploadSessionUpdate.md │ │ │ ├── UrlUsage.md │ │ │ ├── User.md │ │ │ ├── UserProfile.md │ │ │ ├── UserStats.md │ │ │ ├── UsersApi.md │ │ │ ├── V1Api.md │ │ │ ├── VarApi.md │ │ │ ├── VerifyAuthTokenRequest.md │ │ │ ├── VerifyAuthTokenResponse.md │ │ │ ├── VerifyEmail.md │ │ │ ├── WebNotificationDetail.md │ │ │ └── WebNotificationDetailNotification.md │ │ ├── git_push.sh │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ ├── settings.gradle │ │ └── src/ │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── org/ │ │ │ └── openapitools/ │ │ │ └── client/ │ │ │ ├── ApiCallback.java │ │ │ ├── ApiClient.java │ │ │ ├── ApiException.java │ │ │ ├── ApiResponse.java │ │ │ ├── Configuration.java │ │ │ ├── GzipRequestInterceptor.java │ │ │ ├── JSON.java │ │ │ ├── Pair.java │ │ │ ├── ProgressRequestBody.java │ │ │ ├── ProgressResponseBody.java │ │ │ ├── ServerConfiguration.java │ │ │ ├── ServerVariable.java │ │ │ ├── StringUtil.java │ │ │ ├── api/ │ │ │ │ ├── AnalyzeApi.java │ │ │ │ ├── ApiApi.java │ │ │ │ ├── CommonApi.java │ │ │ │ ├── DocumentApi.java │ │ │ │ ├── DumpApi.java │ │ │ │ ├── ExtractApi.java │ │ │ │ ├── LoggingApi.java │ │ │ │ ├── MediaDataApi.java │ │ │ │ ├── NotificationsApi.java │ │ │ │ ├── ProjectApi.java │ │ │ │ ├── RawdbApi.java │ │ │ │ ├── RestAuthApi.java │ │ │ │ ├── SimilarityApi.java │ │ │ │ ├── TaskApi.java │ │ │ │ ├── TusApi.java │ │ │ │ ├── UsersApi.java │ │ │ │ ├── V1Api.java │ │ │ │ └── VarApi.java │ │ │ ├── auth/ │ │ │ │ ├── ApiKeyAuth.java │ │ │ │ ├── Authentication.java │ │ │ │ ├── HttpBasicAuth.java │ │ │ │ └── HttpBearerAuth.java │ │ │ └── model/ │ │ │ ├── AbstractOpenApiSchema.java │ │ │ ├── AccessTokenSchema.java │ │ │ ├── Action.java │ │ │ ├── AmountUsage.java │ │ │ ├── Annotation.java │ │ │ ├── AnnotationBatchRequest.java │ │ │ ├── AnnotationBatchResponse.java │ │ │ ├── AnnotationInDocument.java │ │ │ ├── AnnotationSuggestRequest.java │ │ │ ├── AnnotationUpdateResponse.java │ │ │ ├── AppVar.java │ │ │ ├── AssignProjectAnnotationsRequest.java │ │ │ ├── AssignProjectDocumentRequest.java │ │ │ ├── AssignProjectDocumentsRequest.java │ │ │ ├── CheckDocumentFieldFormulaRequest.java │ │ │ ├── CheckNewDocumentFieldFormulaRequest.java │ │ │ ├── CitationUsage.java │ │ │ ├── CleanupProjectRequest.java │ │ │ ├── CloneDocumentFieldRequest.java │ │ │ ├── CloneDocumentTypeRequest.java │ │ │ ├── ClusterProjectRequest.java │ │ │ ├── ClusterProjectResponse.java │ │ │ ├── Code.java │ │ │ ├── CopyrightUsage.java │ │ │ ├── CountSuccessResponse.java │ │ │ ├── CourtUsage.java │ │ │ ├── CurrencyUsage.java │ │ │ ├── CustomPasswordChange.java │ │ │ ├── CustomPasswordReset.java │ │ │ ├── CustomPasswordResetConfirm.java │ │ │ ├── DateDurationUsage.java │ │ │ ├── DateUsage.java │ │ │ ├── DateUsageCalendar.java │ │ │ ├── DateUsageTimeline.java │ │ │ ├── DefinitionUsage.java │ │ │ ├── DetectProjectFieldValuesRequest.java │ │ │ ├── DistanceUsage.java │ │ │ ├── DocumentCluster.java │ │ │ ├── DocumentClusterDocumentData.java │ │ │ ├── DocumentClusterDocumentDataInner.java │ │ │ ├── DocumentClusterUpdate.java │ │ │ ├── DocumentDefinitions.java │ │ │ ├── DocumentDetail.java │ │ │ ├── DocumentDetailAssigneeData.java │ │ │ ├── DocumentDetailAvailableAssigneesData.java │ │ │ ├── DocumentDetailAvailableAssigneesDataInner.java │ │ │ ├── DocumentDetailNotes.java │ │ │ ├── DocumentDetailStatusData.java │ │ │ ├── DocumentDetailUser.java │ │ │ ├── DocumentDocumentsDownloadZipGET404Response.java │ │ │ ├── DocumentDownloadZipResponse.java │ │ │ ├── DocumentFieldAnnotation.java │ │ │ ├── DocumentFieldCategoryCreate.java │ │ │ ├── DocumentFieldCategoryList.java │ │ │ ├── DocumentFieldCategoryListFields.java │ │ │ ├── DocumentFieldCategoryListFieldsInner.java │ │ │ ├── DocumentFieldCreate.java │ │ │ ├── DocumentFieldDetail.java │ │ │ ├── DocumentFieldDetectorCreate.java │ │ │ ├── DocumentFieldDetectorDetail.java │ │ │ ├── DocumentFieldList.java │ │ │ ├── DocumentFieldListCategory.java │ │ │ ├── DocumentFieldListFamily.java │ │ │ ├── DocumentFieldStatsResponse.java │ │ │ ├── DocumentFieldValue.java │ │ │ ├── DocumentNoteCreate.java │ │ │ ├── DocumentNoteDetail.java │ │ │ ├── DocumentNoteDetailUser.java │ │ │ ├── DocumentNoteUpdate.java │ │ │ ├── DocumentPDFRepr.java │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequest.java │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInner.java │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponse.java │ │ │ ├── DocumentSimilarity.java │ │ │ ├── DocumentSimilarityByFeaturesForm.java │ │ │ ├── DocumentSimilarityRun.java │ │ │ ├── DocumentTypeCreate.java │ │ │ ├── DocumentTypeDetail.java │ │ │ ├── DocumentTypeDetailCategories.java │ │ │ ├── DocumentTypeDetailCategoriesInner.java │ │ │ ├── DocumentTypeDetailFieldsData.java │ │ │ ├── DocumentTypeDetailFieldsDataInner.java │ │ │ ├── DocumentTypeForStats.java │ │ │ ├── DocumentTypeImportRequest.java │ │ │ ├── DocumentTypeImportResponse.java │ │ │ ├── DocumentTypeStats.java │ │ │ ├── DocumentTypeStatsData.java │ │ │ ├── DocumentsForUser.java │ │ │ ├── DocumentsForUserResponse.java │ │ │ ├── DocumentsForUserResponseData.java │ │ │ ├── DocumentsForUserResponseDataInner.java │ │ │ ├── DumpDocumentConfigGET200Response.java │ │ │ ├── DumpFixture.java │ │ │ ├── DumpPUTErrorResponse.java │ │ │ ├── FieldAnnotationStatus.java │ │ │ ├── GeoAliasUsage.java │ │ │ ├── GeoEntityList.java │ │ │ ├── GeoEntityUpdate.java │ │ │ ├── GeoEntityUsage.java │ │ │ ├── InlineResponse400.java │ │ │ ├── InlineResponse404.java │ │ │ ├── InlineResponse4041.java │ │ │ ├── LoadFixture.java │ │ │ ├── LocateItemsRequest.java │ │ │ ├── LoggingAPIViewRequest.java │ │ │ ├── Login.java │ │ │ ├── LoginResponse.java │ │ │ ├── MLModel.java │ │ │ ├── MarkForSeenWebNotificationRequest.java │ │ │ ├── MarkForSeenWebNotificationResponse.java │ │ │ ├── MarkUnmarkForDeleteDocumentsRequest.java │ │ │ ├── MarkUnmarkForDeleteDocumentsResponse.java │ │ │ ├── MarkUnmarkForDeleteProjectsReponse.java │ │ │ ├── MarkUnmarkForDeleteProjectsRequest.java │ │ │ ├── MenuGroup.java │ │ │ ├── MenuItem.java │ │ │ ├── Party.java │ │ │ ├── PartySimilarity.java │ │ │ ├── PartySimilarityForm.java │ │ │ ├── PartyUsage.java │ │ │ ├── PercentUsage.java │ │ │ ├── ProjectActiveTasks.java │ │ │ ├── ProjectActiveTasksTasks.java │ │ │ ├── ProjectAnnotationsAssigneesResponse.java │ │ │ ├── ProjectAppVar.java │ │ │ ├── ProjectClustering.java │ │ │ ├── ProjectClusteringDocumentClusters.java │ │ │ ├── ProjectClusteringDocumentClustersInner.java │ │ │ ├── ProjectClusteringStatusResponse.java │ │ │ ├── ProjectCreate.java │ │ │ ├── ProjectDetail.java │ │ │ ├── ProjectDetailOwnersData.java │ │ │ ├── ProjectDetailOwnersDataInner.java │ │ │ ├── ProjectDocumentSimilarity.java │ │ │ ├── ProjectDocumentSimilarityResponse.java │ │ │ ├── ProjectDocumentSimilarityResponseData.java │ │ │ ├── ProjectDocumentSimilarityResponseDataInner.java │ │ │ ├── ProjectDocumentsAssigneesResponse.java │ │ │ ├── ProjectDocumentsSimilarityByVectorsForm.java │ │ │ ├── ProjectList.java │ │ │ ├── ProjectListStatusData.java │ │ │ ├── ProjectListTypeData.java │ │ │ ├── ProjectProgressResponse.java │ │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404Response.java │ │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200Response.java │ │ │ ├── ProjectSearchSimilarDocumentsRequest.java │ │ │ ├── ProjectSearchSimilarTextUnitsRequest.java │ │ │ ├── ProjectStats.java │ │ │ ├── ProjectTasks.java │ │ │ ├── ProjectTextUnitSimilarity.java │ │ │ ├── ProjectTextUnitsSimilarityByVectorsForm.java │ │ │ ├── ProjectUpdate.java │ │ │ ├── ProjectUploadSessionFilesResponse.java │ │ │ ├── ProjectUploadSessionPOSTResponse.java │ │ │ ├── ProjectUploadSessionProgressResponse.java │ │ │ ├── RatioUsage.java │ │ │ ├── RawdbDocumentsPOSTRequest.java │ │ │ ├── Register.java │ │ │ ├── RegulationUsage.java │ │ │ ├── RestAuthCommonResponse.java │ │ │ ├── ReviewStatus.java │ │ │ ├── ReviewStatusDetail.java │ │ │ ├── ReviewStatusDetailGroupData.java │ │ │ ├── ReviewStatusGroup.java │ │ │ ├── SelectProjectsRequest.java │ │ │ ├── SelectProjectsResponse.java │ │ │ ├── SendClusterToProjectRequest.java │ │ │ ├── SetProjectAnnotationsStatusAsyncResponse.java │ │ │ ├── SetProjectAnnotationsStatusRequest.java │ │ │ ├── SetProjectDocumentsStatusRequest.java │ │ │ ├── SimilarProjectTextUnitsRequest.java │ │ │ ├── SimilarityForm.java │ │ │ ├── SimilarityPOSTObjectResponse.java │ │ │ ├── SimilarityRun.java │ │ │ ├── SocialAccountsResponse.java │ │ │ ├── SocialAccountsResponseSocialAccounts.java │ │ │ ├── SocialClientList.java │ │ │ ├── SocialClientListUrls.java │ │ │ ├── SocialLogin.java │ │ │ ├── Task.java │ │ │ ├── TaskIdResponse.java │ │ │ ├── TaskLogResponse.java │ │ │ ├── TaskLogResponseRecords.java │ │ │ ├── TaskQueue.java │ │ │ ├── TaskQueueDocumentsData.java │ │ │ ├── TaskQueueDocumentsDataInner.java │ │ │ ├── TaskQueueReviewersData.java │ │ │ ├── TaskQueueReviewersDataInner.java │ │ │ ├── TermTag.java │ │ │ ├── TermUsage.java │ │ │ ├── TextUnitClassification.java │ │ │ ├── TextUnitClassificationCreate.java │ │ │ ├── TextUnitClassifier.java │ │ │ ├── TextUnitClassifierSuggestion.java │ │ │ ├── TextUnitCluster.java │ │ │ ├── TextUnitDjangoQL.java │ │ │ ├── TextUnitSimilarity.java │ │ │ ├── TextUnitSimilarityByFeaturesForm.java │ │ │ ├── TrademarkUsage.java │ │ │ ├── Transformer.java │ │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400Response.java │ │ │ ├── Typeahead.java │ │ │ ├── UpdateProjectDocumentsFieldsRequest.java │ │ │ ├── UpdateProjectDocumentsFieldsResponse.java │ │ │ ├── Upload.java │ │ │ ├── UploadSessionBatchUploadRequest.java │ │ │ ├── UploadSessionCreate.java │ │ │ ├── UploadSessionDeleteFileRequest.java │ │ │ ├── UploadSessionDetail.java │ │ │ ├── UploadSessionUpdate.java │ │ │ ├── UrlUsage.java │ │ │ ├── User.java │ │ │ ├── UserProfile.java │ │ │ ├── UserStats.java │ │ │ ├── VerifyAuthTokenRequest.java │ │ │ ├── VerifyAuthTokenResponse.java │ │ │ ├── VerifyEmail.java │ │ │ ├── WebNotificationDetail.java │ │ │ └── WebNotificationDetailNotification.java │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── openapitools/ │ │ └── client/ │ │ ├── api/ │ │ │ ├── AnalyzeApiTest.java │ │ │ ├── ApiApiTest.java │ │ │ ├── CommonApiTest.java │ │ │ ├── DocumentApiTest.java │ │ │ ├── DumpApiTest.java │ │ │ ├── ExtractApiTest.java │ │ │ ├── LoggingApiTest.java │ │ │ ├── MediaDataApiTest.java │ │ │ ├── NotificationsApiTest.java │ │ │ ├── ProjectApiTest.java │ │ │ ├── RawdbApiTest.java │ │ │ ├── RestAuthApiTest.java │ │ │ ├── SimilarityApiTest.java │ │ │ ├── TaskApiTest.java │ │ │ ├── TusApiTest.java │ │ │ ├── UsersApiTest.java │ │ │ ├── V1ApiTest.java │ │ │ └── VarApiTest.java │ │ └── model/ │ │ ├── AccessTokenSchemaTest.java │ │ ├── ActionTest.java │ │ ├── AmountUsageTest.java │ │ ├── AnnotationBatchRequestTest.java │ │ ├── AnnotationBatchResponseTest.java │ │ ├── AnnotationInDocumentTest.java │ │ ├── AnnotationSuggestRequestTest.java │ │ ├── AnnotationTest.java │ │ ├── AnnotationUpdateResponseTest.java │ │ ├── AppVarTest.java │ │ ├── AssignProjectAnnotationsRequestTest.java │ │ ├── AssignProjectDocumentRequestTest.java │ │ ├── AssignProjectDocumentsRequestTest.java │ │ ├── CheckDocumentFieldFormulaRequestTest.java │ │ ├── CheckNewDocumentFieldFormulaRequestTest.java │ │ ├── CitationUsageTest.java │ │ ├── CleanupProjectRequestTest.java │ │ ├── CloneDocumentFieldRequestTest.java │ │ ├── CloneDocumentTypeRequestTest.java │ │ ├── ClusterProjectRequestTest.java │ │ ├── ClusterProjectResponseTest.java │ │ ├── CodeTest.java │ │ ├── CopyrightUsageTest.java │ │ ├── CountSuccessResponseTest.java │ │ ├── CourtUsageTest.java │ │ ├── CurrencyUsageTest.java │ │ ├── CustomPasswordChangeTest.java │ │ ├── CustomPasswordResetConfirmTest.java │ │ ├── CustomPasswordResetTest.java │ │ ├── DateDurationUsageTest.java │ │ ├── DateUsageCalendarTest.java │ │ ├── DateUsageTest.java │ │ ├── DateUsageTimelineTest.java │ │ ├── DefinitionUsageTest.java │ │ ├── DetectProjectFieldValuesRequestTest.java │ │ ├── DistanceUsageTest.java │ │ ├── DocumentClusterDocumentDataInnerTest.java │ │ ├── DocumentClusterDocumentDataTest.java │ │ ├── DocumentClusterTest.java │ │ ├── DocumentClusterUpdateTest.java │ │ ├── DocumentDefinitionsTest.java │ │ ├── DocumentDetailAssigneeDataTest.java │ │ ├── DocumentDetailAvailableAssigneesDataInnerTest.java │ │ ├── DocumentDetailAvailableAssigneesDataTest.java │ │ ├── DocumentDetailNotesTest.java │ │ ├── DocumentDetailStatusDataTest.java │ │ ├── DocumentDetailTest.java │ │ ├── DocumentDetailUserTest.java │ │ ├── DocumentDocumentsDownloadZipGET404ResponseTest.java │ │ ├── DocumentDownloadZipResponseTest.java │ │ ├── DocumentFieldAnnotationTest.java │ │ ├── DocumentFieldCategoryCreateTest.java │ │ ├── DocumentFieldCategoryListFieldsInnerTest.java │ │ ├── DocumentFieldCategoryListFieldsTest.java │ │ ├── DocumentFieldCategoryListTest.java │ │ ├── DocumentFieldCreateTest.java │ │ ├── DocumentFieldDetailTest.java │ │ ├── DocumentFieldDetectorCreateTest.java │ │ ├── DocumentFieldDetectorDetailTest.java │ │ ├── DocumentFieldListCategoryTest.java │ │ ├── DocumentFieldListFamilyTest.java │ │ ├── DocumentFieldListTest.java │ │ ├── DocumentFieldStatsResponseTest.java │ │ ├── DocumentFieldValueTest.java │ │ ├── DocumentNoteCreateTest.java │ │ ├── DocumentNoteDetailTest.java │ │ ├── DocumentNoteDetailUserTest.java │ │ ├── DocumentNoteUpdateTest.java │ │ ├── DocumentPDFReprTest.java │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInnerTest.java │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestTest.java │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponseTest.java │ │ ├── DocumentSimilarityByFeaturesFormTest.java │ │ ├── DocumentSimilarityRunTest.java │ │ ├── DocumentSimilarityTest.java │ │ ├── DocumentTypeCreateTest.java │ │ ├── DocumentTypeDetailCategoriesInnerTest.java │ │ ├── DocumentTypeDetailCategoriesTest.java │ │ ├── DocumentTypeDetailFieldsDataInnerTest.java │ │ ├── DocumentTypeDetailFieldsDataTest.java │ │ ├── DocumentTypeDetailTest.java │ │ ├── DocumentTypeForStatsTest.java │ │ ├── DocumentTypeImportRequestTest.java │ │ ├── DocumentTypeImportResponseTest.java │ │ ├── DocumentTypeStatsDataTest.java │ │ ├── DocumentTypeStatsTest.java │ │ ├── DocumentsForUserResponseDataInnerTest.java │ │ ├── DocumentsForUserResponseDataTest.java │ │ ├── DocumentsForUserResponseTest.java │ │ ├── DocumentsForUserTest.java │ │ ├── DumpDocumentConfigGET200ResponseTest.java │ │ ├── DumpFixtureTest.java │ │ ├── DumpPUTErrorResponseTest.java │ │ ├── FieldAnnotationStatusTest.java │ │ ├── GeoAliasUsageTest.java │ │ ├── GeoEntityListTest.java │ │ ├── GeoEntityUpdateTest.java │ │ ├── GeoEntityUsageTest.java │ │ ├── InlineResponse400Test.java │ │ ├── InlineResponse4041Test.java │ │ ├── InlineResponse404Test.java │ │ ├── LoadFixtureTest.java │ │ ├── LocateItemsRequestTest.java │ │ ├── LoggingAPIViewRequestTest.java │ │ ├── LoginResponseTest.java │ │ ├── LoginTest.java │ │ ├── MLModelTest.java │ │ ├── MarkForSeenWebNotificationRequestTest.java │ │ ├── MarkForSeenWebNotificationResponseTest.java │ │ ├── MarkUnmarkForDeleteDocumentsRequestTest.java │ │ ├── MarkUnmarkForDeleteDocumentsResponseTest.java │ │ ├── MarkUnmarkForDeleteProjectsReponseTest.java │ │ ├── MarkUnmarkForDeleteProjectsRequestTest.java │ │ ├── MenuGroupTest.java │ │ ├── MenuItemTest.java │ │ ├── PartySimilarityFormTest.java │ │ ├── PartySimilarityTest.java │ │ ├── PartyTest.java │ │ ├── PartyUsageTest.java │ │ ├── PercentUsageTest.java │ │ ├── ProjectActiveTasksTasksTest.java │ │ ├── ProjectActiveTasksTest.java │ │ ├── ProjectAnnotationsAssigneesResponseTest.java │ │ ├── ProjectAppVarTest.java │ │ ├── ProjectClusteringDocumentClustersInnerTest.java │ │ ├── ProjectClusteringDocumentClustersTest.java │ │ ├── ProjectClusteringStatusResponseTest.java │ │ ├── ProjectClusteringTest.java │ │ ├── ProjectCreateTest.java │ │ ├── ProjectDetailOwnersDataInnerTest.java │ │ ├── ProjectDetailOwnersDataTest.java │ │ ├── ProjectDetailTest.java │ │ ├── ProjectDocumentSimilarityResponseDataInnerTest.java │ │ ├── ProjectDocumentSimilarityResponseDataTest.java │ │ ├── ProjectDocumentSimilarityResponseTest.java │ │ ├── ProjectDocumentSimilarityTest.java │ │ ├── ProjectDocumentsAssigneesResponseTest.java │ │ ├── ProjectDocumentsSimilarityByVectorsFormTest.java │ │ ├── ProjectListStatusDataTest.java │ │ ├── ProjectListTest.java │ │ ├── ProjectListTypeDataTest.java │ │ ├── ProjectProgressResponseTest.java │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404ResponseTest.java │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200ResponseTest.java │ │ ├── ProjectSearchSimilarDocumentsRequestTest.java │ │ ├── ProjectSearchSimilarTextUnitsRequestTest.java │ │ ├── ProjectStatsTest.java │ │ ├── ProjectTasksTest.java │ │ ├── ProjectTextUnitSimilarityTest.java │ │ ├── ProjectTextUnitsSimilarityByVectorsFormTest.java │ │ ├── ProjectUpdateTest.java │ │ ├── ProjectUploadSessionFilesResponseTest.java │ │ ├── ProjectUploadSessionPOSTResponseTest.java │ │ ├── ProjectUploadSessionProgressResponseTest.java │ │ ├── RatioUsageTest.java │ │ ├── RawdbDocumentsPOSTRequestTest.java │ │ ├── RegisterTest.java │ │ ├── RegulationUsageTest.java │ │ ├── RestAuthCommonResponseTest.java │ │ ├── ReviewStatusDetailGroupDataTest.java │ │ ├── ReviewStatusDetailTest.java │ │ ├── ReviewStatusGroupTest.java │ │ ├── ReviewStatusTest.java │ │ ├── SelectProjectsRequestTest.java │ │ ├── SelectProjectsResponseTest.java │ │ ├── SendClusterToProjectRequestTest.java │ │ ├── SetProjectAnnotationsStatusAsyncResponseTest.java │ │ ├── SetProjectAnnotationsStatusRequestTest.java │ │ ├── SetProjectDocumentsStatusRequestTest.java │ │ ├── SimilarProjectTextUnitsRequestTest.java │ │ ├── SimilarityFormTest.java │ │ ├── SimilarityPOSTObjectResponseTest.java │ │ ├── SimilarityRunTest.java │ │ ├── SocialAccountsResponseSocialAccountsTest.java │ │ ├── SocialAccountsResponseTest.java │ │ ├── SocialClientListTest.java │ │ ├── SocialClientListUrlsTest.java │ │ ├── SocialLoginTest.java │ │ ├── TaskIdResponseTest.java │ │ ├── TaskLogResponseRecordsTest.java │ │ ├── TaskLogResponseTest.java │ │ ├── TaskQueueDocumentsDataInnerTest.java │ │ ├── TaskQueueDocumentsDataTest.java │ │ ├── TaskQueueReviewersDataInnerTest.java │ │ ├── TaskQueueReviewersDataTest.java │ │ ├── TaskQueueTest.java │ │ ├── TaskTest.java │ │ ├── TermTagTest.java │ │ ├── TermUsageTest.java │ │ ├── TextUnitClassificationCreateTest.java │ │ ├── TextUnitClassificationTest.java │ │ ├── TextUnitClassifierSuggestionTest.java │ │ ├── TextUnitClassifierTest.java │ │ ├── TextUnitClusterTest.java │ │ ├── TextUnitDjangoQLTest.java │ │ ├── TextUnitSimilarityByFeaturesFormTest.java │ │ ├── TextUnitSimilarityTest.java │ │ ├── TrademarkUsageTest.java │ │ ├── TransformerTest.java │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400ResponseTest.java │ │ ├── TypeaheadTest.java │ │ ├── UpdateProjectDocumentsFieldsRequestTest.java │ │ ├── UpdateProjectDocumentsFieldsResponseTest.java │ │ ├── UploadSessionBatchUploadRequestTest.java │ │ ├── UploadSessionCreateTest.java │ │ ├── UploadSessionDeleteFileRequestTest.java │ │ ├── UploadSessionDetailTest.java │ │ ├── UploadSessionUpdateTest.java │ │ ├── UploadTest.java │ │ ├── UrlUsageTest.java │ │ ├── UserProfileTest.java │ │ ├── UserStatsTest.java │ │ ├── UserTest.java │ │ ├── VerifyAuthTokenRequestTest.java │ │ ├── VerifyAuthTokenResponseTest.java │ │ ├── VerifyEmailTest.java │ │ ├── WebNotificationDetailNotificationTest.java │ │ └── WebNotificationDetailTest.java │ ├── openapi_schema.json │ ├── openapitools.json │ └── python/ │ ├── python_sdk_sample.ipynb │ ├── sdk/ │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator/ │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .openapi-generator-ignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── docs/ │ │ │ ├── AccessTokenSchema.md │ │ │ ├── Action.md │ │ │ ├── AmountUsage.md │ │ │ ├── AnalyzeApi.md │ │ │ ├── Annotation.md │ │ │ ├── AnnotationBatchRequest.md │ │ │ ├── AnnotationBatchResponse.md │ │ │ ├── AnnotationInDocument.md │ │ │ ├── AnnotationSuggestRequest.md │ │ │ ├── AnnotationUpdateResponse.md │ │ │ ├── ApiApi.md │ │ │ ├── AppVar.md │ │ │ ├── AssignProjectAnnotationsRequest.md │ │ │ ├── AssignProjectDocumentRequest.md │ │ │ ├── AssignProjectDocumentsRequest.md │ │ │ ├── CheckDocumentFieldFormulaRequest.md │ │ │ ├── CheckNewDocumentFieldFormulaRequest.md │ │ │ ├── CitationUsage.md │ │ │ ├── CleanupProjectRequest.md │ │ │ ├── CloneDocumentFieldRequest.md │ │ │ ├── CloneDocumentTypeRequest.md │ │ │ ├── ClusterProjectRequest.md │ │ │ ├── ClusterProjectResponse.md │ │ │ ├── Code.md │ │ │ ├── CommonApi.md │ │ │ ├── CopyrightUsage.md │ │ │ ├── CountSuccessResponse.md │ │ │ ├── CourtUsage.md │ │ │ ├── CurrencyUsage.md │ │ │ ├── CustomPasswordChange.md │ │ │ ├── CustomPasswordReset.md │ │ │ ├── CustomPasswordResetConfirm.md │ │ │ ├── DateDurationUsage.md │ │ │ ├── DateUsage.md │ │ │ ├── DateUsageCalendar.md │ │ │ ├── DateUsageTimeline.md │ │ │ ├── DefinitionUsage.md │ │ │ ├── DetectProjectFieldValuesRequest.md │ │ │ ├── DistanceUsage.md │ │ │ ├── DocumentApi.md │ │ │ ├── DocumentCluster.md │ │ │ ├── DocumentClusterDocumentData.md │ │ │ ├── DocumentClusterDocumentDataInner.md │ │ │ ├── DocumentClusterUpdate.md │ │ │ ├── DocumentDefinitions.md │ │ │ ├── DocumentDetail.md │ │ │ ├── DocumentDetailAssigneeData.md │ │ │ ├── DocumentDetailAvailableAssigneesData.md │ │ │ ├── DocumentDetailAvailableAssigneesDataInner.md │ │ │ ├── DocumentDetailNotes.md │ │ │ ├── DocumentDetailStatusData.md │ │ │ ├── DocumentDetailUser.md │ │ │ ├── DocumentDocumentsDownloadZipGET404Response.md │ │ │ ├── DocumentDownloadZipResponse.md │ │ │ ├── DocumentFieldAnnotation.md │ │ │ ├── DocumentFieldCategoryCreate.md │ │ │ ├── DocumentFieldCategoryList.md │ │ │ ├── DocumentFieldCategoryListFields.md │ │ │ ├── DocumentFieldCategoryListFieldsInner.md │ │ │ ├── DocumentFieldCreate.md │ │ │ ├── DocumentFieldDetail.md │ │ │ ├── DocumentFieldDetectorCreate.md │ │ │ ├── DocumentFieldDetectorDetail.md │ │ │ ├── DocumentFieldList.md │ │ │ ├── DocumentFieldListCategory.md │ │ │ ├── DocumentFieldListFamily.md │ │ │ ├── DocumentFieldStatsResponse.md │ │ │ ├── DocumentFieldValue.md │ │ │ ├── DocumentNoteCreate.md │ │ │ ├── DocumentNoteDetail.md │ │ │ ├── DocumentNoteDetailUser.md │ │ │ ├── DocumentNoteUpdate.md │ │ │ ├── DocumentPDFRepr.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequest.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceRequestFirstLettersInner.md │ │ │ ├── DocumentSetAnnotatorCoordinatesDifferenceResponse.md │ │ │ ├── DocumentSimilarity.md │ │ │ ├── DocumentSimilarityByFeaturesForm.md │ │ │ ├── DocumentSimilarityRun.md │ │ │ ├── DocumentTypeCreate.md │ │ │ ├── DocumentTypeDetail.md │ │ │ ├── DocumentTypeDetailCategories.md │ │ │ ├── DocumentTypeDetailCategoriesInner.md │ │ │ ├── DocumentTypeDetailFieldsData.md │ │ │ ├── DocumentTypeDetailFieldsDataInner.md │ │ │ ├── DocumentTypeForStats.md │ │ │ ├── DocumentTypeImportRequest.md │ │ │ ├── DocumentTypeImportResponse.md │ │ │ ├── DocumentTypeStats.md │ │ │ ├── DocumentTypeStatsData.md │ │ │ ├── DocumentsForUser.md │ │ │ ├── DocumentsForUserResponse.md │ │ │ ├── DocumentsForUserResponseData.md │ │ │ ├── DocumentsForUserResponseDataInner.md │ │ │ ├── DumpApi.md │ │ │ ├── DumpDocumentConfigGET200Response.md │ │ │ ├── DumpFixture.md │ │ │ ├── DumpPUTErrorResponse.md │ │ │ ├── ExtractApi.md │ │ │ ├── FieldAnnotationStatus.md │ │ │ ├── GeoAliasUsage.md │ │ │ ├── GeoEntityList.md │ │ │ ├── GeoEntityUpdate.md │ │ │ ├── GeoEntityUsage.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse4041.md │ │ │ ├── LoadFixture.md │ │ │ ├── LocateItemsRequest.md │ │ │ ├── LoggingAPIViewRequest.md │ │ │ ├── LoggingApi.md │ │ │ ├── Login.md │ │ │ ├── LoginResponse.md │ │ │ ├── MLModel.md │ │ │ ├── MarkForSeenWebNotificationRequest.md │ │ │ ├── MarkForSeenWebNotificationResponse.md │ │ │ ├── MarkUnmarkForDeleteDocumentsRequest.md │ │ │ ├── MarkUnmarkForDeleteDocumentsResponse.md │ │ │ ├── MarkUnmarkForDeleteProjectsReponse.md │ │ │ ├── MarkUnmarkForDeleteProjectsRequest.md │ │ │ ├── MediaDataApi.md │ │ │ ├── MenuGroup.md │ │ │ ├── MenuItem.md │ │ │ ├── NotificationsApi.md │ │ │ ├── Party.md │ │ │ ├── PartySimilarity.md │ │ │ ├── PartySimilarityForm.md │ │ │ ├── PartyUsage.md │ │ │ ├── PercentUsage.md │ │ │ ├── ProjectActiveTasks.md │ │ │ ├── ProjectActiveTasksTasks.md │ │ │ ├── ProjectAnnotationsAssigneesResponse.md │ │ │ ├── ProjectApi.md │ │ │ ├── ProjectAppVar.md │ │ │ ├── ProjectClustering.md │ │ │ ├── ProjectClusteringDocumentClusters.md │ │ │ ├── ProjectClusteringDocumentClustersInner.md │ │ │ ├── ProjectClusteringStatusResponse.md │ │ │ ├── ProjectCreate.md │ │ │ ├── ProjectDetail.md │ │ │ ├── ProjectDetailOwnersData.md │ │ │ ├── ProjectDetailOwnersDataInner.md │ │ │ ├── ProjectDocumentSimilarity.md │ │ │ ├── ProjectDocumentSimilarityResponse.md │ │ │ ├── ProjectDocumentSimilarityResponseData.md │ │ │ ├── ProjectDocumentSimilarityResponseDataInner.md │ │ │ ├── ProjectDocumentsAssigneesResponse.md │ │ │ ├── ProjectDocumentsSimilarityByVectorsForm.md │ │ │ ├── ProjectList.md │ │ │ ├── ProjectListStatusData.md │ │ │ ├── ProjectListTypeData.md │ │ │ ├── ProjectProgressResponse.md │ │ │ ├── ProjectProjectsIdAssignAnnotationsPOST404Response.md │ │ │ ├── ProjectProjectsIdSetAnnotationStatusPOST200Response.md │ │ │ ├── ProjectSearchSimilarDocumentsRequest.md │ │ │ ├── ProjectSearchSimilarTextUnitsRequest.md │ │ │ ├── ProjectStats.md │ │ │ ├── ProjectTasks.md │ │ │ ├── ProjectTextUnitSimilarity.md │ │ │ ├── ProjectTextUnitsSimilarityByVectorsForm.md │ │ │ ├── ProjectUpdate.md │ │ │ ├── ProjectUploadSessionFilesResponse.md │ │ │ ├── ProjectUploadSessionPOSTResponse.md │ │ │ ├── ProjectUploadSessionProgressResponse.md │ │ │ ├── RatioUsage.md │ │ │ ├── RawdbApi.md │ │ │ ├── RawdbDocumentsPOSTRequest.md │ │ │ ├── Register.md │ │ │ ├── RegulationUsage.md │ │ │ ├── RestAuthApi.md │ │ │ ├── RestAuthCommonResponse.md │ │ │ ├── ReviewStatus.md │ │ │ ├── ReviewStatusDetail.md │ │ │ ├── ReviewStatusDetailGroupData.md │ │ │ ├── ReviewStatusGroup.md │ │ │ ├── SelectProjectsRequest.md │ │ │ ├── SelectProjectsResponse.md │ │ │ ├── SendClusterToProjectRequest.md │ │ │ ├── SetProjectAnnotationsStatusAsyncResponse.md │ │ │ ├── SetProjectAnnotationsStatusRequest.md │ │ │ ├── SetProjectDocumentsStatusRequest.md │ │ │ ├── SimilarProjectTextUnitsRequest.md │ │ │ ├── SimilarityApi.md │ │ │ ├── SimilarityForm.md │ │ │ ├── SimilarityPOSTObjectResponse.md │ │ │ ├── SimilarityRun.md │ │ │ ├── SocialAccountsResponse.md │ │ │ ├── SocialAccountsResponseSocialAccounts.md │ │ │ ├── SocialClientList.md │ │ │ ├── SocialClientListUrls.md │ │ │ ├── SocialLogin.md │ │ │ ├── Task.md │ │ │ ├── TaskApi.md │ │ │ ├── TaskIdResponse.md │ │ │ ├── TaskLogResponse.md │ │ │ ├── TaskLogResponseRecords.md │ │ │ ├── TaskQueue.md │ │ │ ├── TaskQueueDocumentsData.md │ │ │ ├── TaskQueueDocumentsDataInner.md │ │ │ ├── TaskQueueReviewersData.md │ │ │ ├── TaskQueueReviewersDataInner.md │ │ │ ├── TermTag.md │ │ │ ├── TermUsage.md │ │ │ ├── TextUnitClassification.md │ │ │ ├── TextUnitClassificationCreate.md │ │ │ ├── TextUnitClassifier.md │ │ │ ├── TextUnitClassifierSuggestion.md │ │ │ ├── TextUnitCluster.md │ │ │ ├── TextUnitDjangoQL.md │ │ │ ├── TextUnitSimilarity.md │ │ │ ├── TextUnitSimilarityByFeaturesForm.md │ │ │ ├── TrademarkUsage.md │ │ │ ├── Transformer.md │ │ │ ├── TusApi.md │ │ │ ├── TusUploadSessionUploadSessionIdUploadPOST400Response.md │ │ │ ├── Typeahead.md │ │ │ ├── UpdateProjectDocumentsFieldsRequest.md │ │ │ ├── UpdateProjectDocumentsFieldsResponse.md │ │ │ ├── Upload.md │ │ │ ├── UploadSessionBatchUploadRequest.md │ │ │ ├── UploadSessionCreate.md │ │ │ ├── UploadSessionDeleteFileRequest.md │ │ │ ├── UploadSessionDetail.md │ │ │ ├── UploadSessionUpdate.md │ │ │ ├── UrlUsage.md │ │ │ ├── User.md │ │ │ ├── UserProfile.md │ │ │ ├── UserStats.md │ │ │ ├── UsersApi.md │ │ │ ├── V1Api.md │ │ │ ├── VarApi.md │ │ │ ├── VerifyAuthTokenRequest.md │ │ │ ├── VerifyAuthTokenResponse.md │ │ │ ├── VerifyEmail.md │ │ │ ├── WebNotificationDetail.md │ │ │ └── WebNotificationDetailNotification.md │ │ ├── git_push.sh │ │ ├── openapi_client/ │ │ │ ├── __init__.py │ │ │ ├── api/ │ │ │ │ ├── __init__.py │ │ │ │ ├── analyze_api.py │ │ │ │ ├── api_api.py │ │ │ │ ├── common_api.py │ │ │ │ ├── document_api.py │ │ │ │ ├── dump_api.py │ │ │ │ ├── extract_api.py │ │ │ │ ├── logging_api.py │ │ │ │ ├── media_data_api.py │ │ │ │ ├── notifications_api.py │ │ │ │ ├── project_api.py │ │ │ │ ├── rawdb_api.py │ │ │ │ ├── rest_auth_api.py │ │ │ │ ├── similarity_api.py │ │ │ │ ├── task_api.py │ │ │ │ ├── tus_api.py │ │ │ │ ├── users_api.py │ │ │ │ ├── v1_api.py │ │ │ │ └── var_api.py │ │ │ ├── api_client.py │ │ │ ├── apis/ │ │ │ │ └── __init__.py │ │ │ ├── configuration.py │ │ │ ├── exceptions.py │ │ │ ├── model/ │ │ │ │ ├── __init__.py │ │ │ │ ├── access_token_schema.py │ │ │ │ ├── action.py │ │ │ │ ├── amount_usage.py │ │ │ │ ├── annotation.py │ │ │ │ ├── annotation_batch_request.py │ │ │ │ ├── annotation_batch_response.py │ │ │ │ ├── annotation_in_document.py │ │ │ │ ├── annotation_suggest_request.py │ │ │ │ ├── annotation_update_response.py │ │ │ │ ├── app_var.py │ │ │ │ ├── assign_project_annotations_request.py │ │ │ │ ├── assign_project_document_request.py │ │ │ │ ├── assign_project_documents_request.py │ │ │ │ ├── check_document_field_formula_request.py │ │ │ │ ├── check_new_document_field_formula_request.py │ │ │ │ ├── citation_usage.py │ │ │ │ ├── cleanup_project_request.py │ │ │ │ ├── clone_document_field_request.py │ │ │ │ ├── clone_document_type_request.py │ │ │ │ ├── cluster_project_request.py │ │ │ │ ├── cluster_project_response.py │ │ │ │ ├── code.py │ │ │ │ ├── copyright_usage.py │ │ │ │ ├── count_success_response.py │ │ │ │ ├── court_usage.py │ │ │ │ ├── currency_usage.py │ │ │ │ ├── custom_password_change.py │ │ │ │ ├── custom_password_reset.py │ │ │ │ ├── custom_password_reset_confirm.py │ │ │ │ ├── date_duration_usage.py │ │ │ │ ├── date_usage.py │ │ │ │ ├── date_usage_calendar.py │ │ │ │ ├── date_usage_timeline.py │ │ │ │ ├── definition_usage.py │ │ │ │ ├── detect_project_field_values_request.py │ │ │ │ ├── distance_usage.py │ │ │ │ ├── document_cluster.py │ │ │ │ ├── document_cluster_document_data.py │ │ │ │ ├── document_cluster_document_data_inner.py │ │ │ │ ├── document_cluster_update.py │ │ │ │ ├── document_definitions.py │ │ │ │ ├── document_detail.py │ │ │ │ ├── document_detail_assignee_data.py │ │ │ │ ├── document_detail_available_assignees_data.py │ │ │ │ ├── document_detail_available_assignees_data_inner.py │ │ │ │ ├── document_detail_notes.py │ │ │ │ ├── document_detail_status_data.py │ │ │ │ ├── document_detail_user.py │ │ │ │ ├── document_documents_download_zip_get404_response.py │ │ │ │ ├── document_download_zip_response.py │ │ │ │ ├── document_field_annotation.py │ │ │ │ ├── document_field_category_create.py │ │ │ │ ├── document_field_category_list.py │ │ │ │ ├── document_field_category_list_fields.py │ │ │ │ ├── document_field_category_list_fields_inner.py │ │ │ │ ├── document_field_create.py │ │ │ │ ├── document_field_detail.py │ │ │ │ ├── document_field_detector_create.py │ │ │ │ ├── document_field_detector_detail.py │ │ │ │ ├── document_field_list.py │ │ │ │ ├── document_field_list_category.py │ │ │ │ ├── document_field_list_family.py │ │ │ │ ├── document_field_stats_response.py │ │ │ │ ├── document_field_value.py │ │ │ │ ├── document_note_create.py │ │ │ │ ├── document_note_detail.py │ │ │ │ ├── document_note_detail_user.py │ │ │ │ ├── document_note_update.py │ │ │ │ ├── document_pdf_repr.py │ │ │ │ ├── document_set_annotator_coordinates_difference_request.py │ │ │ │ ├── document_set_annotator_coordinates_difference_request_first_letters_inner.py │ │ │ │ ├── document_set_annotator_coordinates_difference_response.py │ │ │ │ ├── document_similarity.py │ │ │ │ ├── document_similarity_by_features_form.py │ │ │ │ ├── document_similarity_run.py │ │ │ │ ├── document_type_create.py │ │ │ │ ├── document_type_detail.py │ │ │ │ ├── document_type_detail_categories.py │ │ │ │ ├── document_type_detail_categories_inner.py │ │ │ │ ├── document_type_detail_fields_data.py │ │ │ │ ├── document_type_detail_fields_data_inner.py │ │ │ │ ├── document_type_for_stats.py │ │ │ │ ├── document_type_import_request.py │ │ │ │ ├── document_type_import_response.py │ │ │ │ ├── document_type_stats.py │ │ │ │ ├── document_type_stats_data.py │ │ │ │ ├── documents_for_user.py │ │ │ │ ├── documents_for_user_response.py │ │ │ │ ├── documents_for_user_response_data.py │ │ │ │ ├── documents_for_user_response_data_inner.py │ │ │ │ ├── dump_document_config_get200_response.py │ │ │ │ ├── dump_fixture.py │ │ │ │ ├── dump_put_error_response.py │ │ │ │ ├── field_annotation_status.py │ │ │ │ ├── geo_alias_usage.py │ │ │ │ ├── geo_entity_list.py │ │ │ │ ├── geo_entity_update.py │ │ │ │ ├── geo_entity_usage.py │ │ │ │ ├── inline_response400.py │ │ │ │ ├── inline_response404.py │ │ │ │ ├── inline_response4041.py │ │ │ │ ├── load_fixture.py │ │ │ │ ├── locate_items_request.py │ │ │ │ ├── logging_api_view_request.py │ │ │ │ ├── login.py │ │ │ │ ├── login_response.py │ │ │ │ ├── mark_for_seen_web_notification_request.py │ │ │ │ ├── mark_for_seen_web_notification_response.py │ │ │ │ ├── mark_unmark_for_delete_documents_request.py │ │ │ │ ├── mark_unmark_for_delete_documents_response.py │ │ │ │ ├── mark_unmark_for_delete_projects_reponse.py │ │ │ │ ├── mark_unmark_for_delete_projects_request.py │ │ │ │ ├── menu_group.py │ │ │ │ ├── menu_item.py │ │ │ │ ├── ml_model.py │ │ │ │ ├── party.py │ │ │ │ ├── party_similarity.py │ │ │ │ ├── party_similarity_form.py │ │ │ │ ├── party_usage.py │ │ │ │ ├── percent_usage.py │ │ │ │ ├── project_active_tasks.py │ │ │ │ ├── project_active_tasks_tasks.py │ │ │ │ ├── project_annotations_assignees_response.py │ │ │ │ ├── project_app_var.py │ │ │ │ ├── project_clustering.py │ │ │ │ ├── project_clustering_document_clusters.py │ │ │ │ ├── project_clustering_document_clusters_inner.py │ │ │ │ ├── project_clustering_status_response.py │ │ │ │ ├── project_create.py │ │ │ │ ├── project_detail.py │ │ │ │ ├── project_detail_owners_data.py │ │ │ │ ├── project_detail_owners_data_inner.py │ │ │ │ ├── project_document_similarity.py │ │ │ │ ├── project_document_similarity_response.py │ │ │ │ ├── project_document_similarity_response_data.py │ │ │ │ ├── project_document_similarity_response_data_inner.py │ │ │ │ ├── project_documents_assignees_response.py │ │ │ │ ├── project_documents_similarity_by_vectors_form.py │ │ │ │ ├── project_list.py │ │ │ │ ├── project_list_status_data.py │ │ │ │ ├── project_list_type_data.py │ │ │ │ ├── project_progress_response.py │ │ │ │ ├── project_projects_id_assign_annotations_post404_response.py │ │ │ │ ├── project_projects_id_set_annotation_status_post200_response.py │ │ │ │ ├── project_search_similar_documents_request.py │ │ │ │ ├── project_search_similar_text_units_request.py │ │ │ │ ├── project_stats.py │ │ │ │ ├── project_tasks.py │ │ │ │ ├── project_text_unit_similarity.py │ │ │ │ ├── project_text_units_similarity_by_vectors_form.py │ │ │ │ ├── project_update.py │ │ │ │ ├── project_upload_session_files_response.py │ │ │ │ ├── project_upload_session_post_response.py │ │ │ │ ├── project_upload_session_progress_response.py │ │ │ │ ├── ratio_usage.py │ │ │ │ ├── rawdb_documents_post_request.py │ │ │ │ ├── register.py │ │ │ │ ├── regulation_usage.py │ │ │ │ ├── rest_auth_common_response.py │ │ │ │ ├── review_status.py │ │ │ │ ├── review_status_detail.py │ │ │ │ ├── review_status_detail_group_data.py │ │ │ │ ├── review_status_group.py │ │ │ │ ├── select_projects_request.py │ │ │ │ ├── select_projects_response.py │ │ │ │ ├── send_cluster_to_project_request.py │ │ │ │ ├── set_project_annotations_status_async_response.py │ │ │ │ ├── set_project_annotations_status_request.py │ │ │ │ ├── set_project_documents_status_request.py │ │ │ │ ├── similar_project_text_units_request.py │ │ │ │ ├── similarity_form.py │ │ │ │ ├── similarity_post_object_response.py │ │ │ │ ├── similarity_run.py │ │ │ │ ├── social_accounts_response.py │ │ │ │ ├── social_accounts_response_social_accounts.py │ │ │ │ ├── social_client_list.py │ │ │ │ ├── social_client_list_urls.py │ │ │ │ ├── social_login.py │ │ │ │ ├── task.py │ │ │ │ ├── task_id_response.py │ │ │ │ ├── task_log_response.py │ │ │ │ ├── task_log_response_records.py │ │ │ │ ├── task_queue.py │ │ │ │ ├── task_queue_documents_data.py │ │ │ │ ├── task_queue_documents_data_inner.py │ │ │ │ ├── task_queue_reviewers_data.py │ │ │ │ ├── task_queue_reviewers_data_inner.py │ │ │ │ ├── term_tag.py │ │ │ │ ├── term_usage.py │ │ │ │ ├── text_unit_classification.py │ │ │ │ ├── text_unit_classification_create.py │ │ │ │ ├── text_unit_classifier.py │ │ │ │ ├── text_unit_classifier_suggestion.py │ │ │ │ ├── text_unit_cluster.py │ │ │ │ ├── text_unit_django_ql.py │ │ │ │ ├── text_unit_similarity.py │ │ │ │ ├── text_unit_similarity_by_features_form.py │ │ │ │ ├── trademark_usage.py │ │ │ │ ├── transformer.py │ │ │ │ ├── tus_upload_session_upload_session_id_upload_post400_response.py │ │ │ │ ├── typeahead.py │ │ │ │ ├── update_project_documents_fields_request.py │ │ │ │ ├── update_project_documents_fields_response.py │ │ │ │ ├── upload.py │ │ │ │ ├── upload_session_batch_upload_request.py │ │ │ │ ├── upload_session_create.py │ │ │ │ ├── upload_session_delete_file_request.py │ │ │ │ ├── upload_session_detail.py │ │ │ │ ├── upload_session_update.py │ │ │ │ ├── url_usage.py │ │ │ │ ├── user.py │ │ │ │ ├── user_profile.py │ │ │ │ ├── user_stats.py │ │ │ │ ├── verify_auth_token_request.py │ │ │ │ ├── verify_auth_token_response.py │ │ │ │ ├── verify_email.py │ │ │ │ ├── web_notification_detail.py │ │ │ │ └── web_notification_detail_notification.py │ │ │ ├── model_utils.py │ │ │ ├── models/ │ │ │ │ └── __init__.py │ │ │ └── rest.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── test/ │ │ │ ├── __init__.py │ │ │ ├── test_access_token_schema.py │ │ │ ├── test_action.py │ │ │ ├── test_amount_usage.py │ │ │ ├── test_analyze_api.py │ │ │ ├── test_annotation.py │ │ │ ├── test_annotation_batch_request.py │ │ │ ├── test_annotation_batch_response.py │ │ │ ├── test_annotation_in_document.py │ │ │ ├── test_annotation_suggest_request.py │ │ │ ├── test_annotation_update_response.py │ │ │ ├── test_api_api.py │ │ │ ├── test_app_var.py │ │ │ ├── test_assign_project_annotations_request.py │ │ │ ├── test_assign_project_document_request.py │ │ │ ├── test_assign_project_documents_request.py │ │ │ ├── test_check_document_field_formula_request.py │ │ │ ├── test_check_new_document_field_formula_request.py │ │ │ ├── test_citation_usage.py │ │ │ ├── test_cleanup_project_request.py │ │ │ ├── test_clone_document_field_request.py │ │ │ ├── test_clone_document_type_request.py │ │ │ ├── test_cluster_project_request.py │ │ │ ├── test_cluster_project_response.py │ │ │ ├── test_code.py │ │ │ ├── test_common_api.py │ │ │ ├── test_copyright_usage.py │ │ │ ├── test_count_success_response.py │ │ │ ├── test_court_usage.py │ │ │ ├── test_currency_usage.py │ │ │ ├── test_custom_password_change.py │ │ │ ├── test_custom_password_reset.py │ │ │ ├── test_custom_password_reset_confirm.py │ │ │ ├── test_date_duration_usage.py │ │ │ ├── test_date_usage.py │ │ │ ├── test_date_usage_calendar.py │ │ │ ├── test_date_usage_timeline.py │ │ │ ├── test_definition_usage.py │ │ │ ├── test_detect_project_field_values_request.py │ │ │ ├── test_distance_usage.py │ │ │ ├── test_document_api.py │ │ │ ├── test_document_cluster.py │ │ │ ├── test_document_cluster_document_data.py │ │ │ ├── test_document_cluster_document_data_inner.py │ │ │ ├── test_document_cluster_update.py │ │ │ ├── test_document_definitions.py │ │ │ ├── test_document_detail.py │ │ │ ├── test_document_detail_assignee_data.py │ │ │ ├── test_document_detail_available_assignees_data.py │ │ │ ├── test_document_detail_available_assignees_data_inner.py │ │ │ ├── test_document_detail_notes.py │ │ │ ├── test_document_detail_status_data.py │ │ │ ├── test_document_detail_user.py │ │ │ ├── test_document_documents_download_zip_get404_response.py │ │ │ ├── test_document_download_zip_response.py │ │ │ ├── test_document_field_annotation.py │ │ │ ├── test_document_field_category_create.py │ │ │ ├── test_document_field_category_list.py │ │ │ ├── test_document_field_category_list_fields.py │ │ │ ├── test_document_field_category_list_fields_inner.py │ │ │ ├── test_document_field_create.py │ │ │ ├── test_document_field_detail.py │ │ │ ├── test_document_field_detector_create.py │ │ │ ├── test_document_field_detector_detail.py │ │ │ ├── test_document_field_list.py │ │ │ ├── test_document_field_list_category.py │ │ │ ├── test_document_field_list_family.py │ │ │ ├── test_document_field_stats_response.py │ │ │ ├── test_document_field_value.py │ │ │ ├── test_document_note_create.py │ │ │ ├── test_document_note_detail.py │ │ │ ├── test_document_note_detail_user.py │ │ │ ├── test_document_note_update.py │ │ │ ├── test_document_pdf_repr.py │ │ │ ├── test_document_set_annotator_coordinates_difference_request.py │ │ │ ├── test_document_set_annotator_coordinates_difference_request_first_letters_inner.py │ │ │ ├── test_document_set_annotator_coordinates_difference_response.py │ │ │ ├── test_document_similarity.py │ │ │ ├── test_document_similarity_by_features_form.py │ │ │ ├── test_document_similarity_run.py │ │ │ ├── test_document_type_create.py │ │ │ ├── test_document_type_detail.py │ │ │ ├── test_document_type_detail_categories.py │ │ │ ├── test_document_type_detail_categories_inner.py │ │ │ ├── test_document_type_detail_fields_data.py │ │ │ ├── test_document_type_detail_fields_data_inner.py │ │ │ ├── test_document_type_for_stats.py │ │ │ ├── test_document_type_import_request.py │ │ │ ├── test_document_type_import_response.py │ │ │ ├── test_document_type_stats.py │ │ │ ├── test_document_type_stats_data.py │ │ │ ├── test_documents_for_user.py │ │ │ ├── test_documents_for_user_response.py │ │ │ ├── test_documents_for_user_response_data.py │ │ │ ├── test_documents_for_user_response_data_inner.py │ │ │ ├── test_dump_api.py │ │ │ ├── test_dump_document_config_get200_response.py │ │ │ ├── test_dump_fixture.py │ │ │ ├── test_dump_put_error_response.py │ │ │ ├── test_extract_api.py │ │ │ ├── test_field_annotation_status.py │ │ │ ├── test_geo_alias_usage.py │ │ │ ├── test_geo_entity_list.py │ │ │ ├── test_geo_entity_update.py │ │ │ ├── test_geo_entity_usage.py │ │ │ ├── test_inline_response400.py │ │ │ ├── test_inline_response404.py │ │ │ ├── test_inline_response4041.py │ │ │ ├── test_load_fixture.py │ │ │ ├── test_locate_items_request.py │ │ │ ├── test_logging_api.py │ │ │ ├── test_logging_api_view_request.py │ │ │ ├── test_login.py │ │ │ ├── test_login_response.py │ │ │ ├── test_mark_for_seen_web_notification_request.py │ │ │ ├── test_mark_for_seen_web_notification_response.py │ │ │ ├── test_mark_unmark_for_delete_documents_request.py │ │ │ ├── test_mark_unmark_for_delete_documents_response.py │ │ │ ├── test_mark_unmark_for_delete_projects_reponse.py │ │ │ ├── test_mark_unmark_for_delete_projects_request.py │ │ │ ├── test_media_data_api.py │ │ │ ├── test_menu_group.py │ │ │ ├── test_menu_item.py │ │ │ ├── test_ml_model.py │ │ │ ├── test_notifications_api.py │ │ │ ├── test_party.py │ │ │ ├── test_party_similarity.py │ │ │ ├── test_party_similarity_form.py │ │ │ ├── test_party_usage.py │ │ │ ├── test_percent_usage.py │ │ │ ├── test_project_active_tasks.py │ │ │ ├── test_project_active_tasks_tasks.py │ │ │ ├── test_project_annotations_assignees_response.py │ │ │ ├── test_project_api.py │ │ │ ├── test_project_app_var.py │ │ │ ├── test_project_clustering.py │ │ │ ├── test_project_clustering_document_clusters.py │ │ │ ├── test_project_clustering_document_clusters_inner.py │ │ │ ├── test_project_clustering_status_response.py │ │ │ ├── test_project_create.py │ │ │ ├── test_project_detail.py │ │ │ ├── test_project_detail_owners_data.py │ │ │ ├── test_project_detail_owners_data_inner.py │ │ │ ├── test_project_document_similarity.py │ │ │ ├── test_project_document_similarity_response.py │ │ │ ├── test_project_document_similarity_response_data.py │ │ │ ├── test_project_document_similarity_response_data_inner.py │ │ │ ├── test_project_documents_assignees_response.py │ │ │ ├── test_project_documents_similarity_by_vectors_form.py │ │ │ ├── test_project_list.py │ │ │ ├── test_project_list_status_data.py │ │ │ ├── test_project_list_type_data.py │ │ │ ├── test_project_progress_response.py │ │ │ ├── test_project_projects_id_assign_annotations_post404_response.py │ │ │ ├── test_project_projects_id_set_annotation_status_post200_response.py │ │ │ ├── test_project_search_similar_documents_request.py │ │ │ ├── test_project_search_similar_text_units_request.py │ │ │ ├── test_project_stats.py │ │ │ ├── test_project_tasks.py │ │ │ ├── test_project_text_unit_similarity.py │ │ │ ├── test_project_text_units_similarity_by_vectors_form.py │ │ │ ├── test_project_update.py │ │ │ ├── test_project_upload_session_files_response.py │ │ │ ├── test_project_upload_session_post_response.py │ │ │ ├── test_project_upload_session_progress_response.py │ │ │ ├── test_ratio_usage.py │ │ │ ├── test_rawdb_api.py │ │ │ ├── test_rawdb_documents_post_request.py │ │ │ ├── test_register.py │ │ │ ├── test_regulation_usage.py │ │ │ ├── test_rest_auth_api.py │ │ │ ├── test_rest_auth_common_response.py │ │ │ ├── test_review_status.py │ │ │ ├── test_review_status_detail.py │ │ │ ├── test_review_status_detail_group_data.py │ │ │ ├── test_review_status_group.py │ │ │ ├── test_select_projects_request.py │ │ │ ├── test_select_projects_response.py │ │ │ ├── test_send_cluster_to_project_request.py │ │ │ ├── test_set_project_annotations_status_async_response.py │ │ │ ├── test_set_project_annotations_status_request.py │ │ │ ├── test_set_project_documents_status_request.py │ │ │ ├── test_similar_project_text_units_request.py │ │ │ ├── test_similarity_api.py │ │ │ ├── test_similarity_form.py │ │ │ ├── test_similarity_post_object_response.py │ │ │ ├── test_similarity_run.py │ │ │ ├── test_social_accounts_response.py │ │ │ ├── test_social_accounts_response_social_accounts.py │ │ │ ├── test_social_client_list.py │ │ │ ├── test_social_client_list_urls.py │ │ │ ├── test_social_login.py │ │ │ ├── test_task.py │ │ │ ├── test_task_api.py │ │ │ ├── test_task_id_response.py │ │ │ ├── test_task_log_response.py │ │ │ ├── test_task_log_response_records.py │ │ │ ├── test_task_queue.py │ │ │ ├── test_task_queue_documents_data.py │ │ │ ├── test_task_queue_documents_data_inner.py │ │ │ ├── test_task_queue_reviewers_data.py │ │ │ ├── test_task_queue_reviewers_data_inner.py │ │ │ ├── test_term_tag.py │ │ │ ├── test_term_usage.py │ │ │ ├── test_text_unit_classification.py │ │ │ ├── test_text_unit_classification_create.py │ │ │ ├── test_text_unit_classifier.py │ │ │ ├── test_text_unit_classifier_suggestion.py │ │ │ ├── test_text_unit_cluster.py │ │ │ ├── test_text_unit_django_ql.py │ │ │ ├── test_text_unit_similarity.py │ │ │ ├── test_text_unit_similarity_by_features_form.py │ │ │ ├── test_trademark_usage.py │ │ │ ├── test_transformer.py │ │ │ ├── test_tus_api.py │ │ │ ├── test_tus_upload_session_upload_session_id_upload_post400_response.py │ │ │ ├── test_typeahead.py │ │ │ ├── test_update_project_documents_fields_request.py │ │ │ ├── test_update_project_documents_fields_response.py │ │ │ ├── test_upload.py │ │ │ ├── test_upload_session_batch_upload_request.py │ │ │ ├── test_upload_session_create.py │ │ │ ├── test_upload_session_delete_file_request.py │ │ │ ├── test_upload_session_detail.py │ │ │ ├── test_upload_session_update.py │ │ │ ├── test_url_usage.py │ │ │ ├── test_user.py │ │ │ ├── test_user_profile.py │ │ │ ├── test_user_stats.py │ │ │ ├── test_users_api.py │ │ │ ├── test_v1_api.py │ │ │ ├── test_var_api.py │ │ │ ├── test_verify_auth_token_request.py │ │ │ ├── test_verify_auth_token_response.py │ │ │ ├── test_verify_email.py │ │ │ ├── test_web_notification_detail.py │ │ │ └── test_web_notification_detail_notification.py │ │ ├── test-requirements.txt │ │ └── tox.ini │ └── tests/ │ ├── .gitignore │ ├── README │ ├── __init__.py │ ├── common/ │ │ ├── __init__.py │ │ └── test_app_vars.py │ ├── config.py │ ├── document/ │ │ └── __init__.py │ ├── project/ │ │ ├── __init__.py │ │ ├── data/ │ │ │ └── doc1.txt │ │ ├── test_document_upload.py │ │ ├── test_project_crud.py │ │ ├── test_upload_session.py │ │ └── utils.py │ ├── rest_auth/ │ │ ├── __init__.py │ │ └── test_login.py │ └── utils.py ├── static/ │ ├── css/ │ │ ├── animate.css │ │ ├── bootstrap.css │ │ ├── components/ │ │ │ ├── bs-switches.css │ │ │ └── radio-checkbox.css │ │ ├── dark.css │ │ ├── font-icons.css │ │ ├── fonts.css │ │ ├── login.css │ │ ├── magnific-popup.css │ │ ├── project.css │ │ ├── responsive.css │ │ ├── style.css │ │ └── swiper.css │ ├── js/ │ │ ├── components/ │ │ │ └── bs-switches.js │ │ ├── functions.js │ │ ├── jquery.js │ │ ├── jqwidgets.js │ │ ├── login.js │ │ ├── plugins.js │ │ ├── project.js │ │ └── reset_password.js │ ├── theme/ │ │ └── README.md │ └── vendor/ │ ├── jqwidgets/ │ │ └── README.md │ └── tagsinput/ │ ├── bootstrap-tagsinput.css │ └── bootstrap-tagsinput.js ├── terraform/ │ ├── aws/ │ │ └── kubeconfig_dev-eks-contraxsuite-com │ ├── azure/ │ │ ├── .gitignore │ │ ├── .terraform.lock.hcl │ │ ├── README.md │ │ ├── main.tf │ │ ├── monitoring-values.yaml_example │ │ ├── rook-ceph-values.yaml_example │ │ ├── terraform.tfvars_example │ │ ├── variables.tf │ │ └── versions.tf │ └── modules/ │ ├── azure/ │ │ └── aks-cluster/ │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ └── helm/ │ ├── ceph_cluster/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── _helpers.tpl │ │ │ ├── ceph_block_pool.yaml │ │ │ ├── ceph_cluster.yaml │ │ │ ├── rook_toolbox.yaml │ │ │ └── storage_class.yaml │ │ └── values.yaml │ ├── ceph_cluster.tf │ ├── cert_manager.tf │ ├── helm-dev-values.yaml │ ├── helm-prd-values.yaml │ ├── ingress_nginx.tf │ ├── keda.tf │ ├── kube_prometheus_stack.tf │ ├── rook_ceph.tf │ └── variables.tf └── version.txt