pyegeria 5.2.1__py3-none-any.whl → 5.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- commands/cat/.DS_Store +0 -0
- commands/cat/Dr-Egeria_md-orig.py +166 -0
- commands/cat/__init__.py +23 -0
- commands/cat/dr_egeria_jupyter.py +122 -0
- commands/cat/dr_egeria_md.py +247 -0
- {pyegeria/commands → commands}/cat/exp_list_glossaries.py +3 -4
- {pyegeria/commands → commands}/cat/get_asset_graph.py +4 -4
- {pyegeria/commands → commands}/cat/get_collection.py +8 -9
- {pyegeria/commands → commands}/cat/get_project_dependencies.py +6 -8
- {pyegeria/commands → commands}/cat/get_project_structure.py +6 -8
- {pyegeria/commands → commands}/cat/get_tech_type_elements.py +13 -15
- {pyegeria/commands → commands}/cat/glossary_actions.py +184 -34
- {pyegeria/commands → commands}/cat/list_assets.py +9 -6
- commands/cat/list_categories.py +192 -0
- {pyegeria/commands → commands}/cat/list_cert_types.py +6 -6
- {pyegeria/commands → commands}/cat/list_collections.py +62 -19
- commands/cat/list_data_structures.py +223 -0
- {pyegeria/commands → commands}/cat/list_deployed_catalogs.py +9 -8
- {pyegeria/commands → commands}/cat/list_deployed_database_schemas.py +10 -9
- {pyegeria/commands → commands}/cat/list_deployed_databases.py +9 -8
- pyegeria/commands/cat/list_servers_deployed_imp.py → commands/cat/list_deployed_servers.py +3 -3
- {pyegeria/commands → commands}/cat/list_glossaries.py +57 -15
- {pyegeria/commands → commands}/cat/list_projects.py +5 -5
- {pyegeria/commands → commands}/cat/list_tech_type_elements.py +3 -3
- {pyegeria/commands → commands}/cat/list_tech_types.py +4 -4
- {pyegeria/commands → commands}/cat/list_terms.py +93 -45
- {pyegeria/commands → commands}/cat/list_todos.py +3 -3
- {pyegeria/commands → commands}/cat/list_user_ids.py +9 -8
- {pyegeria/commands → commands}/cli/__init__.py +1 -1
- {pyegeria/commands → commands}/cli/egeria.py +513 -250
- {pyegeria/commands → commands}/cli/egeria_cat.py +128 -51
- {pyegeria/commands → commands}/cli/egeria_login_tui.py +15 -17
- {pyegeria/commands → commands}/cli/egeria_my.py +22 -15
- {pyegeria/commands → commands}/cli/egeria_ops.py +54 -55
- {pyegeria/commands → commands}/cli/egeria_tech.py +364 -152
- {pyegeria/commands → commands}/cli/ops_config.py +18 -11
- commands/my/__init__.py +22 -0
- {pyegeria/commands → commands}/my/list_my_profile.py +6 -8
- {pyegeria/commands → commands}/my/list_my_roles.py +4 -4
- {pyegeria/commands → commands}/my/monitor_my_todos.py +7 -7
- {pyegeria/commands → commands}/my/monitor_open_todos.py +7 -7
- {pyegeria/commands → commands}/my/todo_actions.py +3 -2
- commands/ops/__init__.py +23 -0
- {pyegeria/commands → commands}/ops/gov_server_actions.py +5 -4
- {pyegeria/commands → commands}/ops/list_archives.py +7 -6
- {pyegeria/commands → commands}/ops/list_catalog_targets.py +4 -4
- {pyegeria/commands → commands}/ops/load_archive.py +4 -2
- {pyegeria/commands → commands}/ops/monitor_asset_events.py +8 -7
- {pyegeria/commands → commands}/ops/monitor_engine_activity.py +5 -5
- {pyegeria/commands → commands}/ops/monitor_engine_activity_c.py +3 -3
- {pyegeria/commands → commands}/ops/monitor_gov_eng_status.py +3 -2
- {pyegeria/commands → commands}/ops/monitor_integ_daemon_status.py +23 -15
- {pyegeria/commands → commands}/ops/monitor_platform_status.py +5 -4
- {pyegeria/commands → commands}/ops/monitor_server_startup.py +7 -7
- {pyegeria/commands → commands}/ops/monitor_server_status.py +16 -11
- {pyegeria/commands → commands}/ops/orig_monitor_server_list.py +2 -2
- {pyegeria/commands → commands}/ops/orig_monitor_server_status.py +3 -3
- {pyegeria/commands → commands}/ops/refresh_integration_daemon.py +4 -4
- {pyegeria/commands → commands}/ops/restart_integration_daemon.py +3 -3
- {pyegeria/commands → commands}/ops/table_integ_daemon_status.py +3 -3
- commands/tech/__init__.py +22 -0
- commands/tech/generic_actions.py +74 -0
- {pyegeria/commands → commands}/tech/get_element_info.py +5 -7
- {pyegeria/commands → commands}/tech/get_guid_info.py +4 -5
- {pyegeria/commands → commands}/tech/get_tech_details.py +8 -9
- {pyegeria/commands → commands}/tech/get_tech_type_template.py +4 -4
- pyegeria/commands/tech/list_elements.py → commands/tech/list_all_om_type_elements.py +11 -10
- pyegeria/commands/tech/list_elements_x.py → commands/tech/list_all_om_type_elements_x.py +11 -12
- pyegeria/commands/tech/list_related_elements.py → commands/tech/list_all_related_elements.py +11 -9
- {pyegeria/commands → commands}/tech/list_anchored_elements.py +16 -16
- {pyegeria/commands → commands}/tech/list_asset_types.py +4 -4
- commands/tech/list_elements_by_classification_by_property_value.py +200 -0
- commands/tech/list_elements_by_property_value.py +180 -0
- commands/tech/list_elements_by_property_value_x.py +201 -0
- {pyegeria/commands → commands}/tech/list_elements_for_classification.py +11 -9
- {pyegeria/commands → commands}/tech/list_gov_action_processes.py +5 -6
- commands/tech/list_information_supply_chains.py +167 -0
- {pyegeria/commands → commands}/tech/list_registered_services.py +3 -3
- commands/tech/list_related_elements_with_prop_value.py +221 -0
- {pyegeria/commands → commands}/tech/list_related_specification.py +3 -3
- {pyegeria/commands → commands}/tech/list_relationship_types.py +4 -5
- {pyegeria/commands → commands}/tech/list_relationships.py +3 -3
- commands/tech/list_solution_blueprints.py +181 -0
- commands/tech/list_solution_components.py +185 -0
- commands/tech/list_solution_roles.py +184 -0
- {pyegeria/commands → commands}/tech/list_tech_templates.py +3 -3
- {pyegeria/commands → commands}/tech/list_valid_metadata_values.py +5 -6
- {pyegeria/commands → commands}/tech/table_tech_templates.py +16 -13
- {pyegeria/commands → commands}/tech/x_list_related_elements.py +6 -4
- md_processing/__init__.py +49 -0
- md_processing/data/commands.json +3252 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md +254 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md +696 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md +254 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md +298 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md +608 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md +94 -0
- md_processing/dr_egeria_inbox/archive/freddie_intro.md +284 -0
- md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md +275 -0
- md_processing/dr_egeria_inbox/archive/test-term.md +110 -0
- md_processing/dr_egeria_inbox/cat_test.md +100 -0
- md_processing/dr_egeria_inbox/data_field.md +54 -0
- md_processing/dr_egeria_inbox/data_spec.md +77 -0
- md_processing/dr_egeria_inbox/data_spec_test.md +2406 -0
- md_processing/dr_egeria_inbox/data_test.md +86 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md +168 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +280 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +313 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md +1073 -0
- md_processing/dr_egeria_inbox/dr_egeria_isc1.md +44 -0
- md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb +341 -0
- md_processing/dr_egeria_inbox/glossary_test1.md +324 -0
- md_processing/dr_egeria_inbox/rel.md +8 -0
- md_processing/dr_egeria_inbox/sb.md +119 -0
- md_processing/dr_egeria_inbox/search_test.md +39 -0
- md_processing/dr_egeria_inbox/solution-components.md +154 -0
- md_processing/dr_egeria_inbox/solution_blueprints.md +118 -0
- md_processing/dr_egeria_inbox/synonym_test.md +42 -0
- md_processing/dr_egeria_inbox/t2.md +268 -0
- md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md +94 -0
- md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md +88 -0
- md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md +56 -0
- md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md +103 -0
- md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md +94 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md +96 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md +100 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md +88 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md +91 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md +91 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md +91 -0
- md_processing/md_commands/__init__.py +3 -0
- md_processing/md_commands/blueprint_commands.py +303 -0
- md_processing/md_commands/data_designer_commands.py +1182 -0
- md_processing/md_commands/glossary_commands.py +1144 -0
- md_processing/md_commands/project_commands.py +163 -0
- md_processing/md_processing_utils/__init__.py +4 -0
- md_processing/md_processing_utils/common_md_proc_utils.py +724 -0
- md_processing/md_processing_utils/common_md_utils.py +172 -0
- md_processing/md_processing_utils/extraction_utils.py +486 -0
- md_processing/md_processing_utils/md_processing_constants.py +128 -0
- md_processing/md_processing_utils/message_constants.py +19 -0
- pyegeria/.DS_Store +0 -0
- pyegeria/__init__.py +231 -146
- pyegeria/_client.py +36 -13
- pyegeria/_exceptions.py +55 -46
- pyegeria/_globals.py +11 -1
- pyegeria/_validators.py +5 -5
- pyegeria/asset_catalog_omvs.py +78 -21
- pyegeria/automated_curation_omvs.py +11 -6
- pyegeria/classification_manager_omvs.py +41 -37
- pyegeria/collection_manager_omvs.py +722 -705
- pyegeria/core_omag_server_config.py +1 -1
- pyegeria/create_tech_guid_lists.py +13 -13
- pyegeria/data_designer_omvs.py +5104 -0
- pyegeria/dr.egeria spec.md +9 -0
- pyegeria/egeria_cat_client.py +5 -8
- pyegeria/egeria_client.py +39 -24
- pyegeria/egeria_config_client.py +2 -1
- pyegeria/egeria_my_client.py +4 -4
- pyegeria/egeria_tech_client.py +40 -18
- pyegeria/feedback_manager_omvs.py +1 -1
- pyegeria/full_omag_server_config.py +5 -3
- pyegeria/glossary_browser_omvs.py +1915 -694
- pyegeria/glossary_manager_omvs.py +685 -1842
- pyegeria/m_test.py +118 -0
- pyegeria/md_processing_helpers.py +58 -0
- pyegeria/md_processing_utils.py +2147 -0
- pyegeria/md_processing_utils_orig.py +1103 -0
- pyegeria/mermaid_utilities.py +1194 -14
- pyegeria/metadata_explorer_omvs.py +5 -50
- pyegeria/my_profile_omvs.py +3 -2
- pyegeria/output_formatter.py +389 -0
- pyegeria/platform_services.py +5 -5
- pyegeria/project_manager_omvs.py +97 -18
- pyegeria/runtime_manager_omvs.py +8 -10
- pyegeria/server_operations.py +2 -2
- pyegeria/solution_architect_omvs.py +2156 -0
- pyegeria/template_manager_omvs.py +13 -13
- pyegeria/utils.py +3 -1
- pyegeria/valid_metadata_omvs.py +5 -4
- pyegeria/x_action_author_omvs.py +3 -6
- {pyegeria-5.2.1.dist-info → pyegeria-5.3.dist-info}/METADATA +9 -8
- pyegeria-5.3.dist-info/RECORD +196 -0
- {pyegeria-5.2.1.dist-info → pyegeria-5.3.dist-info}/WHEEL +1 -1
- pyegeria-5.3.dist-info/entry_points.txt +99 -0
- pyegeria/commands/README.md +0 -47
- pyegeria/commands/__init__.py +0 -22
- pyegeria/commands/cat/__init__.py +0 -1
- pyegeria/commands/doc/README.md +0 -145
- pyegeria/commands/doc/Visual Command Reference/README.md +0 -511
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/asset-graph 2024-11-20 at 15.56.42.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/assets-in-domain 2024-11-20 at 15.49.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs 2024-12-17 at 15.43.27@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-11-25 at 20.14.50@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-12-17 at 15.48.38@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-11-25 at 20.21.25@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-12-17 at 15.52.16@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed_databases 2024-12-16 at 16.40.31@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-glossaries 2024-11-25 at 20.30.02.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-terms 2024-11-25 at 20.32.11.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/asset-types 2024-11-25 at 20.34.19@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/certification-types 2024-11-25 at 20.37.07.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/collection-graph 2024-12-12 at 11.33.18@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-collections 2024-12-10 at 14.25.51@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-todos 2024-12-12 at 11.46.30@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-user-ids 2024-12-12 at 11.51.09@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/tech-types 2024-12-12 at 11.37.20@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_dependencies 2024-12-14 at 16.24.39@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_structure 2024-12-14 at 16.21.35@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/projects/projects 2024-12-14 at 16.18.10@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/hey_egeria tui 2024-12-16 at 16.58.22@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/my_profile 2024-12-14 at 16.29.27@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/my_roles 2024-12-14 at 16.32.10@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/my_todos 2024-12-15 at 16.24.13@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/open_todos 2024-12-14 at 16.36.12@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/list_engine_activity compressed 2024-12-15 at 16.48.48@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity 2024-12-15 at 16.32.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity compressed 2024-12-15 at 16.38.29@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_status 2024-12-15 at 16.51.26.jpeg +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_daemon_status 2024-12-15 at 16.57.12@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_targets 2024-12-15 at 17.02.19@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/platforms/monitor_platform_status 2024-12-15 at 19.53.18@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status 2024-12-15 at 19.59.39@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status full 2024-12-15 at 20.01.57@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_startup_servers 2024-12-15 at 19.56.07@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/get_anchored_elements 2024-12-15 at 21.25.41@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/get_elements_of_om_type 2024-12-16 at 14.39.59@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/info_for_guid 2024-12-16 at 11.35.29@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/list_elements_by_om-type 2024-12-16 at 14.24.18@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/list_elements_by_om-type extended 2024-12-16 at 14.28.46@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/list_elements_of_om_type_by_classification 2024-12-16 at 14.35.26@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/related_elements 2024-12-16 at 14.55.01@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/show_related_specifications 2024-12-16 at 15.04.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/asset_types 2024-12-16 at 15.10.16@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/detailed_governance_action_processes 2024-12-16 at 15.16.26@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/governance_action_processes 2024-12-16 at 15.13.01@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/registered_services 2024-12-16 at 16.44.54@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-16 at 16.20.34@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-19 at 10.51.54@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/valid_metadata_values 2024-12-16 at 15.31.56@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_tech_type_template_specs 2024-12-16 at 16.03.22@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_technology_types 2024-12-16 at 15.39.20@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_details 2024-12-16 at 15.37.21@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_templates 2024-12-16 at 16.11.48@2x.png +0 -0
- pyegeria/commands/doc/glossary/basic-glossary-tui.md +0 -109
- pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-create-glossary example 2024-11-05 at 20.38.04@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-create-term 2024-11-06 at 20.48.29.png +0 -0
- pyegeria/commands/doc/glossary/images/out-delete-term 2024-11-07 at 03.57.25.png +0 -0
- pyegeria/commands/doc/glossary/images/out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png +0 -0
- pyegeria/commands/doc/glossary/images/out-export-example 2024-11-07 at 09.54.57.png +0 -0
- pyegeria/commands/doc/glossary/images/out-exported-terms 2024-11-06 at 21.06.32.png +0 -0
- pyegeria/commands/doc/glossary/images/out-glossary-list example 2024-11-05 at 20.41.02@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-import-terms 2024-11-07 at 08.15.18.png +0 -0
- pyegeria/commands/doc/glossary/images/out-list-all-terms 2024-11-06 at 16.22.20@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-list-terms-for-example 2024-11-06 at 16.40.12.png +0 -0
- pyegeria/commands/doc/glossary/images/out-list-terms-second 2024-11-06 at 16.45.13.png +0 -0
- pyegeria/commands/doc/glossary/images/out-pipx install pyegeria 2024-11-10 at 18.12.21.png +0 -0
- pyegeria/commands/doc/glossary/images/out-server-status-full 2024-11-10 at 18.25.14.png +0 -0
- pyegeria/commands/doc/glossary/images/out-servers-status 2024-11-10 at 18.15.42.png +0 -0
- pyegeria/commands/doc/glossary/images/out-upsert-import 2024-11-07 at 19.37.00.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-2024-11-10 at 18.26.29.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-create-glossary example 2024-11-05 at 20.34.24@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-create-term 2024-11-06 at 20.46.35.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-delete-term 2024-11-07 at 03.51.57.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-display-terms-for-example 2024-11-06 at 20.56.49.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-export-example 2024-11-07 at 09.52.59.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-hey-egeria 2024-11-10 at 18.31.01.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-import-upsert-example 2024-11-07 at 10.08.37.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-list-terms-second 2024-11-06 at 16.46.34.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-load-archive.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-server-status-full 2024-11-10 at 19.14.36.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-show-glossaries 2024-11-07 at 20.00.05.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-upsert 2024-11-07 at 11.49.04.png +0 -0
- pyegeria/commands/doc/glossary/images/upsert-example.om-terms 2024-11-07 at 11.44.05.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/README.md +0 -346
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-18 at 21.32.03@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731421782704.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731422134920.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria 2024-11-12 at 20.38.43.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria cat 2024-11-12 at 21.41.43.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-integ-status-list 2024-11-12 at 16.45.26.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-integ-status-live 2024-11-12 at 16.44.12@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-server-status 2024-11-10 at 18.15.42@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-server-status-full 2024-11-10 at 18.25.14@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/short-cut commands 2024-11-12 at 22.22.13.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-hey-egeria.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-integration-status-paging.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-load-archive 2024-11-10 at 19.19.09@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-show-server-status 2024-11-10 at 18.52.01@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-show-server-status-full 2024-11-10.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-status-paging 2024-11-12 at 16.26.14@2x.png +0 -0
- pyegeria/commands/ops/__init__.py +0 -22
- pyegeria/commands/tech/__init__.py +0 -0
- pyegeria-5.2.1.dist-info/RECORD +0 -232
- pyegeria-5.2.1.dist-info/entry_points.txt +0 -81
- {pyegeria/commands → commands}/cat/README.md +0 -0
- {pyegeria/commands → commands}/cli/txt_custom_v2.tcss +0 -0
- {pyegeria/commands → commands}/my/README.md +0 -0
- {pyegeria/commands → commands}/ops/README.md +0 -0
- {pyegeria/commands → commands}/ops/x_engine_actions.py +0 -0
- {pyegeria/commands → commands}/tech/README.md +0 -0
- /pyegeria/commands/my/__init__.py → /md_processing/dr_egeria_inbox/t1.md +0 -0
- {pyegeria-5.2.1.dist-info → pyegeria-5.3.dist-info}/LICENSE +0 -0
@@ -0,0 +1,3252 @@
|
|
1
|
+
{
|
2
|
+
"Command Specifications": {
|
3
|
+
"exported": "May 15, 2025 at 4:03:34 PM",
|
4
|
+
"Data Field": {
|
5
|
+
"display_name": "Data Field",
|
6
|
+
"qn_prefix": "DataField",
|
7
|
+
"alternate_names": "",
|
8
|
+
"description": "A data field is a fundamental building block for a data structure.",
|
9
|
+
"upsert": true,
|
10
|
+
"list": false,
|
11
|
+
"details": false,
|
12
|
+
"form": false,
|
13
|
+
"ReferenceURL": "",
|
14
|
+
"isOwnAnchor": true,
|
15
|
+
"parent_relationship_type_name": "",
|
16
|
+
"parent_at_end1": true,
|
17
|
+
"style": "",
|
18
|
+
"anchor_scope_id": "",
|
19
|
+
"parent_id": "",
|
20
|
+
"level": "Basic",
|
21
|
+
"Journal Entry": "external_source_guid = attributes.get('External Source Name',{}).get('guid', None)\nexternal_source_name = attributes.get('External Source Name',{}).get('value', None)\neffective_time = attributes.get('Effective Time', {}).get('value', None)\nfor_lineage = attributes.get('For Lineage', {}).get('value', None)\nfor_duplicate_processing = attributes.get('For Duplicate Processing', {}).get('value', None)\nanchor_guid = attributes.get('Anchor ID', {}).get('guid', None)\nis_own_anchor = attributes.get('Is Own Anchor', {}).get('value', None)\nparent_id = attributes.get('Parent ID', {}).get('value', None)\nparent_guid = attributes['Parent ID'].get('guid', None)\nparent_relationship_type_name = attributes.get('Parent Relationship Type Name', {}).get('value', None)\nparent_relationship_properties = attributes.get('Parent Relationship Properties',{}).get('value', None)\nparent_at_end1 = attributes.get('Parent at End1', {}).get('value', None)\n\n\ndisplay_name = attributes['Display Name'].get('value', None)\n\nnamespace = attributes['Namespace'].get('value', None)\ndescription = attributes['Description'].get('value', None)\nversion_id = attributes.get('Version Identifier',{}).get('value', None)\naliases = attributes.get('Aliases',{}).get('value', None)\nname_pattern = attributes.get('Name Pattern',{}).get('value', None)\nis_nullable = attributes.get('Is Nullable',{}).get('value', None)\ndefault_value = attributes.get('Default Value',{}).get('value', None)\ndata_type = attributes.get('Data Type',{}).get('value', None)\nmin_length = attributes.get('Minimum Length',{}).get('value', None)\nlength = attributes.get('Length',{}).get('value', None)\nprecision = attributes.get('Precision',{}).get('value', None)\nordered_values = attributes.get('Ordered Values',{}).get('value', None)\nsort_order = attributes.get('Sort Order',{}).get('value', None)\nadditional_properties = attributes.get('Additional Properties',{}).get('value', None)\neffective_from = attributes.get('Effective From',{}).get('value', None)\neffective_to = attributes.get('Effective To',{}).get('value', None)\n\nposition = attributes['Position'].get('value', None)\nmin_cardinality = attributes['Minimum Cardinality'].get('value', None)\nmax_cardinality = attributes['Maximum Cardinality'].get('value', None)\nin_data_structure = attributes['In Data Structure'].get('value', None)\ndata_class = attributes['Data Class'].get('value', None)\nglossary_term = attributes['Glossary Term'].get('value', None)\n\n\n\nin_data_dictionary = attributes['In Data Dictionary'].get('value', None)\nparent_data_field = attributes['Parent Data Field'].get('value', None)\nparent_data_field_guid = attributes['Parent Data Field'].get('guid', None)\n\n",
|
22
|
+
"Attributes": [
|
23
|
+
{
|
24
|
+
"Display Name": {
|
25
|
+
"variable_name": "display_name",
|
26
|
+
"inUpdate": true,
|
27
|
+
"attr_labels": "Name; Data Field",
|
28
|
+
"examples": "PatientId",
|
29
|
+
"default_value": "",
|
30
|
+
"valid_values": "",
|
31
|
+
"existing_element": "",
|
32
|
+
"description": "Name of the Data Field",
|
33
|
+
"qualified_name_pattern": "",
|
34
|
+
"generated": false,
|
35
|
+
"style": "ID",
|
36
|
+
"user_specified": true,
|
37
|
+
"unique": false,
|
38
|
+
"input_required": true,
|
39
|
+
"position": 0,
|
40
|
+
"ReferenceURL": "",
|
41
|
+
"isParent": false,
|
42
|
+
"isAnchor": false,
|
43
|
+
"min_cardinality": 1,
|
44
|
+
"max_cardinality": 1,
|
45
|
+
"level": "Basic",
|
46
|
+
"Journal Entry": ""
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"Description": {
|
51
|
+
"variable_name": "description",
|
52
|
+
"inUpdate": true,
|
53
|
+
"attr_labels": "",
|
54
|
+
"examples": "",
|
55
|
+
"default_value": "",
|
56
|
+
"valid_values": "",
|
57
|
+
"existing_element": "",
|
58
|
+
"description": "A description of the Data Field",
|
59
|
+
"qualified_name_pattern": "",
|
60
|
+
"generated": false,
|
61
|
+
"style": "Simple",
|
62
|
+
"user_specified": true,
|
63
|
+
"unique": false,
|
64
|
+
"input_required": false,
|
65
|
+
"position": 1,
|
66
|
+
"ReferenceURL": "",
|
67
|
+
"isParent": false,
|
68
|
+
"isAnchor": false,
|
69
|
+
"min_cardinality": 0,
|
70
|
+
"max_cardinality": 1,
|
71
|
+
"level": "Basic",
|
72
|
+
"Journal Entry": ""
|
73
|
+
}
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"Data Type": {
|
77
|
+
"variable_name": "data_type",
|
78
|
+
"inUpdate": true,
|
79
|
+
"attr_labels": "",
|
80
|
+
"examples": "string, int, list",
|
81
|
+
"default_value": "string",
|
82
|
+
"valid_values": "Integer; String; Float; Big Int; Big Decimal; Double; Float; Char; integer; string; float; list; dict; str",
|
83
|
+
"existing_element": "",
|
84
|
+
"description": "The data type of the data field. Point to data type valid value list if exists.",
|
85
|
+
"qualified_name_pattern": "",
|
86
|
+
"generated": false,
|
87
|
+
"style": "Valid Value",
|
88
|
+
"user_specified": true,
|
89
|
+
"unique": false,
|
90
|
+
"input_required": true,
|
91
|
+
"position": 2,
|
92
|
+
"ReferenceURL": "",
|
93
|
+
"isParent": false,
|
94
|
+
"isAnchor": false,
|
95
|
+
"min_cardinality": 1,
|
96
|
+
"max_cardinality": 1,
|
97
|
+
"level": "Basic",
|
98
|
+
"Journal Entry": ""
|
99
|
+
}
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"Position": {
|
103
|
+
"variable_name": "position",
|
104
|
+
"inUpdate": true,
|
105
|
+
"attr_labels": "",
|
106
|
+
"examples": "",
|
107
|
+
"default_value": "0",
|
108
|
+
"valid_values": "",
|
109
|
+
"existing_element": "",
|
110
|
+
"description": "Position of the data field in the data structure. If 0, position is irrelevant.",
|
111
|
+
"qualified_name_pattern": "",
|
112
|
+
"generated": false,
|
113
|
+
"style": "Ordered Int",
|
114
|
+
"user_specified": true,
|
115
|
+
"unique": false,
|
116
|
+
"input_required": false,
|
117
|
+
"position": 3,
|
118
|
+
"ReferenceURL": "",
|
119
|
+
"isParent": false,
|
120
|
+
"isAnchor": false,
|
121
|
+
"min_cardinality": 0,
|
122
|
+
"max_cardinality": 1,
|
123
|
+
"level": "Basic",
|
124
|
+
"Journal Entry": ""
|
125
|
+
}
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"Minimum Cardinality": {
|
129
|
+
"variable_name": "min_cardinality",
|
130
|
+
"inUpdate": true,
|
131
|
+
"attr_labels": "Min Cardinality; min cardinality",
|
132
|
+
"examples": "",
|
133
|
+
"default_value": "1",
|
134
|
+
"valid_values": "",
|
135
|
+
"existing_element": "",
|
136
|
+
"description": "The minimum cardinality for a data element.",
|
137
|
+
"qualified_name_pattern": "",
|
138
|
+
"generated": false,
|
139
|
+
"style": "Simple Int",
|
140
|
+
"user_specified": true,
|
141
|
+
"unique": false,
|
142
|
+
"input_required": false,
|
143
|
+
"position": 4,
|
144
|
+
"ReferenceURL": "",
|
145
|
+
"isParent": false,
|
146
|
+
"isAnchor": false,
|
147
|
+
"min_cardinality": 0,
|
148
|
+
"max_cardinality": 1,
|
149
|
+
"level": "Basic",
|
150
|
+
"Journal Entry": ""
|
151
|
+
}
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"Maximum Cardinality": {
|
155
|
+
"variable_name": "max_cardinality",
|
156
|
+
"inUpdate": true,
|
157
|
+
"attr_labels": "max cardinality; Max Cardlinality",
|
158
|
+
"examples": "",
|
159
|
+
"default_value": "1",
|
160
|
+
"valid_values": "",
|
161
|
+
"existing_element": "",
|
162
|
+
"description": "The maximumcardinality for a data element.",
|
163
|
+
"qualified_name_pattern": "",
|
164
|
+
"generated": false,
|
165
|
+
"style": "Simple Int",
|
166
|
+
"user_specified": true,
|
167
|
+
"unique": false,
|
168
|
+
"input_required": false,
|
169
|
+
"position": 5,
|
170
|
+
"ReferenceURL": "",
|
171
|
+
"isParent": false,
|
172
|
+
"isAnchor": false,
|
173
|
+
"min_cardinality": 0,
|
174
|
+
"max_cardinality": 1,
|
175
|
+
"level": "Basic",
|
176
|
+
"Journal Entry": ""
|
177
|
+
}
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"In Data Structure": {
|
181
|
+
"variable_name": "in_data_structure",
|
182
|
+
"inUpdate": true,
|
183
|
+
"attr_labels": "Data Structure",
|
184
|
+
"examples": "US_Address",
|
185
|
+
"default_value": "",
|
186
|
+
"valid_values": "",
|
187
|
+
"existing_element": "DataStructure",
|
188
|
+
"description": "The data structure this field is a member of. If display name is not unique, use qualified name.",
|
189
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataStructure:display_name::version_id",
|
190
|
+
"generated": false,
|
191
|
+
"style": "Reference Name List",
|
192
|
+
"user_specified": true,
|
193
|
+
"unique": false,
|
194
|
+
"input_required": false,
|
195
|
+
"position": 6,
|
196
|
+
"ReferenceURL": "",
|
197
|
+
"isParent": false,
|
198
|
+
"isAnchor": false,
|
199
|
+
"min_cardinality": 0,
|
200
|
+
"max_cardinality": -1,
|
201
|
+
"level": "Basic",
|
202
|
+
"Journal Entry": ""
|
203
|
+
}
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"Data Class": {
|
207
|
+
"variable_name": "data_class",
|
208
|
+
"inUpdate": true,
|
209
|
+
"attr_labels": "",
|
210
|
+
"examples": "zip code",
|
211
|
+
"default_value": "",
|
212
|
+
"valid_values": "Integer;oat,;String,;List; Dict;Boolean",
|
213
|
+
"existing_element": "DataClass",
|
214
|
+
"description": "The data class that values of this data field conform to.",
|
215
|
+
"qualified_name_pattern": "",
|
216
|
+
"generated": false,
|
217
|
+
"style": "Reference Name",
|
218
|
+
"user_specified": true,
|
219
|
+
"unique": false,
|
220
|
+
"input_required": false,
|
221
|
+
"position": 7,
|
222
|
+
"ReferenceURL": "",
|
223
|
+
"isParent": false,
|
224
|
+
"isAnchor": false,
|
225
|
+
"min_cardinality": 0,
|
226
|
+
"max_cardinality": 1,
|
227
|
+
"level": "Basic",
|
228
|
+
"Journal Entry": ""
|
229
|
+
}
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"Glossary Term": {
|
233
|
+
"variable_name": "glossary_term",
|
234
|
+
"inUpdate": true,
|
235
|
+
"attr_labels": "",
|
236
|
+
"examples": "Term::Zip Code",
|
237
|
+
"default_value": "",
|
238
|
+
"valid_values": "",
|
239
|
+
"existing_element": "GlossaryTerm",
|
240
|
+
"description": "Term that provides meaning to this field.",
|
241
|
+
"qualified_name_pattern": "",
|
242
|
+
"generated": false,
|
243
|
+
"style": "Reference Name",
|
244
|
+
"user_specified": true,
|
245
|
+
"unique": false,
|
246
|
+
"input_required": false,
|
247
|
+
"position": 8,
|
248
|
+
"ReferenceURL": "",
|
249
|
+
"isParent": false,
|
250
|
+
"isAnchor": false,
|
251
|
+
"min_cardinality": 0,
|
252
|
+
"max_cardinality": 1,
|
253
|
+
"level": "Basic",
|
254
|
+
"Journal Entry": ""
|
255
|
+
}
|
256
|
+
},
|
257
|
+
{
|
258
|
+
"Aliases": {
|
259
|
+
"variable_name": "aliases",
|
260
|
+
"inUpdate": true,
|
261
|
+
"attr_labels": "",
|
262
|
+
"examples": "",
|
263
|
+
"default_value": "",
|
264
|
+
"valid_values": "",
|
265
|
+
"existing_element": "",
|
266
|
+
"description": "",
|
267
|
+
"qualified_name_pattern": "",
|
268
|
+
"generated": false,
|
269
|
+
"style": "Simple List",
|
270
|
+
"user_specified": true,
|
271
|
+
"unique": false,
|
272
|
+
"input_required": false,
|
273
|
+
"position": 9,
|
274
|
+
"ReferenceURL": "",
|
275
|
+
"isParent": false,
|
276
|
+
"isAnchor": false,
|
277
|
+
"min_cardinality": 0,
|
278
|
+
"max_cardinality": -1,
|
279
|
+
"level": "Basic",
|
280
|
+
"Journal Entry": ""
|
281
|
+
}
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"Name Patterns": {
|
285
|
+
"variable_name": "name_patterns",
|
286
|
+
"inUpdate": true,
|
287
|
+
"attr_labels": "",
|
288
|
+
"examples": "",
|
289
|
+
"default_value": "",
|
290
|
+
"valid_values": "",
|
291
|
+
"existing_element": "",
|
292
|
+
"description": "Name patterns for the field.",
|
293
|
+
"qualified_name_pattern": "",
|
294
|
+
"generated": false,
|
295
|
+
"style": "Simple List",
|
296
|
+
"user_specified": true,
|
297
|
+
"unique": false,
|
298
|
+
"input_required": false,
|
299
|
+
"position": 0,
|
300
|
+
"ReferenceURL": "",
|
301
|
+
"isParent": false,
|
302
|
+
"isAnchor": false,
|
303
|
+
"min_cardinality": 0,
|
304
|
+
"max_cardinality": -1,
|
305
|
+
"level": "Advanced",
|
306
|
+
"Journal Entry": ""
|
307
|
+
}
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"Namespace": {
|
311
|
+
"variable_name": "namespace",
|
312
|
+
"inUpdate": true,
|
313
|
+
"attr_labels": "",
|
314
|
+
"examples": "Shipping Department",
|
315
|
+
"default_value": "",
|
316
|
+
"valid_values": "",
|
317
|
+
"existing_element": "",
|
318
|
+
"description": "Optional namespace that scopes the field.",
|
319
|
+
"qualified_name_pattern": "",
|
320
|
+
"generated": false,
|
321
|
+
"style": "Simple",
|
322
|
+
"user_specified": true,
|
323
|
+
"unique": false,
|
324
|
+
"input_required": false,
|
325
|
+
"position": 10,
|
326
|
+
"ReferenceURL": "",
|
327
|
+
"isParent": false,
|
328
|
+
"isAnchor": false,
|
329
|
+
"min_cardinality": 0,
|
330
|
+
"max_cardinality": 1,
|
331
|
+
"level": "Advanced",
|
332
|
+
"Journal Entry": ""
|
333
|
+
}
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"isNullable": {
|
337
|
+
"variable_name": "is_nullable",
|
338
|
+
"inUpdate": true,
|
339
|
+
"attr_labels": "Nullable",
|
340
|
+
"examples": "",
|
341
|
+
"default_value": "true",
|
342
|
+
"valid_values": "",
|
343
|
+
"existing_element": "",
|
344
|
+
"description": "Can the values within the dataclass be absent?",
|
345
|
+
"qualified_name_pattern": "",
|
346
|
+
"generated": false,
|
347
|
+
"style": "Bool",
|
348
|
+
"user_specified": true,
|
349
|
+
"unique": false,
|
350
|
+
"input_required": false,
|
351
|
+
"position": 11,
|
352
|
+
"ReferenceURL": "",
|
353
|
+
"isParent": false,
|
354
|
+
"isAnchor": false,
|
355
|
+
"min_cardinality": 0,
|
356
|
+
"max_cardinality": 1,
|
357
|
+
"level": "Basic",
|
358
|
+
"Journal Entry": ""
|
359
|
+
}
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"Minimum Length": {
|
363
|
+
"variable_name": "min_length",
|
364
|
+
"inUpdate": true,
|
365
|
+
"attr_labels": "Min Length",
|
366
|
+
"examples": "",
|
367
|
+
"default_value": "",
|
368
|
+
"valid_values": "",
|
369
|
+
"existing_element": "",
|
370
|
+
"description": "",
|
371
|
+
"qualified_name_pattern": "",
|
372
|
+
"generated": false,
|
373
|
+
"style": "Simple Int",
|
374
|
+
"user_specified": true,
|
375
|
+
"unique": false,
|
376
|
+
"input_required": false,
|
377
|
+
"position": 12,
|
378
|
+
"ReferenceURL": "",
|
379
|
+
"isParent": false,
|
380
|
+
"isAnchor": false,
|
381
|
+
"min_cardinality": 0,
|
382
|
+
"max_cardinality": 1,
|
383
|
+
"level": "Basic",
|
384
|
+
"Journal Entry": ""
|
385
|
+
}
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"Length": {
|
389
|
+
"variable_name": "length",
|
390
|
+
"inUpdate": true,
|
391
|
+
"attr_labels": "",
|
392
|
+
"examples": "",
|
393
|
+
"default_value": "",
|
394
|
+
"valid_values": "",
|
395
|
+
"existing_element": "",
|
396
|
+
"description": "The length of a value for a field.",
|
397
|
+
"qualified_name_pattern": "",
|
398
|
+
"generated": false,
|
399
|
+
"style": "Simple Int",
|
400
|
+
"user_specified": true,
|
401
|
+
"unique": false,
|
402
|
+
"input_required": false,
|
403
|
+
"position": 13,
|
404
|
+
"ReferenceURL": "",
|
405
|
+
"isParent": false,
|
406
|
+
"isAnchor": false,
|
407
|
+
"min_cardinality": 0,
|
408
|
+
"max_cardinality": 1,
|
409
|
+
"level": "Basic",
|
410
|
+
"Journal Entry": ""
|
411
|
+
}
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"Precision": {
|
415
|
+
"variable_name": "precision",
|
416
|
+
"inUpdate": true,
|
417
|
+
"attr_labels": "",
|
418
|
+
"examples": "",
|
419
|
+
"default_value": "",
|
420
|
+
"valid_values": "",
|
421
|
+
"existing_element": "",
|
422
|
+
"description": "The precision of a numeric",
|
423
|
+
"qualified_name_pattern": "",
|
424
|
+
"generated": false,
|
425
|
+
"style": "Simple",
|
426
|
+
"user_specified": true,
|
427
|
+
"unique": false,
|
428
|
+
"input_required": false,
|
429
|
+
"position": 14,
|
430
|
+
"ReferenceURL": "",
|
431
|
+
"isParent": false,
|
432
|
+
"isAnchor": false,
|
433
|
+
"min_cardinality": 0,
|
434
|
+
"max_cardinality": 1,
|
435
|
+
"level": "Basic",
|
436
|
+
"Journal Entry": "How do we express precision?"
|
437
|
+
}
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"Ordered Values": {
|
441
|
+
"variable_name": "ordered_values",
|
442
|
+
"inUpdate": true,
|
443
|
+
"attr_labels": "",
|
444
|
+
"examples": "",
|
445
|
+
"default_value": "",
|
446
|
+
"valid_values": "",
|
447
|
+
"existing_element": "",
|
448
|
+
"description": "is this field in an ordered list?",
|
449
|
+
"qualified_name_pattern": "",
|
450
|
+
"generated": false,
|
451
|
+
"style": "Bool",
|
452
|
+
"user_specified": true,
|
453
|
+
"unique": false,
|
454
|
+
"input_required": false,
|
455
|
+
"position": 15,
|
456
|
+
"ReferenceURL": "",
|
457
|
+
"isParent": false,
|
458
|
+
"isAnchor": false,
|
459
|
+
"min_cardinality": 0,
|
460
|
+
"max_cardinality": 1,
|
461
|
+
"level": "Basic",
|
462
|
+
"Journal Entry": "Need good examples of this. Not sure I understand how to interpret."
|
463
|
+
}
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"Units": {
|
467
|
+
"variable_name": "units",
|
468
|
+
"inUpdate": true,
|
469
|
+
"attr_labels": "gradians",
|
470
|
+
"examples": "",
|
471
|
+
"default_value": "",
|
472
|
+
"valid_values": "",
|
473
|
+
"existing_element": "",
|
474
|
+
"description": "An optional string indicating the units of the field.",
|
475
|
+
"qualified_name_pattern": "",
|
476
|
+
"generated": false,
|
477
|
+
"style": "Simple",
|
478
|
+
"user_specified": true,
|
479
|
+
"unique": false,
|
480
|
+
"input_required": false,
|
481
|
+
"position": 0,
|
482
|
+
"ReferenceURL": "",
|
483
|
+
"isParent": false,
|
484
|
+
"isAnchor": false,
|
485
|
+
"min_cardinality": 0,
|
486
|
+
"max_cardinality": 1,
|
487
|
+
"level": "Basic",
|
488
|
+
"Journal Entry": ""
|
489
|
+
}
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"Sort Order": {
|
493
|
+
"variable_name": "sort_order",
|
494
|
+
"inUpdate": true,
|
495
|
+
"attr_labels": "",
|
496
|
+
"examples": "",
|
497
|
+
"default_value": "",
|
498
|
+
"valid_values": "",
|
499
|
+
"existing_element": "",
|
500
|
+
"description": "Method by which this field should be sorted?",
|
501
|
+
"qualified_name_pattern": "",
|
502
|
+
"generated": false,
|
503
|
+
"style": "Simple",
|
504
|
+
"user_specified": true,
|
505
|
+
"unique": false,
|
506
|
+
"input_required": false,
|
507
|
+
"position": 16,
|
508
|
+
"ReferenceURL": "",
|
509
|
+
"isParent": false,
|
510
|
+
"isAnchor": false,
|
511
|
+
"min_cardinality": 0,
|
512
|
+
"max_cardinality": 1,
|
513
|
+
"level": "Advanced",
|
514
|
+
"Journal Entry": "Need examples of this."
|
515
|
+
}
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"Additional Properties": {
|
519
|
+
"variable_name": "additional_properties",
|
520
|
+
"inUpdate": true,
|
521
|
+
"attr_labels": "",
|
522
|
+
"examples": "",
|
523
|
+
"default_value": "",
|
524
|
+
"valid_values": "",
|
525
|
+
"existing_element": "",
|
526
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
527
|
+
"qualified_name_pattern": "",
|
528
|
+
"generated": false,
|
529
|
+
"style": "Dictionary",
|
530
|
+
"user_specified": true,
|
531
|
+
"unique": false,
|
532
|
+
"input_required": false,
|
533
|
+
"position": 17,
|
534
|
+
"ReferenceURL": "",
|
535
|
+
"isParent": false,
|
536
|
+
"isAnchor": false,
|
537
|
+
"min_cardinality": 0,
|
538
|
+
"max_cardinality": -1,
|
539
|
+
"level": "Invisible",
|
540
|
+
"Journal Entry": ""
|
541
|
+
}
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"Extended Properties": {
|
545
|
+
"variable_name": "additional_properties",
|
546
|
+
"inUpdate": true,
|
547
|
+
"attr_labels": "",
|
548
|
+
"examples": "",
|
549
|
+
"default_value": "",
|
550
|
+
"valid_values": "",
|
551
|
+
"existing_element": "",
|
552
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
553
|
+
"qualified_name_pattern": "",
|
554
|
+
"generated": false,
|
555
|
+
"style": "Dictionary",
|
556
|
+
"user_specified": true,
|
557
|
+
"unique": false,
|
558
|
+
"input_required": false,
|
559
|
+
"position": 17,
|
560
|
+
"ReferenceURL": "",
|
561
|
+
"isParent": false,
|
562
|
+
"isAnchor": false,
|
563
|
+
"min_cardinality": 0,
|
564
|
+
"max_cardinality": -1,
|
565
|
+
"level": "Invisible",
|
566
|
+
"Journal Entry": ""
|
567
|
+
}
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"Default Value": {
|
571
|
+
"variable_name": "default_value",
|
572
|
+
"inUpdate": true,
|
573
|
+
"attr_labels": "Default",
|
574
|
+
"examples": "",
|
575
|
+
"default_value": "",
|
576
|
+
"valid_values": "",
|
577
|
+
"existing_element": "",
|
578
|
+
"description": "Specify a default value for the data class.",
|
579
|
+
"qualified_name_pattern": "",
|
580
|
+
"generated": false,
|
581
|
+
"style": "Simple",
|
582
|
+
"user_specified": true,
|
583
|
+
"unique": false,
|
584
|
+
"input_required": false,
|
585
|
+
"position": 18,
|
586
|
+
"ReferenceURL": "",
|
587
|
+
"isParent": false,
|
588
|
+
"isAnchor": false,
|
589
|
+
"min_cardinality": 0,
|
590
|
+
"max_cardinality": 1,
|
591
|
+
"level": "Basic",
|
592
|
+
"Journal Entry": ""
|
593
|
+
}
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"Version Identifier": {
|
597
|
+
"variable_name": "version_id",
|
598
|
+
"inUpdate": true,
|
599
|
+
"attr_labels": "",
|
600
|
+
"examples": "0.1",
|
601
|
+
"default_value": "",
|
602
|
+
"valid_values": "",
|
603
|
+
"existing_element": "",
|
604
|
+
"description": "A user supplied version identifier.",
|
605
|
+
"qualified_name_pattern": "",
|
606
|
+
"generated": false,
|
607
|
+
"style": "Simple",
|
608
|
+
"user_specified": true,
|
609
|
+
"unique": false,
|
610
|
+
"input_required": false,
|
611
|
+
"position": 19,
|
612
|
+
"ReferenceURL": "",
|
613
|
+
"isParent": false,
|
614
|
+
"isAnchor": false,
|
615
|
+
"min_cardinality": 0,
|
616
|
+
"max_cardinality": 1,
|
617
|
+
"level": "Basic",
|
618
|
+
"Journal Entry": ""
|
619
|
+
}
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"In Data Dictionary": {
|
623
|
+
"variable_name": "in_data_dictionary",
|
624
|
+
"inUpdate": true,
|
625
|
+
"attr_labels": "",
|
626
|
+
"examples": "Shipping Data Dictionary",
|
627
|
+
"default_value": "",
|
628
|
+
"valid_values": "",
|
629
|
+
"existing_element": "DataDictionary",
|
630
|
+
"description": "What data dictionaries is this data field in?",
|
631
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataDictionary:display_name::version_id",
|
632
|
+
"generated": false,
|
633
|
+
"style": "Reference Name List",
|
634
|
+
"user_specified": true,
|
635
|
+
"unique": false,
|
636
|
+
"input_required": false,
|
637
|
+
"position": 20,
|
638
|
+
"ReferenceURL": "",
|
639
|
+
"isParent": false,
|
640
|
+
"isAnchor": false,
|
641
|
+
"min_cardinality": 0,
|
642
|
+
"max_cardinality": -1,
|
643
|
+
"level": "Basic",
|
644
|
+
"Journal Entry": ""
|
645
|
+
}
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"Parent Data Field": {
|
649
|
+
"variable_name": "parent_data_field",
|
650
|
+
"inUpdate": true,
|
651
|
+
"attr_labels": "Parent",
|
652
|
+
"examples": "",
|
653
|
+
"default_value": "",
|
654
|
+
"valid_values": "",
|
655
|
+
"existing_element": "DataField",
|
656
|
+
"description": "Optional parent field if this is a nested field.",
|
657
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataField::display_name::version_id",
|
658
|
+
"generated": false,
|
659
|
+
"style": "Reference Name List",
|
660
|
+
"user_specified": true,
|
661
|
+
"unique": false,
|
662
|
+
"input_required": false,
|
663
|
+
"position": 21,
|
664
|
+
"ReferenceURL": "",
|
665
|
+
"isParent": false,
|
666
|
+
"isAnchor": false,
|
667
|
+
"min_cardinality": 0,
|
668
|
+
"max_cardinality": 1,
|
669
|
+
"level": "Basic",
|
670
|
+
"Journal Entry": ""
|
671
|
+
}
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"Qualified Name": {
|
675
|
+
"variable_name": "qualified_name",
|
676
|
+
"inUpdate": true,
|
677
|
+
"attr_labels": "",
|
678
|
+
"examples": "dataField::a data field",
|
679
|
+
"default_value": "",
|
680
|
+
"valid_values": "",
|
681
|
+
"existing_element": "",
|
682
|
+
"description": "A unique qualified name for the element. Generated using the qualified name pattern if not user specified.",
|
683
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataField::display_name::version_id",
|
684
|
+
"generated": true,
|
685
|
+
"style": "QN",
|
686
|
+
"user_specified": true,
|
687
|
+
"unique": true,
|
688
|
+
"input_required": false,
|
689
|
+
"position": 22,
|
690
|
+
"ReferenceURL": "",
|
691
|
+
"isParent": false,
|
692
|
+
"isAnchor": false,
|
693
|
+
"min_cardinality": 1,
|
694
|
+
"max_cardinality": 1,
|
695
|
+
"level": "Basic",
|
696
|
+
"Journal Entry": ""
|
697
|
+
}
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"GUID": {
|
701
|
+
"variable_name": "guid",
|
702
|
+
"inUpdate": true,
|
703
|
+
"attr_labels": "",
|
704
|
+
"examples": "00585a82-0f7d-45ef-9b87-7078665917a9",
|
705
|
+
"default_value": "",
|
706
|
+
"valid_values": "",
|
707
|
+
"existing_element": "",
|
708
|
+
"description": "A generated unique identifier.",
|
709
|
+
"qualified_name_pattern": "",
|
710
|
+
"generated": true,
|
711
|
+
"style": "GUID",
|
712
|
+
"user_specified": false,
|
713
|
+
"unique": true,
|
714
|
+
"input_required": false,
|
715
|
+
"position": 23,
|
716
|
+
"ReferenceURL": "",
|
717
|
+
"isParent": false,
|
718
|
+
"isAnchor": false,
|
719
|
+
"min_cardinality": 1,
|
720
|
+
"max_cardinality": 1,
|
721
|
+
"level": "Basic",
|
722
|
+
"Journal Entry": ""
|
723
|
+
}
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"Merge Update": {
|
727
|
+
"variable_name": "merge_update",
|
728
|
+
"inUpdate": true,
|
729
|
+
"attr_labels": "Merge",
|
730
|
+
"examples": "",
|
731
|
+
"default_value": "True",
|
732
|
+
"valid_values": "",
|
733
|
+
"existing_element": "",
|
734
|
+
"description": "If true, only those attributes specified in the update will be updated; If false, any attributes not provided during the update will be set to None.",
|
735
|
+
"qualified_name_pattern": "",
|
736
|
+
"generated": false,
|
737
|
+
"style": "Bool",
|
738
|
+
"user_specified": true,
|
739
|
+
"unique": false,
|
740
|
+
"input_required": false,
|
741
|
+
"position": 0,
|
742
|
+
"ReferenceURL": "",
|
743
|
+
"isParent": false,
|
744
|
+
"isAnchor": false,
|
745
|
+
"min_cardinality": 0,
|
746
|
+
"max_cardinality": 1,
|
747
|
+
"level": "Advanced",
|
748
|
+
"Journal Entry": ""
|
749
|
+
}
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"Journal Entry": {
|
753
|
+
"variable_name": "journal_entry",
|
754
|
+
"inUpdate": true,
|
755
|
+
"attr_labels": "",
|
756
|
+
"examples": "",
|
757
|
+
"default_value": "",
|
758
|
+
"valid_values": "",
|
759
|
+
"existing_element": "",
|
760
|
+
"description": "",
|
761
|
+
"qualified_name_pattern": "",
|
762
|
+
"generated": false,
|
763
|
+
"style": "Simple",
|
764
|
+
"user_specified": true,
|
765
|
+
"unique": false,
|
766
|
+
"input_required": false,
|
767
|
+
"position": 0,
|
768
|
+
"ReferenceURL": "",
|
769
|
+
"isParent": false,
|
770
|
+
"isAnchor": false,
|
771
|
+
"min_cardinality": 0,
|
772
|
+
"max_cardinality": 1,
|
773
|
+
"level": "Invisible",
|
774
|
+
"Journal Entry": ""
|
775
|
+
}
|
776
|
+
}
|
777
|
+
]
|
778
|
+
},
|
779
|
+
"Data Dictionary": {
|
780
|
+
"display_name": "Data Dictionary",
|
781
|
+
"qn_prefix": "DataDict",
|
782
|
+
"alternate_names": "",
|
783
|
+
"description": "A Data Dictionary is an organized and curated collection of data definitions that can serve as a reference for data professionals",
|
784
|
+
"upsert": false,
|
785
|
+
"list": false,
|
786
|
+
"details": false,
|
787
|
+
"form": false,
|
788
|
+
"ReferenceURL": "",
|
789
|
+
"isOwnAnchor": true,
|
790
|
+
"parent_relationship_type_name": "",
|
791
|
+
"parent_at_end1": true,
|
792
|
+
"style": "",
|
793
|
+
"anchor_scope_id": "",
|
794
|
+
"parent_id": "",
|
795
|
+
"level": "Basic",
|
796
|
+
"Journal Entry": "",
|
797
|
+
"Attributes": [
|
798
|
+
{
|
799
|
+
"Display Name": {
|
800
|
+
"variable_name": "display_name",
|
801
|
+
"inUpdate": true,
|
802
|
+
"attr_labels": "Name; Data Dictionary; Data Dict",
|
803
|
+
"examples": "",
|
804
|
+
"default_value": "",
|
805
|
+
"valid_values": "",
|
806
|
+
"existing_element": "",
|
807
|
+
"description": "Name of the Data Dictionary",
|
808
|
+
"qualified_name_pattern": "",
|
809
|
+
"generated": false,
|
810
|
+
"style": "ID",
|
811
|
+
"user_specified": true,
|
812
|
+
"unique": false,
|
813
|
+
"input_required": true,
|
814
|
+
"position": 0,
|
815
|
+
"ReferenceURL": "",
|
816
|
+
"isParent": false,
|
817
|
+
"isAnchor": false,
|
818
|
+
"min_cardinality": 1,
|
819
|
+
"max_cardinality": 1,
|
820
|
+
"level": "Basic",
|
821
|
+
"Journal Entry": ""
|
822
|
+
}
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"Description": {
|
826
|
+
"variable_name": "description",
|
827
|
+
"inUpdate": true,
|
828
|
+
"attr_labels": "",
|
829
|
+
"examples": "",
|
830
|
+
"default_value": "",
|
831
|
+
"valid_values": "",
|
832
|
+
"existing_element": "",
|
833
|
+
"description": "A description of the Data Dictionary.",
|
834
|
+
"qualified_name_pattern": "",
|
835
|
+
"generated": false,
|
836
|
+
"style": "Simple",
|
837
|
+
"user_specified": true,
|
838
|
+
"unique": false,
|
839
|
+
"input_required": false,
|
840
|
+
"position": 1,
|
841
|
+
"ReferenceURL": "",
|
842
|
+
"isParent": false,
|
843
|
+
"isAnchor": false,
|
844
|
+
"min_cardinality": 0,
|
845
|
+
"max_cardinality": 1,
|
846
|
+
"level": "Basic",
|
847
|
+
"Journal Entry": ""
|
848
|
+
}
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"Is Own Anchor": {
|
852
|
+
"variable_name": "is_own_anchor",
|
853
|
+
"inUpdate": true,
|
854
|
+
"attr_labels": "Own Anchor",
|
855
|
+
"examples": "",
|
856
|
+
"default_value": "true",
|
857
|
+
"valid_values": "",
|
858
|
+
"existing_element": "",
|
859
|
+
"description": "Generally true. ",
|
860
|
+
"qualified_name_pattern": "",
|
861
|
+
"generated": false,
|
862
|
+
"style": "Bool",
|
863
|
+
"user_specified": true,
|
864
|
+
"unique": false,
|
865
|
+
"input_required": false,
|
866
|
+
"position": 0,
|
867
|
+
"ReferenceURL": "",
|
868
|
+
"isParent": false,
|
869
|
+
"isAnchor": false,
|
870
|
+
"min_cardinality": 1,
|
871
|
+
"max_cardinality": 1,
|
872
|
+
"level": "Advanced",
|
873
|
+
"Journal Entry": ""
|
874
|
+
}
|
875
|
+
},
|
876
|
+
{
|
877
|
+
"Anchor ID": {
|
878
|
+
"variable_name": "anchor_id",
|
879
|
+
"inUpdate": true,
|
880
|
+
"attr_labels": "",
|
881
|
+
"examples": "",
|
882
|
+
"default_value": "",
|
883
|
+
"valid_values": "",
|
884
|
+
"existing_element": "",
|
885
|
+
"description": "Anchor identity for the collection. Typically a qualified name but if display name is unique then it could be used (not recommended)",
|
886
|
+
"qualified_name_pattern": "",
|
887
|
+
"generated": false,
|
888
|
+
"style": "Reference Name",
|
889
|
+
"user_specified": true,
|
890
|
+
"unique": true,
|
891
|
+
"input_required": false,
|
892
|
+
"position": 0,
|
893
|
+
"ReferenceURL": "",
|
894
|
+
"isParent": false,
|
895
|
+
"isAnchor": false,
|
896
|
+
"min_cardinality": 0,
|
897
|
+
"max_cardinality": 1,
|
898
|
+
"level": "Advanced",
|
899
|
+
"Journal Entry": ""
|
900
|
+
}
|
901
|
+
},
|
902
|
+
{
|
903
|
+
"Parent ID": {
|
904
|
+
"variable_name": "parent_id",
|
905
|
+
"inUpdate": true,
|
906
|
+
"attr_labels": "Parent;",
|
907
|
+
"examples": "DataDict::MyParent",
|
908
|
+
"default_value": "",
|
909
|
+
"valid_values": "",
|
910
|
+
"existing_element": "DataDicti",
|
911
|
+
"description": "Unique name of the parent element.",
|
912
|
+
"qualified_name_pattern": "",
|
913
|
+
"generated": false,
|
914
|
+
"style": "Reference Name",
|
915
|
+
"user_specified": true,
|
916
|
+
"unique": false,
|
917
|
+
"input_required": false,
|
918
|
+
"position": 0,
|
919
|
+
"ReferenceURL": "",
|
920
|
+
"isParent": false,
|
921
|
+
"isAnchor": false,
|
922
|
+
"min_cardinality": 0,
|
923
|
+
"max_cardinality": 1,
|
924
|
+
"level": "Advanced",
|
925
|
+
"Journal Entry": "Should the parent be anything or just a collection?"
|
926
|
+
}
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"Parent Relationship Type Name": {
|
930
|
+
"variable_name": "parent_rel_type_name",
|
931
|
+
"inUpdate": true,
|
932
|
+
"attr_labels": "",
|
933
|
+
"examples": "",
|
934
|
+
"default_value": "",
|
935
|
+
"valid_values": "",
|
936
|
+
"existing_element": "",
|
937
|
+
"description": "The kind of the relationshio to the parent element.",
|
938
|
+
"qualified_name_pattern": "",
|
939
|
+
"generated": false,
|
940
|
+
"style": "Simple",
|
941
|
+
"user_specified": true,
|
942
|
+
"unique": false,
|
943
|
+
"input_required": false,
|
944
|
+
"position": 0,
|
945
|
+
"ReferenceURL": "",
|
946
|
+
"isParent": false,
|
947
|
+
"isAnchor": false,
|
948
|
+
"min_cardinality": 0,
|
949
|
+
"max_cardinality": 1,
|
950
|
+
"level": "Advanced",
|
951
|
+
"Journal Entry": "Any restrictions?"
|
952
|
+
}
|
953
|
+
},
|
954
|
+
{
|
955
|
+
"Glossary Term": {
|
956
|
+
"variable_name": "glossary_term",
|
957
|
+
"inUpdate": true,
|
958
|
+
"attr_labels": "",
|
959
|
+
"examples": "Term::Zip Code",
|
960
|
+
"default_value": "",
|
961
|
+
"valid_values": "",
|
962
|
+
"existing_element": "GlossaryTerm",
|
963
|
+
"description": "Term that provides meaning to this field.",
|
964
|
+
"qualified_name_pattern": "",
|
965
|
+
"generated": false,
|
966
|
+
"style": "Reference Name",
|
967
|
+
"user_specified": true,
|
968
|
+
"unique": false,
|
969
|
+
"input_required": false,
|
970
|
+
"position": 8,
|
971
|
+
"ReferenceURL": "",
|
972
|
+
"isParent": false,
|
973
|
+
"isAnchor": false,
|
974
|
+
"min_cardinality": 0,
|
975
|
+
"max_cardinality": 1,
|
976
|
+
"level": "Advanced",
|
977
|
+
"Journal Entry": ""
|
978
|
+
}
|
979
|
+
},
|
980
|
+
{
|
981
|
+
"Anchor Scope Name": {
|
982
|
+
"variable_name": "anchor_scope_guid",
|
983
|
+
"inUpdate": true,
|
984
|
+
"attr_labels": "",
|
985
|
+
"examples": "",
|
986
|
+
"default_value": "",
|
987
|
+
"valid_values": "",
|
988
|
+
"existing_element": "DataDict",
|
989
|
+
"description": "Optional qualified name of an anchor scope.",
|
990
|
+
"qualified_name_pattern": "",
|
991
|
+
"generated": false,
|
992
|
+
"style": "Reference Name",
|
993
|
+
"user_specified": true,
|
994
|
+
"unique": false,
|
995
|
+
"input_required": false,
|
996
|
+
"position": 0,
|
997
|
+
"ReferenceURL": "",
|
998
|
+
"isParent": false,
|
999
|
+
"isAnchor": false,
|
1000
|
+
"min_cardinality": 0,
|
1001
|
+
"max_cardinality": 1,
|
1002
|
+
"level": "Basic",
|
1003
|
+
"Journal Entry": ""
|
1004
|
+
}
|
1005
|
+
},
|
1006
|
+
{
|
1007
|
+
"Collection Ordering": {
|
1008
|
+
"variable_name": "",
|
1009
|
+
"inUpdate": true,
|
1010
|
+
"attr_labels": "",
|
1011
|
+
"examples": "",
|
1012
|
+
"default_value": "",
|
1013
|
+
"valid_values": "",
|
1014
|
+
"existing_element": "",
|
1015
|
+
"description": "",
|
1016
|
+
"qualified_name_pattern": "",
|
1017
|
+
"generated": false,
|
1018
|
+
"style": "Simple Int",
|
1019
|
+
"user_specified": true,
|
1020
|
+
"unique": false,
|
1021
|
+
"input_required": false,
|
1022
|
+
"position": 0,
|
1023
|
+
"ReferenceURL": "",
|
1024
|
+
"isParent": false,
|
1025
|
+
"isAnchor": false,
|
1026
|
+
"min_cardinality": 1,
|
1027
|
+
"max_cardinality": 1,
|
1028
|
+
"level": "Advanced",
|
1029
|
+
"Journal Entry": ""
|
1030
|
+
}
|
1031
|
+
},
|
1032
|
+
{
|
1033
|
+
"Order Property Name": {
|
1034
|
+
"variable_name": "",
|
1035
|
+
"inUpdate": true,
|
1036
|
+
"attr_labels": "",
|
1037
|
+
"examples": "",
|
1038
|
+
"default_value": "",
|
1039
|
+
"valid_values": "",
|
1040
|
+
"existing_element": "",
|
1041
|
+
"description": "",
|
1042
|
+
"qualified_name_pattern": "",
|
1043
|
+
"generated": false,
|
1044
|
+
"style": "Simple",
|
1045
|
+
"user_specified": true,
|
1046
|
+
"unique": false,
|
1047
|
+
"input_required": false,
|
1048
|
+
"position": 0,
|
1049
|
+
"ReferenceURL": "",
|
1050
|
+
"isParent": false,
|
1051
|
+
"isAnchor": false,
|
1052
|
+
"min_cardinality": 1,
|
1053
|
+
"max_cardinality": 1,
|
1054
|
+
"level": "Advanced",
|
1055
|
+
"Journal Entry": ""
|
1056
|
+
}
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"Parent at End1": {
|
1060
|
+
"variable_name": "parent_end1",
|
1061
|
+
"inUpdate": true,
|
1062
|
+
"attr_labels": "",
|
1063
|
+
"examples": "",
|
1064
|
+
"default_value": "True",
|
1065
|
+
"valid_values": "",
|
1066
|
+
"existing_element": "",
|
1067
|
+
"description": "Is the parent at end1 of the relationship?",
|
1068
|
+
"qualified_name_pattern": "",
|
1069
|
+
"generated": false,
|
1070
|
+
"style": "Bool",
|
1071
|
+
"user_specified": true,
|
1072
|
+
"unique": false,
|
1073
|
+
"input_required": false,
|
1074
|
+
"position": 0,
|
1075
|
+
"ReferenceURL": "",
|
1076
|
+
"isParent": false,
|
1077
|
+
"isAnchor": false,
|
1078
|
+
"min_cardinality": 0,
|
1079
|
+
"max_cardinality": 1,
|
1080
|
+
"level": "Advanced",
|
1081
|
+
"Journal Entry": ""
|
1082
|
+
}
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"Qualified Name": {
|
1086
|
+
"variable_name": "qualified_name",
|
1087
|
+
"inUpdate": true,
|
1088
|
+
"attr_labels": "",
|
1089
|
+
"examples": "dataField::a data field",
|
1090
|
+
"default_value": "",
|
1091
|
+
"valid_values": "",
|
1092
|
+
"existing_element": "",
|
1093
|
+
"description": "A unique qualified name for the element. Generated using the qualified name pattern if not user specified.",
|
1094
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataDictionary:display_name::version_id",
|
1095
|
+
"generated": true,
|
1096
|
+
"style": "QN",
|
1097
|
+
"user_specified": true,
|
1098
|
+
"unique": true,
|
1099
|
+
"input_required": false,
|
1100
|
+
"position": 2,
|
1101
|
+
"ReferenceURL": "",
|
1102
|
+
"isParent": false,
|
1103
|
+
"isAnchor": false,
|
1104
|
+
"min_cardinality": 1,
|
1105
|
+
"max_cardinality": 1,
|
1106
|
+
"level": "Basic",
|
1107
|
+
"Journal Entry": ""
|
1108
|
+
}
|
1109
|
+
},
|
1110
|
+
{
|
1111
|
+
"GUID": {
|
1112
|
+
"variable_name": "guid",
|
1113
|
+
"inUpdate": true,
|
1114
|
+
"attr_labels": "",
|
1115
|
+
"examples": "00585a82-0f7d-45ef-9b87-7078665917a9",
|
1116
|
+
"default_value": "",
|
1117
|
+
"valid_values": "",
|
1118
|
+
"existing_element": "",
|
1119
|
+
"description": "A generated unique identifier.",
|
1120
|
+
"qualified_name_pattern": "",
|
1121
|
+
"generated": true,
|
1122
|
+
"style": "GUID",
|
1123
|
+
"user_specified": false,
|
1124
|
+
"unique": true,
|
1125
|
+
"input_required": false,
|
1126
|
+
"position": 3,
|
1127
|
+
"ReferenceURL": "",
|
1128
|
+
"isParent": false,
|
1129
|
+
"isAnchor": false,
|
1130
|
+
"min_cardinality": 1,
|
1131
|
+
"max_cardinality": 1,
|
1132
|
+
"level": "Basic",
|
1133
|
+
"Journal Entry": ""
|
1134
|
+
}
|
1135
|
+
},
|
1136
|
+
{
|
1137
|
+
"Merge Update": {
|
1138
|
+
"variable_name": "merge_update",
|
1139
|
+
"inUpdate": true,
|
1140
|
+
"attr_labels": "Merge",
|
1141
|
+
"examples": "",
|
1142
|
+
"default_value": "True",
|
1143
|
+
"valid_values": "",
|
1144
|
+
"existing_element": "",
|
1145
|
+
"description": "If true, only those attributes specified in the update will be updated; If false, any attributes not provided during the update will be set to None.",
|
1146
|
+
"qualified_name_pattern": "",
|
1147
|
+
"generated": false,
|
1148
|
+
"style": "Bool",
|
1149
|
+
"user_specified": true,
|
1150
|
+
"unique": false,
|
1151
|
+
"input_required": false,
|
1152
|
+
"position": 0,
|
1153
|
+
"ReferenceURL": "",
|
1154
|
+
"isParent": false,
|
1155
|
+
"isAnchor": false,
|
1156
|
+
"min_cardinality": 0,
|
1157
|
+
"max_cardinality": 1,
|
1158
|
+
"level": "Advanced",
|
1159
|
+
"Journal Entry": ""
|
1160
|
+
}
|
1161
|
+
},
|
1162
|
+
{
|
1163
|
+
"Additional Properties": {
|
1164
|
+
"variable_name": "additional_properties",
|
1165
|
+
"inUpdate": true,
|
1166
|
+
"attr_labels": "",
|
1167
|
+
"examples": "",
|
1168
|
+
"default_value": "",
|
1169
|
+
"valid_values": "",
|
1170
|
+
"existing_element": "",
|
1171
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
1172
|
+
"qualified_name_pattern": "",
|
1173
|
+
"generated": false,
|
1174
|
+
"style": "Dictionary",
|
1175
|
+
"user_specified": true,
|
1176
|
+
"unique": false,
|
1177
|
+
"input_required": false,
|
1178
|
+
"position": 17,
|
1179
|
+
"ReferenceURL": "",
|
1180
|
+
"isParent": false,
|
1181
|
+
"isAnchor": false,
|
1182
|
+
"min_cardinality": 0,
|
1183
|
+
"max_cardinality": -1,
|
1184
|
+
"level": "Invisible",
|
1185
|
+
"Journal Entry": ""
|
1186
|
+
}
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"Extended Properties": {
|
1190
|
+
"variable_name": "additional_properties",
|
1191
|
+
"inUpdate": true,
|
1192
|
+
"attr_labels": "",
|
1193
|
+
"examples": "",
|
1194
|
+
"default_value": "",
|
1195
|
+
"valid_values": "",
|
1196
|
+
"existing_element": "",
|
1197
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
1198
|
+
"qualified_name_pattern": "",
|
1199
|
+
"generated": false,
|
1200
|
+
"style": "Dictionary",
|
1201
|
+
"user_specified": true,
|
1202
|
+
"unique": false,
|
1203
|
+
"input_required": false,
|
1204
|
+
"position": 17,
|
1205
|
+
"ReferenceURL": "",
|
1206
|
+
"isParent": false,
|
1207
|
+
"isAnchor": false,
|
1208
|
+
"min_cardinality": 0,
|
1209
|
+
"max_cardinality": -1,
|
1210
|
+
"level": "Invisible",
|
1211
|
+
"Journal Entry": ""
|
1212
|
+
}
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"Journal Entry": {
|
1216
|
+
"variable_name": "journal_entry",
|
1217
|
+
"inUpdate": true,
|
1218
|
+
"attr_labels": "",
|
1219
|
+
"examples": "",
|
1220
|
+
"default_value": "",
|
1221
|
+
"valid_values": "",
|
1222
|
+
"existing_element": "",
|
1223
|
+
"description": "",
|
1224
|
+
"qualified_name_pattern": "",
|
1225
|
+
"generated": false,
|
1226
|
+
"style": "Simple",
|
1227
|
+
"user_specified": true,
|
1228
|
+
"unique": false,
|
1229
|
+
"input_required": false,
|
1230
|
+
"position": 0,
|
1231
|
+
"ReferenceURL": "",
|
1232
|
+
"isParent": false,
|
1233
|
+
"isAnchor": false,
|
1234
|
+
"min_cardinality": 0,
|
1235
|
+
"max_cardinality": 1,
|
1236
|
+
"level": "Invisible",
|
1237
|
+
"Journal Entry": ""
|
1238
|
+
}
|
1239
|
+
}
|
1240
|
+
]
|
1241
|
+
},
|
1242
|
+
"Data Specification": {
|
1243
|
+
"display_name": "Data Specification",
|
1244
|
+
"qn_prefix": "DataSpec",
|
1245
|
+
"alternate_names": "Data Spec",
|
1246
|
+
"description": "A Data Specification defines the data requirements for a project or initiative. This includes the data structures , data fields and data classes.",
|
1247
|
+
"upsert": true,
|
1248
|
+
"list": false,
|
1249
|
+
"details": false,
|
1250
|
+
"form": false,
|
1251
|
+
"ReferenceURL": "https://egeria-project.org/concepts/data-specification",
|
1252
|
+
"isOwnAnchor": true,
|
1253
|
+
"parent_relationship_type_name": "",
|
1254
|
+
"parent_at_end1": true,
|
1255
|
+
"style": "Collection",
|
1256
|
+
"anchor_scope_id": "",
|
1257
|
+
"parent_id": "",
|
1258
|
+
"level": "Basic",
|
1259
|
+
"Journal Entry": "",
|
1260
|
+
"Attributes": [
|
1261
|
+
{
|
1262
|
+
"Display Name": {
|
1263
|
+
"variable_name": "display_name",
|
1264
|
+
"inUpdate": true,
|
1265
|
+
"attr_labels": "Data Spec; Name; Display Name; Data Specification",
|
1266
|
+
"examples": "Data Specification for Teddy Bear Drop Foot Clinical Trial",
|
1267
|
+
"default_value": "",
|
1268
|
+
"valid_values": "",
|
1269
|
+
"existing_element": "",
|
1270
|
+
"description": "Name of the Data Specification.",
|
1271
|
+
"qualified_name_pattern": "",
|
1272
|
+
"generated": false,
|
1273
|
+
"style": "ID",
|
1274
|
+
"user_specified": true,
|
1275
|
+
"unique": false,
|
1276
|
+
"input_required": true,
|
1277
|
+
"position": 0,
|
1278
|
+
"ReferenceURL": "",
|
1279
|
+
"isParent": false,
|
1280
|
+
"isAnchor": false,
|
1281
|
+
"min_cardinality": 1,
|
1282
|
+
"max_cardinality": 1,
|
1283
|
+
"level": "Basic",
|
1284
|
+
"Journal Entry": ""
|
1285
|
+
}
|
1286
|
+
},
|
1287
|
+
{
|
1288
|
+
"Description": {
|
1289
|
+
"variable_name": "description",
|
1290
|
+
"inUpdate": true,
|
1291
|
+
"attr_labels": "",
|
1292
|
+
"examples": "",
|
1293
|
+
"default_value": "",
|
1294
|
+
"valid_values": "",
|
1295
|
+
"existing_element": "",
|
1296
|
+
"description": "A description of the Data Specification.",
|
1297
|
+
"qualified_name_pattern": "",
|
1298
|
+
"generated": false,
|
1299
|
+
"style": "Simple",
|
1300
|
+
"user_specified": true,
|
1301
|
+
"unique": false,
|
1302
|
+
"input_required": false,
|
1303
|
+
"position": 1,
|
1304
|
+
"ReferenceURL": "",
|
1305
|
+
"isParent": false,
|
1306
|
+
"isAnchor": false,
|
1307
|
+
"min_cardinality": 0,
|
1308
|
+
"max_cardinality": 1,
|
1309
|
+
"level": "Basic",
|
1310
|
+
"Journal Entry": ""
|
1311
|
+
}
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"Is Own Anchor": {
|
1315
|
+
"variable_name": "is_own_anchor",
|
1316
|
+
"inUpdate": true,
|
1317
|
+
"attr_labels": "Own Anchor",
|
1318
|
+
"examples": "",
|
1319
|
+
"default_value": "true",
|
1320
|
+
"valid_values": "",
|
1321
|
+
"existing_element": "",
|
1322
|
+
"description": "This collection is its own anchor.",
|
1323
|
+
"qualified_name_pattern": "",
|
1324
|
+
"generated": false,
|
1325
|
+
"style": "Bool",
|
1326
|
+
"user_specified": true,
|
1327
|
+
"unique": false,
|
1328
|
+
"input_required": false,
|
1329
|
+
"position": 0,
|
1330
|
+
"ReferenceURL": "",
|
1331
|
+
"isParent": false,
|
1332
|
+
"isAnchor": false,
|
1333
|
+
"min_cardinality": 1,
|
1334
|
+
"max_cardinality": 1,
|
1335
|
+
"level": "Advanced",
|
1336
|
+
"Journal Entry": ""
|
1337
|
+
}
|
1338
|
+
},
|
1339
|
+
{
|
1340
|
+
"Anchor ID": {
|
1341
|
+
"variable_name": "anchor_id",
|
1342
|
+
"inUpdate": true,
|
1343
|
+
"attr_labels": "",
|
1344
|
+
"examples": "",
|
1345
|
+
"default_value": "",
|
1346
|
+
"valid_values": "",
|
1347
|
+
"existing_element": "",
|
1348
|
+
"description": "Anchor identity for the collection. Typically a qualified name but if display name is unique then it could be used (not recommended)",
|
1349
|
+
"qualified_name_pattern": "",
|
1350
|
+
"generated": false,
|
1351
|
+
"style": "Reference Name",
|
1352
|
+
"user_specified": true,
|
1353
|
+
"unique": true,
|
1354
|
+
"input_required": false,
|
1355
|
+
"position": 0,
|
1356
|
+
"ReferenceURL": "",
|
1357
|
+
"isParent": false,
|
1358
|
+
"isAnchor": false,
|
1359
|
+
"min_cardinality": 0,
|
1360
|
+
"max_cardinality": 1,
|
1361
|
+
"level": "Advanced",
|
1362
|
+
"Journal Entry": ""
|
1363
|
+
}
|
1364
|
+
},
|
1365
|
+
{
|
1366
|
+
"Parent ID": {
|
1367
|
+
"variable_name": "parent_id",
|
1368
|
+
"inUpdate": true,
|
1369
|
+
"attr_labels": "Parent;",
|
1370
|
+
"examples": "Project::MyProject",
|
1371
|
+
"default_value": "",
|
1372
|
+
"valid_values": "",
|
1373
|
+
"existing_element": "DataDicti",
|
1374
|
+
"description": "Unique name of the parent element. Could be a project.",
|
1375
|
+
"qualified_name_pattern": "",
|
1376
|
+
"generated": false,
|
1377
|
+
"style": "Reference Name",
|
1378
|
+
"user_specified": true,
|
1379
|
+
"unique": false,
|
1380
|
+
"input_required": false,
|
1381
|
+
"position": 0,
|
1382
|
+
"ReferenceURL": "",
|
1383
|
+
"isParent": false,
|
1384
|
+
"isAnchor": false,
|
1385
|
+
"min_cardinality": 0,
|
1386
|
+
"max_cardinality": 1,
|
1387
|
+
"level": "Advanced",
|
1388
|
+
"Journal Entry": "Should the parent be anything or just a collection?"
|
1389
|
+
}
|
1390
|
+
},
|
1391
|
+
{
|
1392
|
+
"Parent Relationship Type Name": {
|
1393
|
+
"variable_name": "parent_rel_type_name",
|
1394
|
+
"inUpdate": true,
|
1395
|
+
"attr_labels": "",
|
1396
|
+
"examples": "",
|
1397
|
+
"default_value": "",
|
1398
|
+
"valid_values": "",
|
1399
|
+
"existing_element": "",
|
1400
|
+
"description": "The kind of the relationshio to the parent element.",
|
1401
|
+
"qualified_name_pattern": "",
|
1402
|
+
"generated": false,
|
1403
|
+
"style": "Simple",
|
1404
|
+
"user_specified": true,
|
1405
|
+
"unique": false,
|
1406
|
+
"input_required": false,
|
1407
|
+
"position": 0,
|
1408
|
+
"ReferenceURL": "",
|
1409
|
+
"isParent": false,
|
1410
|
+
"isAnchor": false,
|
1411
|
+
"min_cardinality": 0,
|
1412
|
+
"max_cardinality": 1,
|
1413
|
+
"level": "Advanced",
|
1414
|
+
"Journal Entry": "Any restrictions?"
|
1415
|
+
}
|
1416
|
+
},
|
1417
|
+
{
|
1418
|
+
"Anchor Scope Name": {
|
1419
|
+
"variable_name": "anchor_scope_guid",
|
1420
|
+
"inUpdate": true,
|
1421
|
+
"attr_labels": "",
|
1422
|
+
"examples": "",
|
1423
|
+
"default_value": "",
|
1424
|
+
"valid_values": "",
|
1425
|
+
"existing_element": "DataDict",
|
1426
|
+
"description": "Optional anchor scope.",
|
1427
|
+
"qualified_name_pattern": "",
|
1428
|
+
"generated": false,
|
1429
|
+
"style": "Reference Name",
|
1430
|
+
"user_specified": true,
|
1431
|
+
"unique": false,
|
1432
|
+
"input_required": false,
|
1433
|
+
"position": 0,
|
1434
|
+
"ReferenceURL": "",
|
1435
|
+
"isParent": false,
|
1436
|
+
"isAnchor": false,
|
1437
|
+
"min_cardinality": 0,
|
1438
|
+
"max_cardinality": 1,
|
1439
|
+
"level": "Basic",
|
1440
|
+
"Journal Entry": ""
|
1441
|
+
}
|
1442
|
+
},
|
1443
|
+
{
|
1444
|
+
"Parent at End1": {
|
1445
|
+
"variable_name": "parent_end1",
|
1446
|
+
"inUpdate": true,
|
1447
|
+
"attr_labels": "",
|
1448
|
+
"examples": "",
|
1449
|
+
"default_value": "false",
|
1450
|
+
"valid_values": "",
|
1451
|
+
"existing_element": "",
|
1452
|
+
"description": "Is the parent at end1 of the relationship?",
|
1453
|
+
"qualified_name_pattern": "",
|
1454
|
+
"generated": false,
|
1455
|
+
"style": "Bool",
|
1456
|
+
"user_specified": true,
|
1457
|
+
"unique": false,
|
1458
|
+
"input_required": false,
|
1459
|
+
"position": 0,
|
1460
|
+
"ReferenceURL": "",
|
1461
|
+
"isParent": false,
|
1462
|
+
"isAnchor": false,
|
1463
|
+
"min_cardinality": 0,
|
1464
|
+
"max_cardinality": 1,
|
1465
|
+
"level": "Advanced",
|
1466
|
+
"Journal Entry": ""
|
1467
|
+
}
|
1468
|
+
},
|
1469
|
+
{
|
1470
|
+
"Glossary Term": {
|
1471
|
+
"variable_name": "glossary_term",
|
1472
|
+
"inUpdate": true,
|
1473
|
+
"attr_labels": "",
|
1474
|
+
"examples": "Term::Zip Code",
|
1475
|
+
"default_value": "",
|
1476
|
+
"valid_values": "",
|
1477
|
+
"existing_element": "GlossaryTerm",
|
1478
|
+
"description": "Term that provides meaning to this field.",
|
1479
|
+
"qualified_name_pattern": "",
|
1480
|
+
"generated": false,
|
1481
|
+
"style": "Reference Name",
|
1482
|
+
"user_specified": true,
|
1483
|
+
"unique": false,
|
1484
|
+
"input_required": false,
|
1485
|
+
"position": 8,
|
1486
|
+
"ReferenceURL": "",
|
1487
|
+
"isParent": false,
|
1488
|
+
"isAnchor": false,
|
1489
|
+
"min_cardinality": 0,
|
1490
|
+
"max_cardinality": 1,
|
1491
|
+
"level": "Advanced",
|
1492
|
+
"Journal Entry": ""
|
1493
|
+
}
|
1494
|
+
},
|
1495
|
+
{
|
1496
|
+
"Qualified Name": {
|
1497
|
+
"variable_name": "qualified_name",
|
1498
|
+
"inUpdate": true,
|
1499
|
+
"attr_labels": "",
|
1500
|
+
"examples": "dataFSpec:Data Spec for Teddy Bear Drop Foot Clinical Trial",
|
1501
|
+
"default_value": "",
|
1502
|
+
"valid_values": "",
|
1503
|
+
"existing_element": "",
|
1504
|
+
"description": "A unique qualified name for the element. Generated using the qualified name pattern if not user specified.",
|
1505
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataSpec:display_name::version_id",
|
1506
|
+
"generated": true,
|
1507
|
+
"style": "QN",
|
1508
|
+
"user_specified": true,
|
1509
|
+
"unique": true,
|
1510
|
+
"input_required": true,
|
1511
|
+
"position": 12,
|
1512
|
+
"ReferenceURL": "",
|
1513
|
+
"isParent": false,
|
1514
|
+
"isAnchor": false,
|
1515
|
+
"min_cardinality": 1,
|
1516
|
+
"max_cardinality": 1,
|
1517
|
+
"level": "Basic",
|
1518
|
+
"Journal Entry": ""
|
1519
|
+
}
|
1520
|
+
},
|
1521
|
+
{
|
1522
|
+
"GUID": {
|
1523
|
+
"variable_name": "guid",
|
1524
|
+
"inUpdate": true,
|
1525
|
+
"attr_labels": "",
|
1526
|
+
"examples": "00585a82-0f7d-45ef-9b87-7078665917a9",
|
1527
|
+
"default_value": "",
|
1528
|
+
"valid_values": "",
|
1529
|
+
"existing_element": "",
|
1530
|
+
"description": "A generated unique identifier.",
|
1531
|
+
"qualified_name_pattern": "",
|
1532
|
+
"generated": true,
|
1533
|
+
"style": "GUID",
|
1534
|
+
"user_specified": false,
|
1535
|
+
"unique": true,
|
1536
|
+
"input_required": false,
|
1537
|
+
"position": 13,
|
1538
|
+
"ReferenceURL": "",
|
1539
|
+
"isParent": false,
|
1540
|
+
"isAnchor": false,
|
1541
|
+
"min_cardinality": 1,
|
1542
|
+
"max_cardinality": 1,
|
1543
|
+
"level": "Basic",
|
1544
|
+
"Journal Entry": ""
|
1545
|
+
}
|
1546
|
+
},
|
1547
|
+
{
|
1548
|
+
"Merge Update": {
|
1549
|
+
"variable_name": "merge_update",
|
1550
|
+
"inUpdate": true,
|
1551
|
+
"attr_labels": "Merge",
|
1552
|
+
"examples": "",
|
1553
|
+
"default_value": "True",
|
1554
|
+
"valid_values": "",
|
1555
|
+
"existing_element": "",
|
1556
|
+
"description": "If true, only those attributes specified in the update will be updated; If false, any attributes not provided during the update will be set to None.",
|
1557
|
+
"qualified_name_pattern": "",
|
1558
|
+
"generated": false,
|
1559
|
+
"style": "Bool",
|
1560
|
+
"user_specified": true,
|
1561
|
+
"unique": false,
|
1562
|
+
"input_required": false,
|
1563
|
+
"position": 0,
|
1564
|
+
"ReferenceURL": "",
|
1565
|
+
"isParent": false,
|
1566
|
+
"isAnchor": false,
|
1567
|
+
"min_cardinality": 0,
|
1568
|
+
"max_cardinality": 1,
|
1569
|
+
"level": "Advanced",
|
1570
|
+
"Journal Entry": ""
|
1571
|
+
}
|
1572
|
+
},
|
1573
|
+
{
|
1574
|
+
"Collection Ordering": {
|
1575
|
+
"variable_name": "",
|
1576
|
+
"inUpdate": true,
|
1577
|
+
"attr_labels": "",
|
1578
|
+
"examples": "",
|
1579
|
+
"default_value": "",
|
1580
|
+
"valid_values": "",
|
1581
|
+
"existing_element": "",
|
1582
|
+
"description": "",
|
1583
|
+
"qualified_name_pattern": "",
|
1584
|
+
"generated": false,
|
1585
|
+
"style": "Simple Int",
|
1586
|
+
"user_specified": true,
|
1587
|
+
"unique": false,
|
1588
|
+
"input_required": false,
|
1589
|
+
"position": 0,
|
1590
|
+
"ReferenceURL": "",
|
1591
|
+
"isParent": false,
|
1592
|
+
"isAnchor": false,
|
1593
|
+
"min_cardinality": 1,
|
1594
|
+
"max_cardinality": 1,
|
1595
|
+
"level": "Advanced",
|
1596
|
+
"Journal Entry": ""
|
1597
|
+
}
|
1598
|
+
},
|
1599
|
+
{
|
1600
|
+
"Order Property Name": {
|
1601
|
+
"variable_name": "",
|
1602
|
+
"inUpdate": true,
|
1603
|
+
"attr_labels": "",
|
1604
|
+
"examples": "",
|
1605
|
+
"default_value": "",
|
1606
|
+
"valid_values": "",
|
1607
|
+
"existing_element": "",
|
1608
|
+
"description": "",
|
1609
|
+
"qualified_name_pattern": "",
|
1610
|
+
"generated": false,
|
1611
|
+
"style": "Simple",
|
1612
|
+
"user_specified": true,
|
1613
|
+
"unique": false,
|
1614
|
+
"input_required": false,
|
1615
|
+
"position": 0,
|
1616
|
+
"ReferenceURL": "",
|
1617
|
+
"isParent": false,
|
1618
|
+
"isAnchor": false,
|
1619
|
+
"min_cardinality": 1,
|
1620
|
+
"max_cardinality": 1,
|
1621
|
+
"level": "Advanced",
|
1622
|
+
"Journal Entry": ""
|
1623
|
+
}
|
1624
|
+
},
|
1625
|
+
{
|
1626
|
+
"Additional Properties": {
|
1627
|
+
"variable_name": "additional_properties",
|
1628
|
+
"inUpdate": true,
|
1629
|
+
"attr_labels": "",
|
1630
|
+
"examples": "",
|
1631
|
+
"default_value": "",
|
1632
|
+
"valid_values": "",
|
1633
|
+
"existing_element": "",
|
1634
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
1635
|
+
"qualified_name_pattern": "",
|
1636
|
+
"generated": false,
|
1637
|
+
"style": "Dictionary",
|
1638
|
+
"user_specified": true,
|
1639
|
+
"unique": false,
|
1640
|
+
"input_required": false,
|
1641
|
+
"position": 17,
|
1642
|
+
"ReferenceURL": "",
|
1643
|
+
"isParent": false,
|
1644
|
+
"isAnchor": false,
|
1645
|
+
"min_cardinality": 0,
|
1646
|
+
"max_cardinality": -1,
|
1647
|
+
"level": "Invisible",
|
1648
|
+
"Journal Entry": ""
|
1649
|
+
}
|
1650
|
+
},
|
1651
|
+
{
|
1652
|
+
"Extended Properties": {
|
1653
|
+
"variable_name": "additional_properties",
|
1654
|
+
"inUpdate": true,
|
1655
|
+
"attr_labels": "",
|
1656
|
+
"examples": "",
|
1657
|
+
"default_value": "",
|
1658
|
+
"valid_values": "",
|
1659
|
+
"existing_element": "",
|
1660
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
1661
|
+
"qualified_name_pattern": "",
|
1662
|
+
"generated": false,
|
1663
|
+
"style": "Dictionary",
|
1664
|
+
"user_specified": true,
|
1665
|
+
"unique": false,
|
1666
|
+
"input_required": false,
|
1667
|
+
"position": 17,
|
1668
|
+
"ReferenceURL": "",
|
1669
|
+
"isParent": false,
|
1670
|
+
"isAnchor": false,
|
1671
|
+
"min_cardinality": 0,
|
1672
|
+
"max_cardinality": -1,
|
1673
|
+
"level": "Invisible",
|
1674
|
+
"Journal Entry": ""
|
1675
|
+
}
|
1676
|
+
},
|
1677
|
+
{
|
1678
|
+
"Journal Entry": {
|
1679
|
+
"variable_name": "journal_entry",
|
1680
|
+
"inUpdate": true,
|
1681
|
+
"attr_labels": "",
|
1682
|
+
"examples": "",
|
1683
|
+
"default_value": "",
|
1684
|
+
"valid_values": "",
|
1685
|
+
"existing_element": "",
|
1686
|
+
"description": "",
|
1687
|
+
"qualified_name_pattern": "",
|
1688
|
+
"generated": false,
|
1689
|
+
"style": "Simple",
|
1690
|
+
"user_specified": true,
|
1691
|
+
"unique": false,
|
1692
|
+
"input_required": false,
|
1693
|
+
"position": 0,
|
1694
|
+
"ReferenceURL": "",
|
1695
|
+
"isParent": false,
|
1696
|
+
"isAnchor": false,
|
1697
|
+
"min_cardinality": 0,
|
1698
|
+
"max_cardinality": 1,
|
1699
|
+
"level": "Invisible",
|
1700
|
+
"Journal Entry": ""
|
1701
|
+
}
|
1702
|
+
}
|
1703
|
+
]
|
1704
|
+
},
|
1705
|
+
"Data Structure": {
|
1706
|
+
"display_name": "Data Structure",
|
1707
|
+
"qn_prefix": "DataStruct",
|
1708
|
+
"alternate_names": "",
|
1709
|
+
"description": "A collection of data fields that for a data specification for a data source.",
|
1710
|
+
"upsert": false,
|
1711
|
+
"list": false,
|
1712
|
+
"details": false,
|
1713
|
+
"form": false,
|
1714
|
+
"ReferenceURL": "",
|
1715
|
+
"isOwnAnchor": true,
|
1716
|
+
"parent_relationship_type_name": "",
|
1717
|
+
"parent_at_end1": true,
|
1718
|
+
"style": "",
|
1719
|
+
"anchor_scope_id": "",
|
1720
|
+
"parent_id": "",
|
1721
|
+
"level": "Basic",
|
1722
|
+
"Journal Entry": "",
|
1723
|
+
"Attributes": [
|
1724
|
+
{
|
1725
|
+
"Display Name": {
|
1726
|
+
"variable_name": "display_name",
|
1727
|
+
"inUpdate": true,
|
1728
|
+
"attr_labels": "Name; Display Name; Data Struct",
|
1729
|
+
"examples": "Incoming Weekly Measurement Data",
|
1730
|
+
"default_value": "",
|
1731
|
+
"valid_values": "",
|
1732
|
+
"existing_element": "",
|
1733
|
+
"description": "Name of the data structure.",
|
1734
|
+
"qualified_name_pattern": "",
|
1735
|
+
"generated": false,
|
1736
|
+
"style": "ID",
|
1737
|
+
"user_specified": true,
|
1738
|
+
"unique": false,
|
1739
|
+
"input_required": true,
|
1740
|
+
"position": 0,
|
1741
|
+
"ReferenceURL": "",
|
1742
|
+
"isParent": false,
|
1743
|
+
"isAnchor": false,
|
1744
|
+
"min_cardinality": 1,
|
1745
|
+
"max_cardinality": 1,
|
1746
|
+
"level": "Basic",
|
1747
|
+
"Journal Entry": ""
|
1748
|
+
}
|
1749
|
+
},
|
1750
|
+
{
|
1751
|
+
"Description": {
|
1752
|
+
"variable_name": "description",
|
1753
|
+
"inUpdate": true,
|
1754
|
+
"attr_labels": "",
|
1755
|
+
"examples": "",
|
1756
|
+
"default_value": "",
|
1757
|
+
"valid_values": "",
|
1758
|
+
"existing_element": "",
|
1759
|
+
"description": "A description of the data structure.",
|
1760
|
+
"qualified_name_pattern": "",
|
1761
|
+
"generated": false,
|
1762
|
+
"style": "Simple",
|
1763
|
+
"user_specified": true,
|
1764
|
+
"unique": false,
|
1765
|
+
"input_required": false,
|
1766
|
+
"position": 1,
|
1767
|
+
"ReferenceURL": "",
|
1768
|
+
"isParent": false,
|
1769
|
+
"isAnchor": false,
|
1770
|
+
"min_cardinality": 1,
|
1771
|
+
"max_cardinality": 1,
|
1772
|
+
"level": "Basic",
|
1773
|
+
"Journal Entry": ""
|
1774
|
+
}
|
1775
|
+
},
|
1776
|
+
{
|
1777
|
+
"In Data Specification": {
|
1778
|
+
"variable_name": "in_data_spec",
|
1779
|
+
"inUpdate": true,
|
1780
|
+
"attr_labels": "In Data Spec",
|
1781
|
+
"examples": "",
|
1782
|
+
"default_value": "",
|
1783
|
+
"valid_values": "",
|
1784
|
+
"existing_element": "DataSpecification",
|
1785
|
+
"description": "The data specifications this structure is a member of.",
|
1786
|
+
"qualified_name_pattern": "",
|
1787
|
+
"generated": false,
|
1788
|
+
"style": "Reference Name List",
|
1789
|
+
"user_specified": true,
|
1790
|
+
"unique": false,
|
1791
|
+
"input_required": false,
|
1792
|
+
"position": 2,
|
1793
|
+
"ReferenceURL": "",
|
1794
|
+
"isParent": false,
|
1795
|
+
"isAnchor": false,
|
1796
|
+
"min_cardinality": 0,
|
1797
|
+
"max_cardinality": -1,
|
1798
|
+
"level": "Basic",
|
1799
|
+
"Journal Entry": ""
|
1800
|
+
}
|
1801
|
+
},
|
1802
|
+
{
|
1803
|
+
"Glossary Term": {
|
1804
|
+
"variable_name": "glossary_term",
|
1805
|
+
"inUpdate": true,
|
1806
|
+
"attr_labels": "",
|
1807
|
+
"examples": "Term::Zip Code",
|
1808
|
+
"default_value": "",
|
1809
|
+
"valid_values": "",
|
1810
|
+
"existing_element": "GlossaryTerm",
|
1811
|
+
"description": "Term that provides meaning to this field.",
|
1812
|
+
"qualified_name_pattern": "",
|
1813
|
+
"generated": false,
|
1814
|
+
"style": "Reference Name",
|
1815
|
+
"user_specified": true,
|
1816
|
+
"unique": false,
|
1817
|
+
"input_required": false,
|
1818
|
+
"position": 8,
|
1819
|
+
"ReferenceURL": "",
|
1820
|
+
"isParent": false,
|
1821
|
+
"isAnchor": false,
|
1822
|
+
"min_cardinality": 0,
|
1823
|
+
"max_cardinality": 1,
|
1824
|
+
"level": "Advanced",
|
1825
|
+
"Journal Entry": ""
|
1826
|
+
}
|
1827
|
+
},
|
1828
|
+
{
|
1829
|
+
"Qualified Name": {
|
1830
|
+
"variable_name": "qualified_name",
|
1831
|
+
"inUpdate": true,
|
1832
|
+
"attr_labels": "",
|
1833
|
+
"examples": "DataStructure::a data field",
|
1834
|
+
"default_value": "",
|
1835
|
+
"valid_values": "",
|
1836
|
+
"existing_element": "",
|
1837
|
+
"description": "A unique qualified name for the element. Generated using the qualified name pattern if not user specified.",
|
1838
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataStructure:display_name::version_id",
|
1839
|
+
"generated": true,
|
1840
|
+
"style": "QN",
|
1841
|
+
"user_specified": true,
|
1842
|
+
"unique": true,
|
1843
|
+
"input_required": false,
|
1844
|
+
"position": 2,
|
1845
|
+
"ReferenceURL": "",
|
1846
|
+
"isParent": false,
|
1847
|
+
"isAnchor": false,
|
1848
|
+
"min_cardinality": 1,
|
1849
|
+
"max_cardinality": 1,
|
1850
|
+
"level": "Basic",
|
1851
|
+
"Journal Entry": ""
|
1852
|
+
}
|
1853
|
+
},
|
1854
|
+
{
|
1855
|
+
"GUID": {
|
1856
|
+
"variable_name": "guid",
|
1857
|
+
"inUpdate": true,
|
1858
|
+
"attr_labels": "",
|
1859
|
+
"examples": "00585a82-0f7d-45ef-9b87-7078665917a9",
|
1860
|
+
"default_value": "",
|
1861
|
+
"valid_values": "",
|
1862
|
+
"existing_element": "",
|
1863
|
+
"description": "A generated unique identifier.",
|
1864
|
+
"qualified_name_pattern": "",
|
1865
|
+
"generated": true,
|
1866
|
+
"style": "GUID",
|
1867
|
+
"user_specified": false,
|
1868
|
+
"unique": true,
|
1869
|
+
"input_required": false,
|
1870
|
+
"position": 13,
|
1871
|
+
"ReferenceURL": "",
|
1872
|
+
"isParent": false,
|
1873
|
+
"isAnchor": false,
|
1874
|
+
"min_cardinality": 1,
|
1875
|
+
"max_cardinality": 1,
|
1876
|
+
"level": "Basic",
|
1877
|
+
"Journal Entry": ""
|
1878
|
+
}
|
1879
|
+
},
|
1880
|
+
{
|
1881
|
+
"Merge Update": {
|
1882
|
+
"variable_name": "merge_update",
|
1883
|
+
"inUpdate": true,
|
1884
|
+
"attr_labels": "Merge",
|
1885
|
+
"examples": "",
|
1886
|
+
"default_value": "True",
|
1887
|
+
"valid_values": "",
|
1888
|
+
"existing_element": "",
|
1889
|
+
"description": "If true, only those attributes specified in the update will be updated; If false, any attributes not provided during the update will be set to None.",
|
1890
|
+
"qualified_name_pattern": "",
|
1891
|
+
"generated": false,
|
1892
|
+
"style": "Bool",
|
1893
|
+
"user_specified": true,
|
1894
|
+
"unique": false,
|
1895
|
+
"input_required": false,
|
1896
|
+
"position": 0,
|
1897
|
+
"ReferenceURL": "",
|
1898
|
+
"isParent": false,
|
1899
|
+
"isAnchor": false,
|
1900
|
+
"min_cardinality": 0,
|
1901
|
+
"max_cardinality": 1,
|
1902
|
+
"level": "Advanced",
|
1903
|
+
"Journal Entry": ""
|
1904
|
+
}
|
1905
|
+
},
|
1906
|
+
{
|
1907
|
+
"Additional Properties": {
|
1908
|
+
"variable_name": "additional_properties",
|
1909
|
+
"inUpdate": true,
|
1910
|
+
"attr_labels": "",
|
1911
|
+
"examples": "",
|
1912
|
+
"default_value": "",
|
1913
|
+
"valid_values": "",
|
1914
|
+
"existing_element": "",
|
1915
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
1916
|
+
"qualified_name_pattern": "",
|
1917
|
+
"generated": false,
|
1918
|
+
"style": "Dictionary",
|
1919
|
+
"user_specified": true,
|
1920
|
+
"unique": false,
|
1921
|
+
"input_required": false,
|
1922
|
+
"position": 17,
|
1923
|
+
"ReferenceURL": "",
|
1924
|
+
"isParent": false,
|
1925
|
+
"isAnchor": false,
|
1926
|
+
"min_cardinality": 0,
|
1927
|
+
"max_cardinality": -1,
|
1928
|
+
"level": "Invisible",
|
1929
|
+
"Journal Entry": ""
|
1930
|
+
}
|
1931
|
+
},
|
1932
|
+
{
|
1933
|
+
"Extended Properties": {
|
1934
|
+
"variable_name": "additional_properties",
|
1935
|
+
"inUpdate": true,
|
1936
|
+
"attr_labels": "",
|
1937
|
+
"examples": "",
|
1938
|
+
"default_value": "",
|
1939
|
+
"valid_values": "",
|
1940
|
+
"existing_element": "",
|
1941
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
1942
|
+
"qualified_name_pattern": "",
|
1943
|
+
"generated": false,
|
1944
|
+
"style": "Dictionary",
|
1945
|
+
"user_specified": true,
|
1946
|
+
"unique": false,
|
1947
|
+
"input_required": false,
|
1948
|
+
"position": 17,
|
1949
|
+
"ReferenceURL": "",
|
1950
|
+
"isParent": false,
|
1951
|
+
"isAnchor": false,
|
1952
|
+
"min_cardinality": 0,
|
1953
|
+
"max_cardinality": -1,
|
1954
|
+
"level": "Invisible",
|
1955
|
+
"Journal Entry": ""
|
1956
|
+
}
|
1957
|
+
},
|
1958
|
+
{
|
1959
|
+
"Journal Entry": {
|
1960
|
+
"variable_name": "journal_entry",
|
1961
|
+
"inUpdate": true,
|
1962
|
+
"attr_labels": "",
|
1963
|
+
"examples": "",
|
1964
|
+
"default_value": "",
|
1965
|
+
"valid_values": "",
|
1966
|
+
"existing_element": "",
|
1967
|
+
"description": "",
|
1968
|
+
"qualified_name_pattern": "",
|
1969
|
+
"generated": false,
|
1970
|
+
"style": "Simple",
|
1971
|
+
"user_specified": true,
|
1972
|
+
"unique": false,
|
1973
|
+
"input_required": false,
|
1974
|
+
"position": 0,
|
1975
|
+
"ReferenceURL": "",
|
1976
|
+
"isParent": false,
|
1977
|
+
"isAnchor": false,
|
1978
|
+
"min_cardinality": 0,
|
1979
|
+
"max_cardinality": 1,
|
1980
|
+
"level": "Invisible",
|
1981
|
+
"Journal Entry": ""
|
1982
|
+
}
|
1983
|
+
}
|
1984
|
+
]
|
1985
|
+
},
|
1986
|
+
"Data Class": {
|
1987
|
+
"display_name": "Data Class",
|
1988
|
+
"qn_prefix": "DataClass",
|
1989
|
+
"alternate_names": "",
|
1990
|
+
"description": "Describes the data values that may be stored in data fields. Can be used to configure quality validatiors and data field classifiers.",
|
1991
|
+
"upsert": false,
|
1992
|
+
"list": false,
|
1993
|
+
"details": false,
|
1994
|
+
"form": false,
|
1995
|
+
"ReferenceURL": "",
|
1996
|
+
"isOwnAnchor": true,
|
1997
|
+
"parent_relationship_type_name": "",
|
1998
|
+
"parent_at_end1": true,
|
1999
|
+
"style": "Reference Name",
|
2000
|
+
"anchor_scope_id": "",
|
2001
|
+
"parent_id": "",
|
2002
|
+
"level": "Basic",
|
2003
|
+
"Journal Entry": "",
|
2004
|
+
"Attributes": [
|
2005
|
+
{
|
2006
|
+
"Display Name": {
|
2007
|
+
"variable_name": "display_name",
|
2008
|
+
"inUpdate": true,
|
2009
|
+
"attr_labels": "Data Class; Display Name; Name",
|
2010
|
+
"examples": "Incoming Weekly Measurement Data",
|
2011
|
+
"default_value": "",
|
2012
|
+
"valid_values": "",
|
2013
|
+
"existing_element": "",
|
2014
|
+
"description": "Name of the data structure.",
|
2015
|
+
"qualified_name_pattern": "",
|
2016
|
+
"generated": false,
|
2017
|
+
"style": "ID",
|
2018
|
+
"user_specified": true,
|
2019
|
+
"unique": false,
|
2020
|
+
"input_required": true,
|
2021
|
+
"position": 0,
|
2022
|
+
"ReferenceURL": "",
|
2023
|
+
"isParent": false,
|
2024
|
+
"isAnchor": false,
|
2025
|
+
"min_cardinality": 1,
|
2026
|
+
"max_cardinality": 1,
|
2027
|
+
"level": "Basic",
|
2028
|
+
"Journal Entry": ""
|
2029
|
+
}
|
2030
|
+
},
|
2031
|
+
{
|
2032
|
+
"Description": {
|
2033
|
+
"variable_name": "description",
|
2034
|
+
"inUpdate": true,
|
2035
|
+
"attr_labels": "",
|
2036
|
+
"examples": "",
|
2037
|
+
"default_value": "",
|
2038
|
+
"valid_values": "",
|
2039
|
+
"existing_element": "",
|
2040
|
+
"description": "A description of the data class.",
|
2041
|
+
"qualified_name_pattern": "",
|
2042
|
+
"generated": false,
|
2043
|
+
"style": "Simple",
|
2044
|
+
"user_specified": true,
|
2045
|
+
"unique": false,
|
2046
|
+
"input_required": false,
|
2047
|
+
"position": 1,
|
2048
|
+
"ReferenceURL": "",
|
2049
|
+
"isParent": false,
|
2050
|
+
"isAnchor": false,
|
2051
|
+
"min_cardinality": 1,
|
2052
|
+
"max_cardinality": 1,
|
2053
|
+
"level": "Basic",
|
2054
|
+
"Journal Entry": ""
|
2055
|
+
}
|
2056
|
+
},
|
2057
|
+
{
|
2058
|
+
"Namespace": {
|
2059
|
+
"variable_name": "namespace",
|
2060
|
+
"inUpdate": true,
|
2061
|
+
"attr_labels": "",
|
2062
|
+
"examples": "Shipping Department",
|
2063
|
+
"default_value": "",
|
2064
|
+
"valid_values": "",
|
2065
|
+
"existing_element": "",
|
2066
|
+
"description": "Optional namespace that scopes the field.",
|
2067
|
+
"qualified_name_pattern": "",
|
2068
|
+
"generated": false,
|
2069
|
+
"style": "Simple",
|
2070
|
+
"user_specified": true,
|
2071
|
+
"unique": false,
|
2072
|
+
"input_required": false,
|
2073
|
+
"position": 2,
|
2074
|
+
"ReferenceURL": "",
|
2075
|
+
"isParent": false,
|
2076
|
+
"isAnchor": false,
|
2077
|
+
"min_cardinality": 1,
|
2078
|
+
"max_cardinality": 1,
|
2079
|
+
"level": "Basic",
|
2080
|
+
"Journal Entry": ""
|
2081
|
+
}
|
2082
|
+
},
|
2083
|
+
{
|
2084
|
+
"Match Property Names": {
|
2085
|
+
"variable_name": "match_property_names",
|
2086
|
+
"inUpdate": true,
|
2087
|
+
"attr_labels": "",
|
2088
|
+
"examples": "",
|
2089
|
+
"default_value": "Can be determined by Dr. Egeria?",
|
2090
|
+
"valid_values": "",
|
2091
|
+
"existing_element": "",
|
2092
|
+
"description": "Names of the properties that are set.",
|
2093
|
+
"qualified_name_pattern": "",
|
2094
|
+
"generated": true,
|
2095
|
+
"style": "Simple List",
|
2096
|
+
"user_specified": true,
|
2097
|
+
"unique": false,
|
2098
|
+
"input_required": false,
|
2099
|
+
"position": 3,
|
2100
|
+
"ReferenceURL": "",
|
2101
|
+
"isParent": false,
|
2102
|
+
"isAnchor": false,
|
2103
|
+
"min_cardinality": 1,
|
2104
|
+
"max_cardinality": 0,
|
2105
|
+
"level": "Basic",
|
2106
|
+
"Journal Entry": ""
|
2107
|
+
}
|
2108
|
+
},
|
2109
|
+
{
|
2110
|
+
"Match Threshold": {
|
2111
|
+
"variable_name": "match_threshold",
|
2112
|
+
"inUpdate": true,
|
2113
|
+
"attr_labels": "",
|
2114
|
+
"examples": "",
|
2115
|
+
"default_value": "",
|
2116
|
+
"valid_values": "",
|
2117
|
+
"existing_element": "",
|
2118
|
+
"description": "Percent of values that must match the data class specification.",
|
2119
|
+
"qualified_name_pattern": "",
|
2120
|
+
"generated": false,
|
2121
|
+
"style": "Simple Int",
|
2122
|
+
"user_specified": true,
|
2123
|
+
"unique": false,
|
2124
|
+
"input_required": false,
|
2125
|
+
"position": 4,
|
2126
|
+
"ReferenceURL": "",
|
2127
|
+
"isParent": false,
|
2128
|
+
"isAnchor": false,
|
2129
|
+
"min_cardinality": 0,
|
2130
|
+
"max_cardinality": 1,
|
2131
|
+
"level": "Basic",
|
2132
|
+
"Journal Entry": ""
|
2133
|
+
}
|
2134
|
+
},
|
2135
|
+
{
|
2136
|
+
"IsCaseSensitive": {
|
2137
|
+
"variable_name": "is_case_sensitive",
|
2138
|
+
"inUpdate": true,
|
2139
|
+
"attr_labels": "",
|
2140
|
+
"examples": "",
|
2141
|
+
"default_value": "False",
|
2142
|
+
"valid_values": "",
|
2143
|
+
"existing_element": "",
|
2144
|
+
"description": "Are field values case sensitive?",
|
2145
|
+
"qualified_name_pattern": "",
|
2146
|
+
"generated": false,
|
2147
|
+
"style": "Bool",
|
2148
|
+
"user_specified": true,
|
2149
|
+
"unique": false,
|
2150
|
+
"input_required": false,
|
2151
|
+
"position": 0,
|
2152
|
+
"ReferenceURL": "",
|
2153
|
+
"isParent": false,
|
2154
|
+
"isAnchor": false,
|
2155
|
+
"min_cardinality": 1,
|
2156
|
+
"max_cardinality": 1,
|
2157
|
+
"level": "Basic",
|
2158
|
+
"Journal Entry": ""
|
2159
|
+
}
|
2160
|
+
},
|
2161
|
+
{
|
2162
|
+
"Specification": {
|
2163
|
+
"variable_name": "specification",
|
2164
|
+
"inUpdate": true,
|
2165
|
+
"attr_labels": "",
|
2166
|
+
"examples": "",
|
2167
|
+
"default_value": "",
|
2168
|
+
"valid_values": "",
|
2169
|
+
"existing_element": "",
|
2170
|
+
"description": "Rules language",
|
2171
|
+
"qualified_name_pattern": "",
|
2172
|
+
"generated": false,
|
2173
|
+
"style": "Simple",
|
2174
|
+
"user_specified": true,
|
2175
|
+
"unique": false,
|
2176
|
+
"input_required": false,
|
2177
|
+
"position": 4,
|
2178
|
+
"ReferenceURL": "",
|
2179
|
+
"isParent": false,
|
2180
|
+
"isAnchor": false,
|
2181
|
+
"min_cardinality": 1,
|
2182
|
+
"max_cardinality": 1,
|
2183
|
+
"level": "Advanced",
|
2184
|
+
"Journal Entry": ""
|
2185
|
+
}
|
2186
|
+
},
|
2187
|
+
{
|
2188
|
+
"Specification Details": {
|
2189
|
+
"variable_name": "spec_datails",
|
2190
|
+
"inUpdate": true,
|
2191
|
+
"attr_labels": "",
|
2192
|
+
"examples": "",
|
2193
|
+
"default_value": "",
|
2194
|
+
"valid_values": "",
|
2195
|
+
"existing_element": "",
|
2196
|
+
"description": "Values for a rule.",
|
2197
|
+
"qualified_name_pattern": "",
|
2198
|
+
"generated": false,
|
2199
|
+
"style": "Simple",
|
2200
|
+
"user_specified": true,
|
2201
|
+
"unique": false,
|
2202
|
+
"input_required": false,
|
2203
|
+
"position": 5,
|
2204
|
+
"ReferenceURL": "",
|
2205
|
+
"isParent": false,
|
2206
|
+
"isAnchor": false,
|
2207
|
+
"min_cardinality": 1,
|
2208
|
+
"max_cardinality": 1,
|
2209
|
+
"level": "Advanced",
|
2210
|
+
"Journal Entry": ""
|
2211
|
+
}
|
2212
|
+
},
|
2213
|
+
{
|
2214
|
+
"Data Type": {
|
2215
|
+
"variable_name": "data_type",
|
2216
|
+
"inUpdate": true,
|
2217
|
+
"attr_labels": "",
|
2218
|
+
"examples": "",
|
2219
|
+
"default_value": "",
|
2220
|
+
"valid_values": "String; Integer; ",
|
2221
|
+
"existing_element": "",
|
2222
|
+
"description": "Data type for the data class.",
|
2223
|
+
"qualified_name_pattern": "",
|
2224
|
+
"generated": false,
|
2225
|
+
"style": "Valid Value",
|
2226
|
+
"user_specified": true,
|
2227
|
+
"unique": false,
|
2228
|
+
"input_required": true,
|
2229
|
+
"position": 6,
|
2230
|
+
"ReferenceURL": "",
|
2231
|
+
"isParent": false,
|
2232
|
+
"isAnchor": false,
|
2233
|
+
"min_cardinality": 1,
|
2234
|
+
"max_cardinality": 1,
|
2235
|
+
"level": "Basic",
|
2236
|
+
"Journal Entry": ""
|
2237
|
+
}
|
2238
|
+
},
|
2239
|
+
{
|
2240
|
+
"Allow Duplicate Values": {
|
2241
|
+
"variable_name": "duplicates_allowed",
|
2242
|
+
"inUpdate": true,
|
2243
|
+
"attr_labels": "",
|
2244
|
+
"examples": "",
|
2245
|
+
"default_value": "true",
|
2246
|
+
"valid_values": "",
|
2247
|
+
"existing_element": "",
|
2248
|
+
"description": "Allow duplicate values within the data class?",
|
2249
|
+
"qualified_name_pattern": "",
|
2250
|
+
"generated": false,
|
2251
|
+
"style": "Bool",
|
2252
|
+
"user_specified": true,
|
2253
|
+
"unique": false,
|
2254
|
+
"input_required": false,
|
2255
|
+
"position": 7,
|
2256
|
+
"ReferenceURL": "",
|
2257
|
+
"isParent": false,
|
2258
|
+
"isAnchor": false,
|
2259
|
+
"min_cardinality": 1,
|
2260
|
+
"max_cardinality": 1,
|
2261
|
+
"level": "Basic",
|
2262
|
+
"Journal Entry": ""
|
2263
|
+
}
|
2264
|
+
},
|
2265
|
+
{
|
2266
|
+
"isNullable": {
|
2267
|
+
"variable_name": "is_nullable",
|
2268
|
+
"inUpdate": true,
|
2269
|
+
"attr_labels": "Nullable",
|
2270
|
+
"examples": "",
|
2271
|
+
"default_value": "true",
|
2272
|
+
"valid_values": "",
|
2273
|
+
"existing_element": "",
|
2274
|
+
"description": "Can the values within the dataclass be absent?",
|
2275
|
+
"qualified_name_pattern": "",
|
2276
|
+
"generated": false,
|
2277
|
+
"style": "Bool",
|
2278
|
+
"user_specified": true,
|
2279
|
+
"unique": false,
|
2280
|
+
"input_required": false,
|
2281
|
+
"position": 8,
|
2282
|
+
"ReferenceURL": "",
|
2283
|
+
"isParent": false,
|
2284
|
+
"isAnchor": false,
|
2285
|
+
"min_cardinality": 1,
|
2286
|
+
"max_cardinality": 1,
|
2287
|
+
"level": "Basic",
|
2288
|
+
"Journal Entry": ""
|
2289
|
+
}
|
2290
|
+
},
|
2291
|
+
{
|
2292
|
+
"Default Value": {
|
2293
|
+
"variable_name": "default_value",
|
2294
|
+
"inUpdate": true,
|
2295
|
+
"attr_labels": "Default",
|
2296
|
+
"examples": "",
|
2297
|
+
"default_value": "",
|
2298
|
+
"valid_values": "",
|
2299
|
+
"existing_element": "",
|
2300
|
+
"description": "Specify a default value for the data class.",
|
2301
|
+
"qualified_name_pattern": "",
|
2302
|
+
"generated": false,
|
2303
|
+
"style": "Simple",
|
2304
|
+
"user_specified": true,
|
2305
|
+
"unique": false,
|
2306
|
+
"input_required": false,
|
2307
|
+
"position": 9,
|
2308
|
+
"ReferenceURL": "",
|
2309
|
+
"isParent": false,
|
2310
|
+
"isAnchor": false,
|
2311
|
+
"min_cardinality": 1,
|
2312
|
+
"max_cardinality": 1,
|
2313
|
+
"level": "Basic",
|
2314
|
+
"Journal Entry": ""
|
2315
|
+
}
|
2316
|
+
},
|
2317
|
+
{
|
2318
|
+
"Average Value": {
|
2319
|
+
"variable_name": "avg_value",
|
2320
|
+
"inUpdate": true,
|
2321
|
+
"attr_labels": "Average",
|
2322
|
+
"examples": "",
|
2323
|
+
"default_value": "",
|
2324
|
+
"valid_values": "",
|
2325
|
+
"existing_element": "",
|
2326
|
+
"description": "Average value for the data class.",
|
2327
|
+
"qualified_name_pattern": "",
|
2328
|
+
"generated": false,
|
2329
|
+
"style": "Simple",
|
2330
|
+
"user_specified": true,
|
2331
|
+
"unique": false,
|
2332
|
+
"input_required": false,
|
2333
|
+
"position": 10,
|
2334
|
+
"ReferenceURL": "",
|
2335
|
+
"isParent": false,
|
2336
|
+
"isAnchor": false,
|
2337
|
+
"min_cardinality": 1,
|
2338
|
+
"max_cardinality": 1,
|
2339
|
+
"level": "Basic",
|
2340
|
+
"Journal Entry": ""
|
2341
|
+
}
|
2342
|
+
},
|
2343
|
+
{
|
2344
|
+
"Value List": {
|
2345
|
+
"variable_name": "value_list",
|
2346
|
+
"inUpdate": true,
|
2347
|
+
"attr_labels": "",
|
2348
|
+
"examples": "",
|
2349
|
+
"default_value": "",
|
2350
|
+
"valid_values": "",
|
2351
|
+
"existing_element": "",
|
2352
|
+
"description": "",
|
2353
|
+
"qualified_name_pattern": "",
|
2354
|
+
"generated": false,
|
2355
|
+
"style": "Simple List",
|
2356
|
+
"user_specified": true,
|
2357
|
+
"unique": false,
|
2358
|
+
"input_required": false,
|
2359
|
+
"position": 11,
|
2360
|
+
"ReferenceURL": "",
|
2361
|
+
"isParent": false,
|
2362
|
+
"isAnchor": false,
|
2363
|
+
"min_cardinality": 1,
|
2364
|
+
"max_cardinality": 1,
|
2365
|
+
"level": "Basic",
|
2366
|
+
"Journal Entry": ""
|
2367
|
+
}
|
2368
|
+
},
|
2369
|
+
{
|
2370
|
+
"Value Range From": {
|
2371
|
+
"variable_name": "value_range_from",
|
2372
|
+
"inUpdate": true,
|
2373
|
+
"attr_labels": "Range From",
|
2374
|
+
"examples": "10",
|
2375
|
+
"default_value": "",
|
2376
|
+
"valid_values": "",
|
2377
|
+
"existing_element": "",
|
2378
|
+
"description": "Beginning range of legal values.",
|
2379
|
+
"qualified_name_pattern": "",
|
2380
|
+
"generated": false,
|
2381
|
+
"style": "Simple Int",
|
2382
|
+
"user_specified": true,
|
2383
|
+
"unique": false,
|
2384
|
+
"input_required": false,
|
2385
|
+
"position": 12,
|
2386
|
+
"ReferenceURL": "",
|
2387
|
+
"isParent": false,
|
2388
|
+
"isAnchor": false,
|
2389
|
+
"min_cardinality": 1,
|
2390
|
+
"max_cardinality": 1,
|
2391
|
+
"level": "Basic",
|
2392
|
+
"Journal Entry": ""
|
2393
|
+
}
|
2394
|
+
},
|
2395
|
+
{
|
2396
|
+
"Value Range To": {
|
2397
|
+
"variable_name": "value_range_to",
|
2398
|
+
"inUpdate": true,
|
2399
|
+
"attr_labels": "Range To",
|
2400
|
+
"examples": "100",
|
2401
|
+
"default_value": "",
|
2402
|
+
"valid_values": "",
|
2403
|
+
"existing_element": "",
|
2404
|
+
"description": "End of valid range for value.",
|
2405
|
+
"qualified_name_pattern": "",
|
2406
|
+
"generated": false,
|
2407
|
+
"style": "Simple Int",
|
2408
|
+
"user_specified": true,
|
2409
|
+
"unique": false,
|
2410
|
+
"input_required": false,
|
2411
|
+
"position": 13,
|
2412
|
+
"ReferenceURL": "",
|
2413
|
+
"isParent": false,
|
2414
|
+
"isAnchor": false,
|
2415
|
+
"min_cardinality": 1,
|
2416
|
+
"max_cardinality": 1,
|
2417
|
+
"level": "Basic",
|
2418
|
+
"Journal Entry": ""
|
2419
|
+
}
|
2420
|
+
},
|
2421
|
+
{
|
2422
|
+
"Sample Values": {
|
2423
|
+
"variable_name": "sample_values",
|
2424
|
+
"inUpdate": true,
|
2425
|
+
"attr_labels": "Samples",
|
2426
|
+
"examples": "12",
|
2427
|
+
"default_value": "",
|
2428
|
+
"valid_values": "",
|
2429
|
+
"existing_element": "",
|
2430
|
+
"description": "Sample values of the data class.",
|
2431
|
+
"qualified_name_pattern": "",
|
2432
|
+
"generated": false,
|
2433
|
+
"style": "Simple",
|
2434
|
+
"user_specified": true,
|
2435
|
+
"unique": false,
|
2436
|
+
"input_required": false,
|
2437
|
+
"position": 14,
|
2438
|
+
"ReferenceURL": "",
|
2439
|
+
"isParent": false,
|
2440
|
+
"isAnchor": false,
|
2441
|
+
"min_cardinality": 1,
|
2442
|
+
"max_cardinality": 1,
|
2443
|
+
"level": "Basic",
|
2444
|
+
"Journal Entry": ""
|
2445
|
+
}
|
2446
|
+
},
|
2447
|
+
{
|
2448
|
+
"Data Patterns": {
|
2449
|
+
"variable_name": "data_patterns",
|
2450
|
+
"inUpdate": true,
|
2451
|
+
"attr_labels": "",
|
2452
|
+
"examples": "/^4[0-9]{12}(?:[0-9]{3})?$/",
|
2453
|
+
"default_value": "",
|
2454
|
+
"valid_values": "",
|
2455
|
+
"existing_element": "",
|
2456
|
+
"description": "prescribed format of a data field - e.g. credit card numbers. Often expressed as a regular expression.",
|
2457
|
+
"qualified_name_pattern": "",
|
2458
|
+
"generated": false,
|
2459
|
+
"style": "Simple",
|
2460
|
+
"user_specified": true,
|
2461
|
+
"unique": false,
|
2462
|
+
"input_required": false,
|
2463
|
+
"position": 15,
|
2464
|
+
"ReferenceURL": "",
|
2465
|
+
"isParent": false,
|
2466
|
+
"isAnchor": false,
|
2467
|
+
"min_cardinality": 1,
|
2468
|
+
"max_cardinality": 1,
|
2469
|
+
"level": "Basic",
|
2470
|
+
"Journal Entry": ""
|
2471
|
+
}
|
2472
|
+
},
|
2473
|
+
{
|
2474
|
+
"Glossary Term": {
|
2475
|
+
"variable_name": "glossary_term",
|
2476
|
+
"inUpdate": true,
|
2477
|
+
"attr_labels": "",
|
2478
|
+
"examples": "Term::Zip Code",
|
2479
|
+
"default_value": "",
|
2480
|
+
"valid_values": "",
|
2481
|
+
"existing_element": "GlossaryTerm",
|
2482
|
+
"description": "Term that provides meaning to this field.",
|
2483
|
+
"qualified_name_pattern": "",
|
2484
|
+
"generated": false,
|
2485
|
+
"style": "Reference Name",
|
2486
|
+
"user_specified": true,
|
2487
|
+
"unique": false,
|
2488
|
+
"input_required": false,
|
2489
|
+
"position": 8,
|
2490
|
+
"ReferenceURL": "",
|
2491
|
+
"isParent": false,
|
2492
|
+
"isAnchor": false,
|
2493
|
+
"min_cardinality": 0,
|
2494
|
+
"max_cardinality": 1,
|
2495
|
+
"level": "Advanced",
|
2496
|
+
"Journal Entry": ""
|
2497
|
+
}
|
2498
|
+
},
|
2499
|
+
{
|
2500
|
+
"Qualified Name": {
|
2501
|
+
"variable_name": "qualified_name",
|
2502
|
+
"inUpdate": true,
|
2503
|
+
"attr_labels": "",
|
2504
|
+
"examples": "DataClass::a data field",
|
2505
|
+
"default_value": "",
|
2506
|
+
"valid_values": "",
|
2507
|
+
"existing_element": "",
|
2508
|
+
"description": "A unique qualified name for the element. Generated using the qualified name pattern if not user specified.",
|
2509
|
+
"qualified_name_pattern": "local_qualifier::namespace::DataClass:display_name::version_id",
|
2510
|
+
"generated": true,
|
2511
|
+
"style": "QN",
|
2512
|
+
"user_specified": true,
|
2513
|
+
"unique": true,
|
2514
|
+
"input_required": false,
|
2515
|
+
"position": 16,
|
2516
|
+
"ReferenceURL": "",
|
2517
|
+
"isParent": false,
|
2518
|
+
"isAnchor": false,
|
2519
|
+
"min_cardinality": 1,
|
2520
|
+
"max_cardinality": 1,
|
2521
|
+
"level": "Basic",
|
2522
|
+
"Journal Entry": ""
|
2523
|
+
}
|
2524
|
+
},
|
2525
|
+
{
|
2526
|
+
"GUID": {
|
2527
|
+
"variable_name": "guid",
|
2528
|
+
"inUpdate": true,
|
2529
|
+
"attr_labels": "",
|
2530
|
+
"examples": "00585a82-0f7d-45ef-9b87-7078665917a9",
|
2531
|
+
"default_value": "",
|
2532
|
+
"valid_values": "",
|
2533
|
+
"existing_element": "",
|
2534
|
+
"description": "A generated unique identifier.",
|
2535
|
+
"qualified_name_pattern": "",
|
2536
|
+
"generated": true,
|
2537
|
+
"style": "GUID",
|
2538
|
+
"user_specified": false,
|
2539
|
+
"unique": true,
|
2540
|
+
"input_required": false,
|
2541
|
+
"position": 17,
|
2542
|
+
"ReferenceURL": "",
|
2543
|
+
"isParent": false,
|
2544
|
+
"isAnchor": false,
|
2545
|
+
"min_cardinality": 1,
|
2546
|
+
"max_cardinality": 1,
|
2547
|
+
"level": "Basic",
|
2548
|
+
"Journal Entry": ""
|
2549
|
+
}
|
2550
|
+
},
|
2551
|
+
{
|
2552
|
+
"Merge Update": {
|
2553
|
+
"variable_name": "merge_update",
|
2554
|
+
"inUpdate": true,
|
2555
|
+
"attr_labels": "Merge",
|
2556
|
+
"examples": "",
|
2557
|
+
"default_value": "True",
|
2558
|
+
"valid_values": "",
|
2559
|
+
"existing_element": "",
|
2560
|
+
"description": "If true, only those attributes specified in the update will be updated; If false, any attributes not provided during the update will be set to None.",
|
2561
|
+
"qualified_name_pattern": "",
|
2562
|
+
"generated": false,
|
2563
|
+
"style": "Bool",
|
2564
|
+
"user_specified": true,
|
2565
|
+
"unique": false,
|
2566
|
+
"input_required": false,
|
2567
|
+
"position": 0,
|
2568
|
+
"ReferenceURL": "",
|
2569
|
+
"isParent": false,
|
2570
|
+
"isAnchor": false,
|
2571
|
+
"min_cardinality": 0,
|
2572
|
+
"max_cardinality": 1,
|
2573
|
+
"level": "Advanced",
|
2574
|
+
"Journal Entry": ""
|
2575
|
+
}
|
2576
|
+
},
|
2577
|
+
{
|
2578
|
+
"Additional Properties": {
|
2579
|
+
"variable_name": "additional_properties",
|
2580
|
+
"inUpdate": true,
|
2581
|
+
"attr_labels": "",
|
2582
|
+
"examples": "",
|
2583
|
+
"default_value": "",
|
2584
|
+
"valid_values": "",
|
2585
|
+
"existing_element": "",
|
2586
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
2587
|
+
"qualified_name_pattern": "",
|
2588
|
+
"generated": false,
|
2589
|
+
"style": "Dictionary",
|
2590
|
+
"user_specified": true,
|
2591
|
+
"unique": false,
|
2592
|
+
"input_required": false,
|
2593
|
+
"position": 17,
|
2594
|
+
"ReferenceURL": "",
|
2595
|
+
"isParent": false,
|
2596
|
+
"isAnchor": false,
|
2597
|
+
"min_cardinality": 0,
|
2598
|
+
"max_cardinality": -1,
|
2599
|
+
"level": "Invisible",
|
2600
|
+
"Journal Entry": ""
|
2601
|
+
}
|
2602
|
+
},
|
2603
|
+
{
|
2604
|
+
"Extended Properties": {
|
2605
|
+
"variable_name": "additional_properties",
|
2606
|
+
"inUpdate": true,
|
2607
|
+
"attr_labels": "",
|
2608
|
+
"examples": "",
|
2609
|
+
"default_value": "",
|
2610
|
+
"valid_values": "",
|
2611
|
+
"existing_element": "",
|
2612
|
+
"description": "Additional user defined values organized as name value pairs in a dictionary.",
|
2613
|
+
"qualified_name_pattern": "",
|
2614
|
+
"generated": false,
|
2615
|
+
"style": "Dictionary",
|
2616
|
+
"user_specified": true,
|
2617
|
+
"unique": false,
|
2618
|
+
"input_required": false,
|
2619
|
+
"position": 17,
|
2620
|
+
"ReferenceURL": "",
|
2621
|
+
"isParent": false,
|
2622
|
+
"isAnchor": false,
|
2623
|
+
"min_cardinality": 0,
|
2624
|
+
"max_cardinality": -1,
|
2625
|
+
"level": "Invisible",
|
2626
|
+
"Journal Entry": ""
|
2627
|
+
}
|
2628
|
+
},
|
2629
|
+
{
|
2630
|
+
"Journal Entry": {
|
2631
|
+
"variable_name": "journal_entry",
|
2632
|
+
"inUpdate": true,
|
2633
|
+
"attr_labels": "",
|
2634
|
+
"examples": "",
|
2635
|
+
"default_value": "",
|
2636
|
+
"valid_values": "",
|
2637
|
+
"existing_element": "",
|
2638
|
+
"description": "",
|
2639
|
+
"qualified_name_pattern": "",
|
2640
|
+
"generated": false,
|
2641
|
+
"style": "Simple",
|
2642
|
+
"user_specified": true,
|
2643
|
+
"unique": false,
|
2644
|
+
"input_required": false,
|
2645
|
+
"position": 0,
|
2646
|
+
"ReferenceURL": "",
|
2647
|
+
"isParent": false,
|
2648
|
+
"isAnchor": false,
|
2649
|
+
"min_cardinality": 0,
|
2650
|
+
"max_cardinality": 1,
|
2651
|
+
"level": "Invisible",
|
2652
|
+
"Journal Entry": ""
|
2653
|
+
}
|
2654
|
+
}
|
2655
|
+
]
|
2656
|
+
},
|
2657
|
+
"View Data fields": {
|
2658
|
+
"display_name": "View Data Fields",
|
2659
|
+
"qn_prefix": "",
|
2660
|
+
"alternate_names": "List Data Fields",
|
2661
|
+
"description": "Return the data fields, optionally filtered by the search string.",
|
2662
|
+
"upsert": false,
|
2663
|
+
"list": false,
|
2664
|
+
"details": false,
|
2665
|
+
"form": false,
|
2666
|
+
"ReferenceURL": "",
|
2667
|
+
"isOwnAnchor": true,
|
2668
|
+
"parent_relationship_type_name": "",
|
2669
|
+
"parent_at_end1": true,
|
2670
|
+
"style": "display",
|
2671
|
+
"anchor_scope_id": "",
|
2672
|
+
"parent_id": "",
|
2673
|
+
"level": "Basic",
|
2674
|
+
"Journal Entry": "",
|
2675
|
+
"Attributes": [
|
2676
|
+
{
|
2677
|
+
"Search String": {
|
2678
|
+
"variable_name": "",
|
2679
|
+
"inUpdate": true,
|
2680
|
+
"attr_labels": "Filter",
|
2681
|
+
"examples": "",
|
2682
|
+
"default_value": "*",
|
2683
|
+
"valid_values": "",
|
2684
|
+
"existing_element": "",
|
2685
|
+
"description": "An optional search string to filter results by.",
|
2686
|
+
"qualified_name_pattern": "",
|
2687
|
+
"generated": false,
|
2688
|
+
"style": "Simple",
|
2689
|
+
"user_specified": true,
|
2690
|
+
"unique": false,
|
2691
|
+
"input_required": false,
|
2692
|
+
"position": 0,
|
2693
|
+
"ReferenceURL": "",
|
2694
|
+
"isParent": false,
|
2695
|
+
"isAnchor": false,
|
2696
|
+
"min_cardinality": 0,
|
2697
|
+
"max_cardinality": 1,
|
2698
|
+
"level": "Basic",
|
2699
|
+
"Journal Entry": ""
|
2700
|
+
}
|
2701
|
+
},
|
2702
|
+
{
|
2703
|
+
"Output Format": {
|
2704
|
+
"variable_name": "",
|
2705
|
+
"inUpdate": true,
|
2706
|
+
"attr_labels": "Format",
|
2707
|
+
"examples": "List, Form, Report",
|
2708
|
+
"default_value": "List",
|
2709
|
+
"valid_values": "List; Form; Report; Dict",
|
2710
|
+
"existing_element": "",
|
2711
|
+
"description": "Optional specification of output format for the query.",
|
2712
|
+
"qualified_name_pattern": "",
|
2713
|
+
"generated": false,
|
2714
|
+
"style": "Valid Value",
|
2715
|
+
"user_specified": true,
|
2716
|
+
"unique": false,
|
2717
|
+
"input_required": false,
|
2718
|
+
"position": 0,
|
2719
|
+
"ReferenceURL": "",
|
2720
|
+
"isParent": false,
|
2721
|
+
"isAnchor": false,
|
2722
|
+
"min_cardinality": 0,
|
2723
|
+
"max_cardinality": 1,
|
2724
|
+
"level": "Basic",
|
2725
|
+
"Journal Entry": ""
|
2726
|
+
}
|
2727
|
+
},
|
2728
|
+
{
|
2729
|
+
"Detailed": {
|
2730
|
+
"variable_name": "detailed",
|
2731
|
+
"inUpdate": true,
|
2732
|
+
"attr_labels": "",
|
2733
|
+
"examples": "True; False",
|
2734
|
+
"default_value": "True",
|
2735
|
+
"valid_values": "",
|
2736
|
+
"existing_element": "",
|
2737
|
+
"description": "If true a more detailed set of attributes will be teturned.",
|
2738
|
+
"qualified_name_pattern": "",
|
2739
|
+
"generated": false,
|
2740
|
+
"style": "Bool",
|
2741
|
+
"user_specified": true,
|
2742
|
+
"unique": false,
|
2743
|
+
"input_required": false,
|
2744
|
+
"position": 0,
|
2745
|
+
"ReferenceURL": "",
|
2746
|
+
"isParent": false,
|
2747
|
+
"isAnchor": false,
|
2748
|
+
"min_cardinality": 0,
|
2749
|
+
"max_cardinality": 1,
|
2750
|
+
"level": "Basic",
|
2751
|
+
"Journal Entry": ""
|
2752
|
+
}
|
2753
|
+
}
|
2754
|
+
]
|
2755
|
+
},
|
2756
|
+
"View Data Structures": {
|
2757
|
+
"display_name": "View Data Structures",
|
2758
|
+
"qn_prefix": "",
|
2759
|
+
"alternate_names": "List Data Structures",
|
2760
|
+
"description": "Return the data structures, optionally filtered by the search string.",
|
2761
|
+
"upsert": false,
|
2762
|
+
"list": false,
|
2763
|
+
"details": false,
|
2764
|
+
"form": false,
|
2765
|
+
"ReferenceURL": "",
|
2766
|
+
"isOwnAnchor": true,
|
2767
|
+
"parent_relationship_type_name": "",
|
2768
|
+
"parent_at_end1": true,
|
2769
|
+
"style": "display",
|
2770
|
+
"anchor_scope_id": "",
|
2771
|
+
"parent_id": "",
|
2772
|
+
"level": "Basic",
|
2773
|
+
"Journal Entry": "",
|
2774
|
+
"Attributes": [
|
2775
|
+
{
|
2776
|
+
"Search String": {
|
2777
|
+
"variable_name": "",
|
2778
|
+
"inUpdate": true,
|
2779
|
+
"attr_labels": "Filter",
|
2780
|
+
"examples": "",
|
2781
|
+
"default_value": "*",
|
2782
|
+
"valid_values": "",
|
2783
|
+
"existing_element": "",
|
2784
|
+
"description": "An optional search string to filter results by.",
|
2785
|
+
"qualified_name_pattern": "",
|
2786
|
+
"generated": false,
|
2787
|
+
"style": "Simple",
|
2788
|
+
"user_specified": true,
|
2789
|
+
"unique": false,
|
2790
|
+
"input_required": false,
|
2791
|
+
"position": 0,
|
2792
|
+
"ReferenceURL": "",
|
2793
|
+
"isParent": false,
|
2794
|
+
"isAnchor": false,
|
2795
|
+
"min_cardinality": 0,
|
2796
|
+
"max_cardinality": 1,
|
2797
|
+
"level": "Basic",
|
2798
|
+
"Journal Entry": ""
|
2799
|
+
}
|
2800
|
+
},
|
2801
|
+
{
|
2802
|
+
"Output Format": {
|
2803
|
+
"variable_name": "",
|
2804
|
+
"inUpdate": true,
|
2805
|
+
"attr_labels": "Format",
|
2806
|
+
"examples": "List, Form, Report",
|
2807
|
+
"default_value": "List",
|
2808
|
+
"valid_values": "List; Form; Report; Dict",
|
2809
|
+
"existing_element": "",
|
2810
|
+
"description": "Optional specification of output format for the query.",
|
2811
|
+
"qualified_name_pattern": "",
|
2812
|
+
"generated": false,
|
2813
|
+
"style": "Valid Value",
|
2814
|
+
"user_specified": true,
|
2815
|
+
"unique": false,
|
2816
|
+
"input_required": false,
|
2817
|
+
"position": 0,
|
2818
|
+
"ReferenceURL": "",
|
2819
|
+
"isParent": false,
|
2820
|
+
"isAnchor": false,
|
2821
|
+
"min_cardinality": 0,
|
2822
|
+
"max_cardinality": 1,
|
2823
|
+
"level": "Basic",
|
2824
|
+
"Journal Entry": ""
|
2825
|
+
}
|
2826
|
+
},
|
2827
|
+
{
|
2828
|
+
"Detailed": {
|
2829
|
+
"variable_name": "detailed",
|
2830
|
+
"inUpdate": true,
|
2831
|
+
"attr_labels": "",
|
2832
|
+
"examples": "True; False",
|
2833
|
+
"default_value": "True",
|
2834
|
+
"valid_values": "",
|
2835
|
+
"existing_element": "",
|
2836
|
+
"description": "If true a more detailed set of attributes will be teturned.",
|
2837
|
+
"qualified_name_pattern": "",
|
2838
|
+
"generated": false,
|
2839
|
+
"style": "Bool",
|
2840
|
+
"user_specified": true,
|
2841
|
+
"unique": false,
|
2842
|
+
"input_required": false,
|
2843
|
+
"position": 0,
|
2844
|
+
"ReferenceURL": "",
|
2845
|
+
"isParent": false,
|
2846
|
+
"isAnchor": false,
|
2847
|
+
"min_cardinality": 0,
|
2848
|
+
"max_cardinality": 1,
|
2849
|
+
"level": "Basic",
|
2850
|
+
"Journal Entry": ""
|
2851
|
+
}
|
2852
|
+
}
|
2853
|
+
]
|
2854
|
+
},
|
2855
|
+
"View Data Specifications": {
|
2856
|
+
"display_name": "View Data Specifications",
|
2857
|
+
"qn_prefix": "",
|
2858
|
+
"alternate_names": "List Data Specifications; List Data Specs; View Data Specs",
|
2859
|
+
"description": "Return the data specifications, optionally filtered by the search string.",
|
2860
|
+
"upsert": false,
|
2861
|
+
"list": false,
|
2862
|
+
"details": false,
|
2863
|
+
"form": false,
|
2864
|
+
"ReferenceURL": "",
|
2865
|
+
"isOwnAnchor": true,
|
2866
|
+
"parent_relationship_type_name": "",
|
2867
|
+
"parent_at_end1": true,
|
2868
|
+
"style": "display",
|
2869
|
+
"anchor_scope_id": "",
|
2870
|
+
"parent_id": "",
|
2871
|
+
"level": "Basic",
|
2872
|
+
"Journal Entry": "",
|
2873
|
+
"Attributes": [
|
2874
|
+
{
|
2875
|
+
"Search String": {
|
2876
|
+
"variable_name": "",
|
2877
|
+
"inUpdate": true,
|
2878
|
+
"attr_labels": "Filter",
|
2879
|
+
"examples": "",
|
2880
|
+
"default_value": "*",
|
2881
|
+
"valid_values": "",
|
2882
|
+
"existing_element": "",
|
2883
|
+
"description": "An optional search string to filter results by.",
|
2884
|
+
"qualified_name_pattern": "",
|
2885
|
+
"generated": false,
|
2886
|
+
"style": "Simple",
|
2887
|
+
"user_specified": true,
|
2888
|
+
"unique": false,
|
2889
|
+
"input_required": false,
|
2890
|
+
"position": 0,
|
2891
|
+
"ReferenceURL": "",
|
2892
|
+
"isParent": false,
|
2893
|
+
"isAnchor": false,
|
2894
|
+
"min_cardinality": 0,
|
2895
|
+
"max_cardinality": 1,
|
2896
|
+
"level": "Basic",
|
2897
|
+
"Journal Entry": ""
|
2898
|
+
}
|
2899
|
+
},
|
2900
|
+
{
|
2901
|
+
"Output Format": {
|
2902
|
+
"variable_name": "",
|
2903
|
+
"inUpdate": true,
|
2904
|
+
"attr_labels": "Format",
|
2905
|
+
"examples": "List, Form, Report",
|
2906
|
+
"default_value": "List",
|
2907
|
+
"valid_values": "List; Form; Report; Dict",
|
2908
|
+
"existing_element": "",
|
2909
|
+
"description": "Optional specification of output format for the query.",
|
2910
|
+
"qualified_name_pattern": "",
|
2911
|
+
"generated": false,
|
2912
|
+
"style": "Valid Value",
|
2913
|
+
"user_specified": true,
|
2914
|
+
"unique": false,
|
2915
|
+
"input_required": false,
|
2916
|
+
"position": 0,
|
2917
|
+
"ReferenceURL": "",
|
2918
|
+
"isParent": false,
|
2919
|
+
"isAnchor": false,
|
2920
|
+
"min_cardinality": 0,
|
2921
|
+
"max_cardinality": 1,
|
2922
|
+
"level": "Basic",
|
2923
|
+
"Journal Entry": ""
|
2924
|
+
}
|
2925
|
+
},
|
2926
|
+
{
|
2927
|
+
"Detailed": {
|
2928
|
+
"variable_name": "detailed",
|
2929
|
+
"inUpdate": true,
|
2930
|
+
"attr_labels": "",
|
2931
|
+
"examples": "True; False",
|
2932
|
+
"default_value": "True",
|
2933
|
+
"valid_values": "",
|
2934
|
+
"existing_element": "",
|
2935
|
+
"description": "If true a more detailed set of attributes will be teturned.",
|
2936
|
+
"qualified_name_pattern": "",
|
2937
|
+
"generated": false,
|
2938
|
+
"style": "Bool",
|
2939
|
+
"user_specified": true,
|
2940
|
+
"unique": false,
|
2941
|
+
"input_required": false,
|
2942
|
+
"position": 0,
|
2943
|
+
"ReferenceURL": "",
|
2944
|
+
"isParent": false,
|
2945
|
+
"isAnchor": false,
|
2946
|
+
"min_cardinality": 0,
|
2947
|
+
"max_cardinality": 1,
|
2948
|
+
"level": "Basic",
|
2949
|
+
"Journal Entry": ""
|
2950
|
+
}
|
2951
|
+
}
|
2952
|
+
]
|
2953
|
+
},
|
2954
|
+
"View Detailed Data Field": {
|
2955
|
+
"display_name": "View Detailed Data Field",
|
2956
|
+
"qn_prefix": "",
|
2957
|
+
"alternate_names": "List Detailed Data Field",
|
2958
|
+
"description": "Return the data field details optionally filtered by the search string.",
|
2959
|
+
"upsert": false,
|
2960
|
+
"list": false,
|
2961
|
+
"details": false,
|
2962
|
+
"form": false,
|
2963
|
+
"ReferenceURL": "",
|
2964
|
+
"isOwnAnchor": true,
|
2965
|
+
"parent_relationship_type_name": "",
|
2966
|
+
"parent_at_end1": true,
|
2967
|
+
"style": "display",
|
2968
|
+
"anchor_scope_id": "",
|
2969
|
+
"parent_id": "",
|
2970
|
+
"level": "Basic",
|
2971
|
+
"Journal Entry": "",
|
2972
|
+
"Attributes": [
|
2973
|
+
{
|
2974
|
+
"Search String": {
|
2975
|
+
"variable_name": "",
|
2976
|
+
"inUpdate": true,
|
2977
|
+
"attr_labels": "Filter",
|
2978
|
+
"examples": "",
|
2979
|
+
"default_value": "*",
|
2980
|
+
"valid_values": "",
|
2981
|
+
"existing_element": "",
|
2982
|
+
"description": "An optional search string to filter results by.",
|
2983
|
+
"qualified_name_pattern": "",
|
2984
|
+
"generated": false,
|
2985
|
+
"style": "Simple",
|
2986
|
+
"user_specified": true,
|
2987
|
+
"unique": false,
|
2988
|
+
"input_required": false,
|
2989
|
+
"position": 0,
|
2990
|
+
"ReferenceURL": "",
|
2991
|
+
"isParent": false,
|
2992
|
+
"isAnchor": false,
|
2993
|
+
"min_cardinality": 0,
|
2994
|
+
"max_cardinality": 1,
|
2995
|
+
"level": "Basic",
|
2996
|
+
"Journal Entry": ""
|
2997
|
+
}
|
2998
|
+
},
|
2999
|
+
{
|
3000
|
+
"Output Format": {
|
3001
|
+
"variable_name": "",
|
3002
|
+
"inUpdate": true,
|
3003
|
+
"attr_labels": "Format",
|
3004
|
+
"examples": "List, Form, Report",
|
3005
|
+
"default_value": "List",
|
3006
|
+
"valid_values": "List; Form; Report;Dict",
|
3007
|
+
"existing_element": "",
|
3008
|
+
"description": "Optional specification of output format for the query.",
|
3009
|
+
"qualified_name_pattern": "",
|
3010
|
+
"generated": false,
|
3011
|
+
"style": "Valid Value",
|
3012
|
+
"user_specified": true,
|
3013
|
+
"unique": false,
|
3014
|
+
"input_required": false,
|
3015
|
+
"position": 0,
|
3016
|
+
"ReferenceURL": "",
|
3017
|
+
"isParent": false,
|
3018
|
+
"isAnchor": false,
|
3019
|
+
"min_cardinality": 0,
|
3020
|
+
"max_cardinality": 1,
|
3021
|
+
"level": "Basic",
|
3022
|
+
"Journal Entry": ""
|
3023
|
+
}
|
3024
|
+
},
|
3025
|
+
{
|
3026
|
+
"Detailed": {
|
3027
|
+
"variable_name": "detailed",
|
3028
|
+
"inUpdate": true,
|
3029
|
+
"attr_labels": "",
|
3030
|
+
"examples": "True; False",
|
3031
|
+
"default_value": "True",
|
3032
|
+
"valid_values": "",
|
3033
|
+
"existing_element": "",
|
3034
|
+
"description": "If true a more detailed set of attributes will be teturned.",
|
3035
|
+
"qualified_name_pattern": "",
|
3036
|
+
"generated": false,
|
3037
|
+
"style": "Bool",
|
3038
|
+
"user_specified": true,
|
3039
|
+
"unique": false,
|
3040
|
+
"input_required": false,
|
3041
|
+
"position": 0,
|
3042
|
+
"ReferenceURL": "",
|
3043
|
+
"isParent": false,
|
3044
|
+
"isAnchor": false,
|
3045
|
+
"min_cardinality": 0,
|
3046
|
+
"max_cardinality": 1,
|
3047
|
+
"level": "Basic",
|
3048
|
+
"Journal Entry": ""
|
3049
|
+
}
|
3050
|
+
}
|
3051
|
+
]
|
3052
|
+
},
|
3053
|
+
"View Detailed data Structures": {
|
3054
|
+
"display_name": "View Detailed Data Structures",
|
3055
|
+
"qn_prefix": "",
|
3056
|
+
"alternate_names": "List Detailed Data Structures",
|
3057
|
+
"description": "Return the data structure details, optionally filtered by the search string.",
|
3058
|
+
"upsert": false,
|
3059
|
+
"list": false,
|
3060
|
+
"details": false,
|
3061
|
+
"form": false,
|
3062
|
+
"ReferenceURL": "",
|
3063
|
+
"isOwnAnchor": true,
|
3064
|
+
"parent_relationship_type_name": "",
|
3065
|
+
"parent_at_end1": true,
|
3066
|
+
"style": "display",
|
3067
|
+
"anchor_scope_id": "",
|
3068
|
+
"parent_id": "",
|
3069
|
+
"level": "Basic",
|
3070
|
+
"Journal Entry": "",
|
3071
|
+
"Attributes": [
|
3072
|
+
{
|
3073
|
+
"Search String": {
|
3074
|
+
"variable_name": "",
|
3075
|
+
"inUpdate": true,
|
3076
|
+
"attr_labels": "Filter",
|
3077
|
+
"examples": "",
|
3078
|
+
"default_value": "*",
|
3079
|
+
"valid_values": "",
|
3080
|
+
"existing_element": "",
|
3081
|
+
"description": "An optional search string to filter results by.",
|
3082
|
+
"qualified_name_pattern": "",
|
3083
|
+
"generated": false,
|
3084
|
+
"style": "Simple",
|
3085
|
+
"user_specified": true,
|
3086
|
+
"unique": false,
|
3087
|
+
"input_required": false,
|
3088
|
+
"position": 0,
|
3089
|
+
"ReferenceURL": "",
|
3090
|
+
"isParent": false,
|
3091
|
+
"isAnchor": false,
|
3092
|
+
"min_cardinality": 0,
|
3093
|
+
"max_cardinality": 1,
|
3094
|
+
"level": "Basic",
|
3095
|
+
"Journal Entry": ""
|
3096
|
+
}
|
3097
|
+
},
|
3098
|
+
{
|
3099
|
+
"Output Format": {
|
3100
|
+
"variable_name": "",
|
3101
|
+
"inUpdate": true,
|
3102
|
+
"attr_labels": "Format",
|
3103
|
+
"examples": "List, Form, Report",
|
3104
|
+
"default_value": "List",
|
3105
|
+
"valid_values": "List; Form; Report; Dict",
|
3106
|
+
"existing_element": "",
|
3107
|
+
"description": "Optional specification of output format for the query.",
|
3108
|
+
"qualified_name_pattern": "",
|
3109
|
+
"generated": false,
|
3110
|
+
"style": "Valid Value",
|
3111
|
+
"user_specified": true,
|
3112
|
+
"unique": false,
|
3113
|
+
"input_required": false,
|
3114
|
+
"position": 0,
|
3115
|
+
"ReferenceURL": "",
|
3116
|
+
"isParent": false,
|
3117
|
+
"isAnchor": false,
|
3118
|
+
"min_cardinality": 0,
|
3119
|
+
"max_cardinality": 1,
|
3120
|
+
"level": "Basic",
|
3121
|
+
"Journal Entry": ""
|
3122
|
+
}
|
3123
|
+
},
|
3124
|
+
{
|
3125
|
+
"Detailed": {
|
3126
|
+
"variable_name": "detailed",
|
3127
|
+
"inUpdate": true,
|
3128
|
+
"attr_labels": "",
|
3129
|
+
"examples": "True; False",
|
3130
|
+
"default_value": "True",
|
3131
|
+
"valid_values": "",
|
3132
|
+
"existing_element": "",
|
3133
|
+
"description": "If true a more detailed set of attributes will be teturned.",
|
3134
|
+
"qualified_name_pattern": "",
|
3135
|
+
"generated": false,
|
3136
|
+
"style": "Bool",
|
3137
|
+
"user_specified": true,
|
3138
|
+
"unique": false,
|
3139
|
+
"input_required": false,
|
3140
|
+
"position": 0,
|
3141
|
+
"ReferenceURL": "",
|
3142
|
+
"isParent": false,
|
3143
|
+
"isAnchor": false,
|
3144
|
+
"min_cardinality": 0,
|
3145
|
+
"max_cardinality": 1,
|
3146
|
+
"level": "Basic",
|
3147
|
+
"Journal Entry": ""
|
3148
|
+
}
|
3149
|
+
}
|
3150
|
+
]
|
3151
|
+
},
|
3152
|
+
"View Data Dictionaries": {
|
3153
|
+
"display_name": "View Data Dictionaries",
|
3154
|
+
"qn_prefix": "",
|
3155
|
+
"alternate_names": "List Dictionary; List Dictionaries; View Data Dictionary",
|
3156
|
+
"description": "Return the data dictionaries, optionally filtered by the search string.",
|
3157
|
+
"upsert": false,
|
3158
|
+
"list": false,
|
3159
|
+
"details": false,
|
3160
|
+
"form": false,
|
3161
|
+
"ReferenceURL": "",
|
3162
|
+
"isOwnAnchor": true,
|
3163
|
+
"parent_relationship_type_name": "",
|
3164
|
+
"parent_at_end1": true,
|
3165
|
+
"style": "display",
|
3166
|
+
"anchor_scope_id": "",
|
3167
|
+
"parent_id": "",
|
3168
|
+
"level": "Basic",
|
3169
|
+
"Journal Entry": "",
|
3170
|
+
"Attributes": [
|
3171
|
+
{
|
3172
|
+
"Search String": {
|
3173
|
+
"variable_name": "",
|
3174
|
+
"inUpdate": true,
|
3175
|
+
"attr_labels": "Filter",
|
3176
|
+
"examples": "",
|
3177
|
+
"default_value": "*",
|
3178
|
+
"valid_values": "",
|
3179
|
+
"existing_element": "",
|
3180
|
+
"description": "An optional search string to filter results by.",
|
3181
|
+
"qualified_name_pattern": "",
|
3182
|
+
"generated": false,
|
3183
|
+
"style": "Simple",
|
3184
|
+
"user_specified": true,
|
3185
|
+
"unique": false,
|
3186
|
+
"input_required": false,
|
3187
|
+
"position": 0,
|
3188
|
+
"ReferenceURL": "",
|
3189
|
+
"isParent": false,
|
3190
|
+
"isAnchor": false,
|
3191
|
+
"min_cardinality": 0,
|
3192
|
+
"max_cardinality": 1,
|
3193
|
+
"level": "Basic",
|
3194
|
+
"Journal Entry": ""
|
3195
|
+
}
|
3196
|
+
},
|
3197
|
+
{
|
3198
|
+
"Output Format": {
|
3199
|
+
"variable_name": "",
|
3200
|
+
"inUpdate": true,
|
3201
|
+
"attr_labels": "Format",
|
3202
|
+
"examples": "List, Form, Report",
|
3203
|
+
"default_value": "List",
|
3204
|
+
"valid_values": "List; Form; Report; Dict",
|
3205
|
+
"existing_element": "",
|
3206
|
+
"description": "Optional specification of output format for the query.",
|
3207
|
+
"qualified_name_pattern": "",
|
3208
|
+
"generated": false,
|
3209
|
+
"style": "Valid Value",
|
3210
|
+
"user_specified": true,
|
3211
|
+
"unique": false,
|
3212
|
+
"input_required": false,
|
3213
|
+
"position": 0,
|
3214
|
+
"ReferenceURL": "",
|
3215
|
+
"isParent": false,
|
3216
|
+
"isAnchor": false,
|
3217
|
+
"min_cardinality": 0,
|
3218
|
+
"max_cardinality": 1,
|
3219
|
+
"level": "Basic",
|
3220
|
+
"Journal Entry": ""
|
3221
|
+
}
|
3222
|
+
},
|
3223
|
+
{
|
3224
|
+
"Detailed": {
|
3225
|
+
"variable_name": "detailed",
|
3226
|
+
"inUpdate": true,
|
3227
|
+
"attr_labels": "",
|
3228
|
+
"examples": "True; False",
|
3229
|
+
"default_value": "True",
|
3230
|
+
"valid_values": "",
|
3231
|
+
"existing_element": "",
|
3232
|
+
"description": "If true a more detailed set of attributes will be teturned.",
|
3233
|
+
"qualified_name_pattern": "",
|
3234
|
+
"generated": false,
|
3235
|
+
"style": "Bool",
|
3236
|
+
"user_specified": true,
|
3237
|
+
"unique": false,
|
3238
|
+
"input_required": false,
|
3239
|
+
"position": 0,
|
3240
|
+
"ReferenceURL": "",
|
3241
|
+
"isParent": false,
|
3242
|
+
"isAnchor": false,
|
3243
|
+
"min_cardinality": 0,
|
3244
|
+
"max_cardinality": 1,
|
3245
|
+
"level": "Basic",
|
3246
|
+
"Journal Entry": ""
|
3247
|
+
}
|
3248
|
+
}
|
3249
|
+
]
|
3250
|
+
}
|
3251
|
+
}
|
3252
|
+
}
|