pyegeria 5.2.1.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 +506 -250
- {pyegeria/commands → commands}/cli/egeria_cat.py +127 -50
- {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 +11 -4
- commands/cli/txt_custom_v2.tcss +19 -0
- 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.1.dist-info → pyegeria-5.3.dist-info}/METADATA +9 -8
- pyegeria-5.3.dist-info/RECORD +196 -0
- {pyegeria-5.2.1.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.1.dist-info/RECORD +0 -231
- pyegeria-5.2.1.1.dist-info/entry_points.txt +0 -81
- {pyegeria/commands → commands}/cat/README.md +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.1.dist-info → pyegeria-5.3.dist-info}/LICENSE +0 -0
@@ -0,0 +1,2406 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
"Data Structure Folder"
|
7
|
+
___
|
8
|
+
|
9
|
+
# pFolder
|
10
|
+
|
11
|
+
## pFolder
|
12
|
+
|
13
|
+
Data Structure Folder
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
___
|
21
|
+
|
22
|
+
TBDF-Incoming Weekly Measurement Data
|
23
|
+
___
|
24
|
+
|
25
|
+
# Create Data Structure
|
26
|
+
|
27
|
+
## Data Structure
|
28
|
+
|
29
|
+
TBDF-Incoming Weekly Measurement Data
|
30
|
+
|
31
|
+
## Description
|
32
|
+
This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial
|
33
|
+
|
34
|
+
## In Data Specification
|
35
|
+
Data Specification for Teddy Bear Drop Foot Clinical Trial
|
36
|
+
|
37
|
+
|
38
|
+
## Qualified Name
|
39
|
+
|
40
|
+
|
41
|
+
___
|
42
|
+
|
43
|
+
WWT-Incoming Weekly Measurement Data
|
44
|
+
___
|
45
|
+
|
46
|
+
# Create Data Structure
|
47
|
+
|
48
|
+
## Data Structure
|
49
|
+
|
50
|
+
WWT-Incoming Weekly Measurement Data
|
51
|
+
|
52
|
+
|
53
|
+
## Description
|
54
|
+
A collection of data fields that form a data structure.
|
55
|
+
|
56
|
+
|
57
|
+
## In Data Specification
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
## Qualified Name
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
# Create Data Structure
|
66
|
+
|
67
|
+
## Name
|
68
|
+
|
69
|
+
WWT-Incoming Weekly Measurement Data
|
70
|
+
|
71
|
+
## Description
|
72
|
+
|
73
|
+
This describes the weekly measurement data for each patient for the Werewolf Transformation clinical trial
|
74
|
+
|
75
|
+
## In Data Spec
|
76
|
+
|
77
|
+
Data Specification for Werewolf Transformation Clinical Trial
|
78
|
+
|
79
|
+
|
80
|
+
___
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
"Data Specifications Folder"
|
86
|
+
___
|
87
|
+
|
88
|
+
# pFolder
|
89
|
+
|
90
|
+
## pFolder
|
91
|
+
|
92
|
+
Data Specifications Folder
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
___
|
100
|
+
|
101
|
+
Data Specification for the Teddy Bear Drop Foot Clinical Trial
|
102
|
+
___
|
103
|
+
|
104
|
+
# Create Data Specification
|
105
|
+
|
106
|
+
## Data Specification
|
107
|
+
|
108
|
+
Data Specification for the Teddy Bear Drop Foot Clinical Trial
|
109
|
+
|
110
|
+
## Description
|
111
|
+
Principle data requirements for this clinical trial.
|
112
|
+
|
113
|
+
|
114
|
+
## Is Own Anchor
|
115
|
+
true
|
116
|
+
|
117
|
+
|
118
|
+
## Parent Relationship Type
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
## Parent at End1
|
123
|
+
false
|
124
|
+
|
125
|
+
|
126
|
+
## Qualified Name
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
## Anchor Scope Name
|
135
|
+
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
## GUID
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
## Anchor ID
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
## Parent ID
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
___
|
157
|
+
|
158
|
+
Data Specification for the Werewolf Transformation Clinical Trial
|
159
|
+
___
|
160
|
+
|
161
|
+
# Create Data Specification
|
162
|
+
|
163
|
+
## Data Specification
|
164
|
+
|
165
|
+
Data Specification for the Werewolf Transformation Clinical Trial
|
166
|
+
|
167
|
+
## Description
|
168
|
+
A collection of data fields that for a data specification for a data source.
|
169
|
+
|
170
|
+
|
171
|
+
## Is Own Anchor
|
172
|
+
true
|
173
|
+
|
174
|
+
|
175
|
+
## Parent Relationship Type
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
## Parent at End1
|
180
|
+
false
|
181
|
+
|
182
|
+
|
183
|
+
## Qualified Name
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
## Anchor Scope Name
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
## GUID
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
## Anchor ID
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
## Parent ID
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
# Create Data Spec
|
209
|
+
|
210
|
+
## Data Spec
|
211
|
+
|
212
|
+
Data Specification for the Werewolf Transformation Clinical Trial
|
213
|
+
|
214
|
+
## Description
|
215
|
+
|
216
|
+
Data collection requirements for the Werewolf Transformation Clinical Trial
|
217
|
+
|
218
|
+
|
219
|
+
|
220
|
+
___
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
"Data Dictionary Folder"
|
226
|
+
___
|
227
|
+
|
228
|
+
# pFolder
|
229
|
+
|
230
|
+
## pFolder
|
231
|
+
|
232
|
+
Data Dictionary Folder
|
233
|
+
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
___
|
240
|
+
|
241
|
+
Clinical Trials Data Dictionary
|
242
|
+
___
|
243
|
+
|
244
|
+
# Create Data Dictionary
|
245
|
+
|
246
|
+
## Data Dictionary
|
247
|
+
|
248
|
+
Clinical Trials Data Dictionary
|
249
|
+
|
250
|
+
## Description
|
251
|
+
A collection of data fields that for a data specification for a data source.
|
252
|
+
|
253
|
+
|
254
|
+
## Is Own Anchor
|
255
|
+
false
|
256
|
+
|
257
|
+
|
258
|
+
## Parent Relationship Type
|
259
|
+
|
260
|
+
|
261
|
+
|
262
|
+
## Anchor Scope Name
|
263
|
+
|
264
|
+
|
265
|
+
|
266
|
+
## Parent at End1
|
267
|
+
false
|
268
|
+
|
269
|
+
|
270
|
+
## Qualified Name
|
271
|
+
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
## GUID
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
## Anchor ID
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
## Parent ID
|
288
|
+
|
289
|
+
___
|
290
|
+
|
291
|
+
|
292
|
+
|
293
|
+
|
294
|
+
"Data Class Folder"
|
295
|
+
___
|
296
|
+
|
297
|
+
# pFolder
|
298
|
+
|
299
|
+
## pFolder
|
300
|
+
|
301
|
+
Data Class Folder
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
|
308
|
+
___
|
309
|
+
|
310
|
+
Angle-Class
|
311
|
+
___
|
312
|
+
|
313
|
+
# Create Data Class
|
314
|
+
|
315
|
+
## Data Class
|
316
|
+
|
317
|
+
Angle-Class
|
318
|
+
|
319
|
+
|
320
|
+
## Description
|
321
|
+
Classification criteria for data fields
|
322
|
+
|
323
|
+
|
324
|
+
## Namespace
|
325
|
+
|
326
|
+
|
327
|
+
|
328
|
+
## Match Property Names
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
## Match Threshold
|
333
|
+
0
|
334
|
+
|
335
|
+
|
336
|
+
## IsCaseSensitive
|
337
|
+
false
|
338
|
+
|
339
|
+
|
340
|
+
## Specification
|
341
|
+
|
342
|
+
|
343
|
+
|
344
|
+
## Specification Details
|
345
|
+
|
346
|
+
|
347
|
+
|
348
|
+
## Data Type
|
349
|
+
|
350
|
+
|
351
|
+
|
352
|
+
## Allow Duplicate Values
|
353
|
+
false
|
354
|
+
|
355
|
+
|
356
|
+
## IsNullable
|
357
|
+
false
|
358
|
+
|
359
|
+
|
360
|
+
## Default Value
|
361
|
+
|
362
|
+
|
363
|
+
|
364
|
+
## Average Value
|
365
|
+
0
|
366
|
+
|
367
|
+
|
368
|
+
## Value List
|
369
|
+
|
370
|
+
|
371
|
+
|
372
|
+
## Value Range From
|
373
|
+
0
|
374
|
+
|
375
|
+
|
376
|
+
## Value Range To:
|
377
|
+
|
378
|
+
|
379
|
+
|
380
|
+
|
381
|
+
## Sample Values
|
382
|
+
|
383
|
+
|
384
|
+
|
385
|
+
## Data Patterns
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
## Name Patterns
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
## In Data Dictionary
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
## Qualified Name
|
398
|
+
|
399
|
+
|
400
|
+
|
401
|
+
|
402
|
+
|
403
|
+
|
404
|
+
## GUID
|
405
|
+
|
406
|
+
|
407
|
+
|
408
|
+
|
409
|
+
|
410
|
+
# Create Data Class
|
411
|
+
## Name
|
412
|
+
Angle-Class
|
413
|
+
## Description
|
414
|
+
An integer representing the measurement of an angle.
|
415
|
+
|
416
|
+
## namespace
|
417
|
+
|
418
|
+
## matchPropertyNames - Dr.E can set - name of the properties that are set
|
419
|
+
|
420
|
+
## matchThreshold - % of values that match the data class specification
|
421
|
+
|
422
|
+
|
423
|
+
## specification - rules language - skip?
|
424
|
+
|
425
|
+
## specification details - values for a rule - skip?
|
426
|
+
|
427
|
+
## data type
|
428
|
+
Integer
|
429
|
+
|
430
|
+
## allowsDuplicateValues - boolean
|
431
|
+
true
|
432
|
+
## isNullable
|
433
|
+
false
|
434
|
+
## defaultValue
|
435
|
+
|
436
|
+
## average value
|
437
|
+
|
438
|
+
## valueList
|
439
|
+
|
440
|
+
## valueRangeFrom
|
441
|
+
0
|
442
|
+
## valueRangeTo
|
443
|
+
359
|
444
|
+
## sample values
|
445
|
+
|
446
|
+
## dataPatterns
|
447
|
+
|
448
|
+
## namePatterns
|
449
|
+
|
450
|
+
## In Data Dictionary
|
451
|
+
Clinical Trials Data Dictionary
|
452
|
+
|
453
|
+
|
454
|
+
|
455
|
+
|
456
|
+
|
457
|
+
|
458
|
+
|
459
|
+
___
|
460
|
+
|
461
|
+
Minutes - Class
|
462
|
+
___
|
463
|
+
|
464
|
+
# Create Data Class
|
465
|
+
|
466
|
+
## Data Class
|
467
|
+
|
468
|
+
Minutes - Class
|
469
|
+
|
470
|
+
|
471
|
+
## Description
|
472
|
+
Classification criteria for data fields
|
473
|
+
|
474
|
+
|
475
|
+
## Namespace
|
476
|
+
|
477
|
+
|
478
|
+
|
479
|
+
## Match Property Names
|
480
|
+
|
481
|
+
|
482
|
+
|
483
|
+
## Match Threshold
|
484
|
+
0
|
485
|
+
|
486
|
+
|
487
|
+
## IsCaseSensitive
|
488
|
+
false
|
489
|
+
|
490
|
+
|
491
|
+
## Specification
|
492
|
+
|
493
|
+
|
494
|
+
|
495
|
+
## Specification Details
|
496
|
+
|
497
|
+
|
498
|
+
|
499
|
+
## Data Type
|
500
|
+
|
501
|
+
|
502
|
+
|
503
|
+
## Allow Duplicate Values
|
504
|
+
false
|
505
|
+
|
506
|
+
|
507
|
+
## IsNullable
|
508
|
+
false
|
509
|
+
|
510
|
+
|
511
|
+
## Default Value
|
512
|
+
|
513
|
+
|
514
|
+
|
515
|
+
## Average Value
|
516
|
+
0
|
517
|
+
|
518
|
+
|
519
|
+
## Value List
|
520
|
+
|
521
|
+
|
522
|
+
|
523
|
+
## Value Range From
|
524
|
+
0
|
525
|
+
|
526
|
+
|
527
|
+
## Value Range To:
|
528
|
+
versionId: Version Identifier
|
529
|
+
0
|
530
|
+
|
531
|
+
|
532
|
+
## Sample Values
|
533
|
+
|
534
|
+
|
535
|
+
|
536
|
+
## Data Patterns
|
537
|
+
|
538
|
+
|
539
|
+
|
540
|
+
## Name Patterns
|
541
|
+
|
542
|
+
|
543
|
+
|
544
|
+
## In Data Dictionary
|
545
|
+
|
546
|
+
|
547
|
+
|
548
|
+
## Qualified Name
|
549
|
+
|
550
|
+
|
551
|
+
|
552
|
+
|
553
|
+
|
554
|
+
|
555
|
+
## GUID
|
556
|
+
|
557
|
+
|
558
|
+
|
559
|
+
|
560
|
+
|
561
|
+
# Create Data Class
|
562
|
+
## Name
|
563
|
+
Minutes-Class
|
564
|
+
## Description
|
565
|
+
A number representing time in minutes.
|
566
|
+
|
567
|
+
## namespace
|
568
|
+
|
569
|
+
## matchPropertyNames - Dr.E can set - name of the properties that are set
|
570
|
+
|
571
|
+
## matchThreshold - % of values that match the data class specification
|
572
|
+
|
573
|
+
|
574
|
+
## specification - rules language - skip?
|
575
|
+
|
576
|
+
## specification details - values for a rule - skip?
|
577
|
+
|
578
|
+
## data type
|
579
|
+
Integer
|
580
|
+
## allowsDuplicateValues - boolean
|
581
|
+
True
|
582
|
+
## isNullable
|
583
|
+
|
584
|
+
## defaultValue
|
585
|
+
|
586
|
+
## average value
|
587
|
+
|
588
|
+
## valueList
|
589
|
+
|
590
|
+
## valueRangeFrom
|
591
|
+
0
|
592
|
+
## valueRangeTo
|
593
|
+
|
594
|
+
## sample values
|
595
|
+
|
596
|
+
## dataPatterns
|
597
|
+
|
598
|
+
## namePatterns
|
599
|
+
|
600
|
+
## In Data Dictionary
|
601
|
+
Clinical Trials Data Dictionary
|
602
|
+
|
603
|
+
|
604
|
+
|
605
|
+
|
606
|
+
|
607
|
+
|
608
|
+
|
609
|
+
___
|
610
|
+
|
611
|
+
Percent - Class
|
612
|
+
___
|
613
|
+
|
614
|
+
# Create Data Class
|
615
|
+
|
616
|
+
## Data Class
|
617
|
+
|
618
|
+
Percent - Class
|
619
|
+
|
620
|
+
|
621
|
+
## Description
|
622
|
+
Classification criteria for data fields
|
623
|
+
|
624
|
+
|
625
|
+
## Namespace
|
626
|
+
|
627
|
+
|
628
|
+
|
629
|
+
## Match Property Names
|
630
|
+
|
631
|
+
|
632
|
+
|
633
|
+
## Match Threshold
|
634
|
+
0
|
635
|
+
|
636
|
+
|
637
|
+
## IsCaseSensitive
|
638
|
+
false
|
639
|
+
|
640
|
+
|
641
|
+
## Specification
|
642
|
+
|
643
|
+
|
644
|
+
|
645
|
+
## Specification Details
|
646
|
+
|
647
|
+
|
648
|
+
|
649
|
+
## Data Type
|
650
|
+
|
651
|
+
|
652
|
+
|
653
|
+
## Allow Duplicate Values
|
654
|
+
false
|
655
|
+
|
656
|
+
|
657
|
+
## IsNullable
|
658
|
+
false
|
659
|
+
|
660
|
+
|
661
|
+
## Default Value
|
662
|
+
|
663
|
+
|
664
|
+
|
665
|
+
## Average Value
|
666
|
+
0
|
667
|
+
|
668
|
+
|
669
|
+
## Value List
|
670
|
+
|
671
|
+
|
672
|
+
|
673
|
+
## Value Range From
|
674
|
+
0
|
675
|
+
|
676
|
+
|
677
|
+
## Value Range To:
|
678
|
+
versionId: Version Identifier
|
679
|
+
0
|
680
|
+
|
681
|
+
|
682
|
+
## Sample Values
|
683
|
+
|
684
|
+
|
685
|
+
|
686
|
+
## Data Patterns
|
687
|
+
|
688
|
+
|
689
|
+
|
690
|
+
## Name Patterns
|
691
|
+
|
692
|
+
|
693
|
+
|
694
|
+
## In Data Dictionary
|
695
|
+
|
696
|
+
|
697
|
+
|
698
|
+
## Qualified Name
|
699
|
+
|
700
|
+
|
701
|
+
|
702
|
+
|
703
|
+
|
704
|
+
|
705
|
+
## GUID
|
706
|
+
|
707
|
+
|
708
|
+
|
709
|
+
|
710
|
+
|
711
|
+
# Create Data Class
|
712
|
+
## Name
|
713
|
+
Percent-Class
|
714
|
+
## Description
|
715
|
+
An integer representing a percentage.
|
716
|
+
|
717
|
+
## namespace
|
718
|
+
|
719
|
+
## matchPropertyNames - Dr.E can set - name of the properties that are set
|
720
|
+
|
721
|
+
## matchThreshold - % of values that match the data class specification
|
722
|
+
|
723
|
+
|
724
|
+
## specification - rules language - skip?
|
725
|
+
|
726
|
+
## specification details - values for a rule - skip?
|
727
|
+
|
728
|
+
## data type
|
729
|
+
Integer
|
730
|
+
## allowsDuplicateValues - boolean
|
731
|
+
True
|
732
|
+
|
733
|
+
## isNullable
|
734
|
+
|
735
|
+
## defaultValue
|
736
|
+
|
737
|
+
## average value
|
738
|
+
|
739
|
+
## valueList
|
740
|
+
|
741
|
+
## valueRangeFrom
|
742
|
+
0
|
743
|
+
## valueRangeTo
|
744
|
+
100
|
745
|
+
## sample values
|
746
|
+
|
747
|
+
## dataPatterns
|
748
|
+
|
749
|
+
## namePatterns
|
750
|
+
|
751
|
+
## In Data Dictionary
|
752
|
+
Clinical Trials Data Dictionary
|
753
|
+
|
754
|
+
|
755
|
+
|
756
|
+
|
757
|
+
|
758
|
+
|
759
|
+
___
|
760
|
+
|
761
|
+
Date-Class
|
762
|
+
___
|
763
|
+
|
764
|
+
# Create Data Class
|
765
|
+
|
766
|
+
## Data Class
|
767
|
+
|
768
|
+
Date-Class
|
769
|
+
|
770
|
+
|
771
|
+
## Description
|
772
|
+
Classification criteria for data fields
|
773
|
+
|
774
|
+
|
775
|
+
## Namespace
|
776
|
+
|
777
|
+
|
778
|
+
|
779
|
+
## Match Property Names
|
780
|
+
|
781
|
+
|
782
|
+
|
783
|
+
## Match Threshold
|
784
|
+
0
|
785
|
+
|
786
|
+
|
787
|
+
## IsCaseSensitive
|
788
|
+
false
|
789
|
+
|
790
|
+
|
791
|
+
## Specification
|
792
|
+
|
793
|
+
|
794
|
+
|
795
|
+
## Specification Details
|
796
|
+
|
797
|
+
|
798
|
+
|
799
|
+
## Data Type
|
800
|
+
|
801
|
+
|
802
|
+
|
803
|
+
## Allow Duplicate Values
|
804
|
+
false
|
805
|
+
|
806
|
+
|
807
|
+
## IsNullable
|
808
|
+
false
|
809
|
+
|
810
|
+
|
811
|
+
## Default Value
|
812
|
+
|
813
|
+
|
814
|
+
|
815
|
+
## Average Value
|
816
|
+
0
|
817
|
+
|
818
|
+
|
819
|
+
## Value List
|
820
|
+
|
821
|
+
|
822
|
+
|
823
|
+
## Value Range From
|
824
|
+
0
|
825
|
+
|
826
|
+
|
827
|
+
## Value Range To:
|
828
|
+
versionId: Version Identifier
|
829
|
+
0
|
830
|
+
|
831
|
+
|
832
|
+
## Sample Values
|
833
|
+
|
834
|
+
|
835
|
+
|
836
|
+
## Data Patterns
|
837
|
+
|
838
|
+
|
839
|
+
|
840
|
+
## Name Patterns
|
841
|
+
|
842
|
+
|
843
|
+
|
844
|
+
## In Data Dictionary
|
845
|
+
Clinical Trials Data Dictionary
|
846
|
+
|
847
|
+
|
848
|
+
## Qualified Name
|
849
|
+
|
850
|
+
|
851
|
+
|
852
|
+
|
853
|
+
|
854
|
+
|
855
|
+
## GUID
|
856
|
+
|
857
|
+
|
858
|
+
|
859
|
+
|
860
|
+
|
861
|
+
# Create Data Class
|
862
|
+
## Name
|
863
|
+
Date-Class
|
864
|
+
|
865
|
+
## Description
|
866
|
+
A field of type date
|
867
|
+
|
868
|
+
## namespace
|
869
|
+
|
870
|
+
## data type
|
871
|
+
Date
|
872
|
+
|
873
|
+
## allowsDuplicateValues - boolean
|
874
|
+
True
|
875
|
+
|
876
|
+
## isNullable
|
877
|
+
|
878
|
+
## defaultValue
|
879
|
+
|
880
|
+
## average value
|
881
|
+
|
882
|
+
## valueList
|
883
|
+
|
884
|
+
## valueRangeFrom
|
885
|
+
|
886
|
+
## valueRangeTo
|
887
|
+
|
888
|
+
## sample values
|
889
|
+
|
890
|
+
## dataPatterns
|
891
|
+
|
892
|
+
## namePatterns
|
893
|
+
|
894
|
+
## In Data Dictionary
|
895
|
+
Clinical Trials Data Dictionary
|
896
|
+
|
897
|
+
|
898
|
+
|
899
|
+
|
900
|
+
|
901
|
+
___
|
902
|
+
|
903
|
+
patientId-Class
|
904
|
+
___
|
905
|
+
|
906
|
+
# Create Data Class
|
907
|
+
|
908
|
+
## Data Class
|
909
|
+
|
910
|
+
patientId-Class
|
911
|
+
|
912
|
+
|
913
|
+
## Description
|
914
|
+
Classification criteria for data fields
|
915
|
+
|
916
|
+
|
917
|
+
## Namespace
|
918
|
+
|
919
|
+
|
920
|
+
|
921
|
+
## Match Property Names
|
922
|
+
|
923
|
+
|
924
|
+
|
925
|
+
## Match Threshold
|
926
|
+
0
|
927
|
+
|
928
|
+
|
929
|
+
## IsCaseSensitive
|
930
|
+
false
|
931
|
+
|
932
|
+
|
933
|
+
## Specification
|
934
|
+
|
935
|
+
|
936
|
+
|
937
|
+
## Specification Details
|
938
|
+
|
939
|
+
|
940
|
+
|
941
|
+
## Data Type
|
942
|
+
|
943
|
+
|
944
|
+
|
945
|
+
## Allow Duplicate Values
|
946
|
+
false
|
947
|
+
|
948
|
+
|
949
|
+
## IsNullable
|
950
|
+
false
|
951
|
+
|
952
|
+
|
953
|
+
## Default Value
|
954
|
+
|
955
|
+
|
956
|
+
|
957
|
+
## Average Value
|
958
|
+
0
|
959
|
+
|
960
|
+
|
961
|
+
## Value List
|
962
|
+
|
963
|
+
|
964
|
+
|
965
|
+
## Value Range From
|
966
|
+
0
|
967
|
+
|
968
|
+
|
969
|
+
## Value Range To:
|
970
|
+
versionId: Version Identifier
|
971
|
+
0
|
972
|
+
|
973
|
+
|
974
|
+
## Sample Values
|
975
|
+
|
976
|
+
|
977
|
+
|
978
|
+
## Data Patterns
|
979
|
+
|
980
|
+
|
981
|
+
|
982
|
+
## Name Patterns
|
983
|
+
|
984
|
+
|
985
|
+
|
986
|
+
## In Data Dictionary
|
987
|
+
|
988
|
+
|
989
|
+
|
990
|
+
## Qualified Name
|
991
|
+
|
992
|
+
|
993
|
+
|
994
|
+
|
995
|
+
|
996
|
+
|
997
|
+
## GUID
|
998
|
+
|
999
|
+
|
1000
|
+
|
1001
|
+
|
1002
|
+
|
1003
|
+
|
1004
|
+
|
1005
|
+
|
1006
|
+
|
1007
|
+
|
1008
|
+
___
|
1009
|
+
|
1010
|
+
date-Class
|
1011
|
+
___
|
1012
|
+
|
1013
|
+
# Create Data Class
|
1014
|
+
|
1015
|
+
## Data Class
|
1016
|
+
|
1017
|
+
date-Class
|
1018
|
+
|
1019
|
+
|
1020
|
+
## Description
|
1021
|
+
Classification criteria for data fields
|
1022
|
+
|
1023
|
+
|
1024
|
+
## Namespace
|
1025
|
+
|
1026
|
+
|
1027
|
+
|
1028
|
+
## Match Property Names
|
1029
|
+
|
1030
|
+
|
1031
|
+
|
1032
|
+
## Match Threshold
|
1033
|
+
0
|
1034
|
+
|
1035
|
+
|
1036
|
+
## IsCaseSensitive
|
1037
|
+
false
|
1038
|
+
|
1039
|
+
|
1040
|
+
## Specification
|
1041
|
+
|
1042
|
+
|
1043
|
+
|
1044
|
+
## Specification Details
|
1045
|
+
|
1046
|
+
|
1047
|
+
|
1048
|
+
## Data Type
|
1049
|
+
|
1050
|
+
|
1051
|
+
|
1052
|
+
## Allow Duplicate Values
|
1053
|
+
false
|
1054
|
+
|
1055
|
+
|
1056
|
+
## IsNullable
|
1057
|
+
false
|
1058
|
+
|
1059
|
+
|
1060
|
+
## Default Value
|
1061
|
+
|
1062
|
+
|
1063
|
+
|
1064
|
+
## Average Value
|
1065
|
+
0
|
1066
|
+
|
1067
|
+
|
1068
|
+
## Value List
|
1069
|
+
|
1070
|
+
|
1071
|
+
|
1072
|
+
## Value Range From
|
1073
|
+
0
|
1074
|
+
|
1075
|
+
|
1076
|
+
## Value Range To:
|
1077
|
+
versionId: Version Identifier
|
1078
|
+
0
|
1079
|
+
|
1080
|
+
|
1081
|
+
## Sample Values
|
1082
|
+
|
1083
|
+
|
1084
|
+
|
1085
|
+
## Data Patterns
|
1086
|
+
|
1087
|
+
|
1088
|
+
|
1089
|
+
## Name Patterns
|
1090
|
+
|
1091
|
+
|
1092
|
+
|
1093
|
+
## In Data Dictionary
|
1094
|
+
|
1095
|
+
|
1096
|
+
|
1097
|
+
## Qualified Name
|
1098
|
+
|
1099
|
+
|
1100
|
+
|
1101
|
+
|
1102
|
+
|
1103
|
+
|
1104
|
+
## GUID
|
1105
|
+
|
1106
|
+
|
1107
|
+
|
1108
|
+
|
1109
|
+
|
1110
|
+
|
1111
|
+
|
1112
|
+
|
1113
|
+
|
1114
|
+
|
1115
|
+
___
|
1116
|
+
|
1117
|
+
Measurement-Date-Class
|
1118
|
+
___
|
1119
|
+
|
1120
|
+
# Create Data Class
|
1121
|
+
|
1122
|
+
## Data Class
|
1123
|
+
|
1124
|
+
Measurement-Date-Class
|
1125
|
+
|
1126
|
+
|
1127
|
+
## Description
|
1128
|
+
Classification criteria for data fields
|
1129
|
+
|
1130
|
+
|
1131
|
+
## Namespace
|
1132
|
+
|
1133
|
+
|
1134
|
+
|
1135
|
+
## Match Property Names
|
1136
|
+
|
1137
|
+
|
1138
|
+
|
1139
|
+
## Match Threshold
|
1140
|
+
0
|
1141
|
+
|
1142
|
+
|
1143
|
+
## IsCaseSensitive
|
1144
|
+
false
|
1145
|
+
|
1146
|
+
|
1147
|
+
## Specification
|
1148
|
+
|
1149
|
+
|
1150
|
+
|
1151
|
+
## Specification Details
|
1152
|
+
|
1153
|
+
|
1154
|
+
|
1155
|
+
## Data Type
|
1156
|
+
|
1157
|
+
|
1158
|
+
|
1159
|
+
## Allow Duplicate Values
|
1160
|
+
false
|
1161
|
+
|
1162
|
+
|
1163
|
+
## IsNullable
|
1164
|
+
false
|
1165
|
+
|
1166
|
+
|
1167
|
+
## Default Value
|
1168
|
+
|
1169
|
+
|
1170
|
+
|
1171
|
+
## Average Value
|
1172
|
+
0
|
1173
|
+
|
1174
|
+
|
1175
|
+
## Value List
|
1176
|
+
|
1177
|
+
|
1178
|
+
|
1179
|
+
## Value Range From
|
1180
|
+
0
|
1181
|
+
|
1182
|
+
|
1183
|
+
## Value Range To:
|
1184
|
+
versionId: Version Identifier
|
1185
|
+
0
|
1186
|
+
|
1187
|
+
|
1188
|
+
## Sample Values
|
1189
|
+
|
1190
|
+
|
1191
|
+
|
1192
|
+
## Data Patterns
|
1193
|
+
|
1194
|
+
|
1195
|
+
|
1196
|
+
## Name Patterns
|
1197
|
+
|
1198
|
+
|
1199
|
+
|
1200
|
+
## In Data Dictionary
|
1201
|
+
|
1202
|
+
|
1203
|
+
|
1204
|
+
## Qualified Name
|
1205
|
+
|
1206
|
+
|
1207
|
+
|
1208
|
+
|
1209
|
+
|
1210
|
+
|
1211
|
+
## GUID
|
1212
|
+
|
1213
|
+
|
1214
|
+
___
|
1215
|
+
|
1216
|
+
|
1217
|
+
|
1218
|
+
|
1219
|
+
|
1220
|
+
"Data Fields Folder"
|
1221
|
+
___
|
1222
|
+
|
1223
|
+
# pFolder
|
1224
|
+
|
1225
|
+
## pFolder
|
1226
|
+
|
1227
|
+
Data Fields Folder
|
1228
|
+
|
1229
|
+
|
1230
|
+
|
1231
|
+
|
1232
|
+
|
1233
|
+
|
1234
|
+
___
|
1235
|
+
|
1236
|
+
PatientId
|
1237
|
+
___
|
1238
|
+
|
1239
|
+
# Create Data Field
|
1240
|
+
|
1241
|
+
## Data Field
|
1242
|
+
|
1243
|
+
PatientId
|
1244
|
+
|
1245
|
+
|
1246
|
+
## Description
|
1247
|
+
The unique identifier for a patient.
|
1248
|
+
|
1249
|
+
|
1250
|
+
## Data Type
|
1251
|
+
String
|
1252
|
+
|
1253
|
+
|
1254
|
+
## Position
|
1255
|
+
0
|
1256
|
+
|
1257
|
+
|
1258
|
+
## Parent Data Field
|
1259
|
+
|
1260
|
+
|
1261
|
+
|
1262
|
+
## Minimum Cardinality
|
1263
|
+
|
1264
|
+
|
1265
|
+
|
1266
|
+
|
1267
|
+
## In Data Structure
|
1268
|
+
TBDF-Incoming Weekly Measurement Data;WWT-Incoming Weekly Measurement Data
|
1269
|
+
|
1270
|
+
|
1271
|
+
|
1272
|
+
## Glossary Term
|
1273
|
+
GlossaryTerm::PatientID
|
1274
|
+
|
1275
|
+
|
1276
|
+
## In Data Dictionary
|
1277
|
+
Clinical Trials Data Dictionary
|
1278
|
+
|
1279
|
+
|
1280
|
+
## Aliases
|
1281
|
+
|
1282
|
+
|
1283
|
+
|
1284
|
+
## Name Patterns
|
1285
|
+
|
1286
|
+
|
1287
|
+
|
1288
|
+
## IsNullable
|
1289
|
+
false
|
1290
|
+
|
1291
|
+
|
1292
|
+
|
1293
|
+
## Length
|
1294
|
+
0
|
1295
|
+
|
1296
|
+
|
1297
|
+
## Precision
|
1298
|
+
|
1299
|
+
|
1300
|
+
|
1301
|
+
## Ordered Values
|
1302
|
+
false
|
1303
|
+
|
1304
|
+
|
1305
|
+
## Units
|
1306
|
+
|
1307
|
+
|
1308
|
+
|
1309
|
+
## Sort Order
|
1310
|
+
|
1311
|
+
|
1312
|
+
|
1313
|
+
## Default Value
|
1314
|
+
|
1315
|
+
|
1316
|
+
|
1317
|
+
## Additional Properties
|
1318
|
+
|
1319
|
+
|
1320
|
+
|
1321
|
+
|
1322
|
+
## Namespace
|
1323
|
+
|
1324
|
+
|
1325
|
+
|
1326
|
+
## Qualified Name
|
1327
|
+
DataField::PatientId
|
1328
|
+
|
1329
|
+
|
1330
|
+
|
1331
|
+
|
1332
|
+
# Create Data Field
|
1333
|
+
|
1334
|
+
## Data Field
|
1335
|
+
|
1336
|
+
PatientId
|
1337
|
+
|
1338
|
+
## Description
|
1339
|
+
The unique identifier for a patient.
|
1340
|
+
|
1341
|
+
|
1342
|
+
## Data Type
|
1343
|
+
String
|
1344
|
+
|
1345
|
+
|
1346
|
+
## Position
|
1347
|
+
0
|
1348
|
+
|
1349
|
+
|
1350
|
+
## Parent Data Field
|
1351
|
+
|
1352
|
+
|
1353
|
+
|
1354
|
+
## Minimum Cardinality
|
1355
|
+
|
1356
|
+
|
1357
|
+
|
1358
|
+
## In Data Structure
|
1359
|
+
TBDF-Incoming Weekly Measurement Data;WWT-Incoming Weekly Measurement Data
|
1360
|
+
|
1361
|
+
|
1362
|
+
## Glossary Term
|
1363
|
+
GlossaryTerm::PatientID
|
1364
|
+
|
1365
|
+
|
1366
|
+
## In Data Dictionary
|
1367
|
+
Clinical Trials Data Dictionary
|
1368
|
+
|
1369
|
+
|
1370
|
+
## Aliases
|
1371
|
+
|
1372
|
+
|
1373
|
+
|
1374
|
+
## Name Patterns
|
1375
|
+
|
1376
|
+
|
1377
|
+
|
1378
|
+
## IsNullable
|
1379
|
+
false
|
1380
|
+
|
1381
|
+
|
1382
|
+
## Length
|
1383
|
+
0
|
1384
|
+
|
1385
|
+
|
1386
|
+
## Precision
|
1387
|
+
|
1388
|
+
|
1389
|
+
|
1390
|
+
## Ordered Values
|
1391
|
+
false
|
1392
|
+
|
1393
|
+
|
1394
|
+
## Units
|
1395
|
+
|
1396
|
+
|
1397
|
+
|
1398
|
+
## Sort Order
|
1399
|
+
|
1400
|
+
|
1401
|
+
|
1402
|
+
## Default Value
|
1403
|
+
|
1404
|
+
|
1405
|
+
|
1406
|
+
## Additional Properties
|
1407
|
+
|
1408
|
+
|
1409
|
+
|
1410
|
+
## Namespace
|
1411
|
+
|
1412
|
+
|
1413
|
+
|
1414
|
+
## Qualified Name
|
1415
|
+
DataField::PatientId
|
1416
|
+
|
1417
|
+
|
1418
|
+
|
1419
|
+
|
1420
|
+
|
1421
|
+
|
1422
|
+
___
|
1423
|
+
|
1424
|
+
Zip Code
|
1425
|
+
___
|
1426
|
+
|
1427
|
+
# Create Data Field
|
1428
|
+
|
1429
|
+
## Data Field
|
1430
|
+
|
1431
|
+
Zip Code
|
1432
|
+
|
1433
|
+
|
1434
|
+
## Description
|
1435
|
+
A zip code is a US Postal Code
|
1436
|
+
|
1437
|
+
|
1438
|
+
## Data Type
|
1439
|
+
String
|
1440
|
+
|
1441
|
+
|
1442
|
+
## Position
|
1443
|
+
0
|
1444
|
+
|
1445
|
+
|
1446
|
+
## Parent Data Field
|
1447
|
+
Postal Code
|
1448
|
+
|
1449
|
+
|
1450
|
+
## Minimum Cardinality
|
1451
|
+
|
1452
|
+
|
1453
|
+
|
1454
|
+
|
1455
|
+
## In Data Structure
|
1456
|
+
|
1457
|
+
|
1458
|
+
|
1459
|
+
|
1460
|
+
## Glossary Term
|
1461
|
+
|
1462
|
+
|
1463
|
+
|
1464
|
+
## In Data Dictionary
|
1465
|
+
|
1466
|
+
|
1467
|
+
|
1468
|
+
## Aliases
|
1469
|
+
|
1470
|
+
|
1471
|
+
|
1472
|
+
## Name Patterns
|
1473
|
+
|
1474
|
+
|
1475
|
+
|
1476
|
+
## IsNullable
|
1477
|
+
false
|
1478
|
+
|
1479
|
+
|
1480
|
+
|
1481
|
+
## Length
|
1482
|
+
0
|
1483
|
+
|
1484
|
+
|
1485
|
+
## Precision
|
1486
|
+
|
1487
|
+
|
1488
|
+
|
1489
|
+
## Ordered Values
|
1490
|
+
false
|
1491
|
+
|
1492
|
+
|
1493
|
+
## Units
|
1494
|
+
|
1495
|
+
|
1496
|
+
|
1497
|
+
## Sort Order
|
1498
|
+
|
1499
|
+
|
1500
|
+
|
1501
|
+
## Default Value
|
1502
|
+
|
1503
|
+
|
1504
|
+
|
1505
|
+
## Additional Properties
|
1506
|
+
|
1507
|
+
|
1508
|
+
|
1509
|
+
|
1510
|
+
## Namespace
|
1511
|
+
|
1512
|
+
|
1513
|
+
|
1514
|
+
## Qualified Name
|
1515
|
+
|
1516
|
+
|
1517
|
+
|
1518
|
+
|
1519
|
+
|
1520
|
+
|
1521
|
+
|
1522
|
+
|
1523
|
+
|
1524
|
+
|
1525
|
+
|
1526
|
+
|
1527
|
+
___
|
1528
|
+
|
1529
|
+
Postal Code
|
1530
|
+
___
|
1531
|
+
|
1532
|
+
# Create Data Field
|
1533
|
+
|
1534
|
+
## Data Field
|
1535
|
+
|
1536
|
+
Postal Code
|
1537
|
+
|
1538
|
+
|
1539
|
+
## Description
|
1540
|
+
A collection of data fields that for a data specification for a data source.
|
1541
|
+
|
1542
|
+
|
1543
|
+
## Data Type
|
1544
|
+
|
1545
|
+
|
1546
|
+
|
1547
|
+
## Position
|
1548
|
+
0
|
1549
|
+
|
1550
|
+
|
1551
|
+
## Parent Data Field
|
1552
|
+
Address
|
1553
|
+
|
1554
|
+
|
1555
|
+
## Minimum Cardinality
|
1556
|
+
|
1557
|
+
|
1558
|
+
|
1559
|
+
|
1560
|
+
## In Data Structure
|
1561
|
+
Address;TBDF-Incoming Weekly Measurement Data
|
1562
|
+
|
1563
|
+
|
1564
|
+
|
1565
|
+
## Glossary Term
|
1566
|
+
|
1567
|
+
|
1568
|
+
|
1569
|
+
## In Data Dictionary
|
1570
|
+
|
1571
|
+
|
1572
|
+
|
1573
|
+
## Aliases
|
1574
|
+
|
1575
|
+
|
1576
|
+
|
1577
|
+
## Name Patterns
|
1578
|
+
|
1579
|
+
|
1580
|
+
|
1581
|
+
## IsNullable
|
1582
|
+
false
|
1583
|
+
|
1584
|
+
|
1585
|
+
|
1586
|
+
## Length
|
1587
|
+
0
|
1588
|
+
|
1589
|
+
|
1590
|
+
## Precision
|
1591
|
+
|
1592
|
+
|
1593
|
+
|
1594
|
+
## Ordered Values
|
1595
|
+
false
|
1596
|
+
|
1597
|
+
|
1598
|
+
## Units
|
1599
|
+
|
1600
|
+
|
1601
|
+
|
1602
|
+
## Sort Order
|
1603
|
+
|
1604
|
+
|
1605
|
+
|
1606
|
+
## Default Value
|
1607
|
+
|
1608
|
+
|
1609
|
+
|
1610
|
+
## Additional Properties
|
1611
|
+
|
1612
|
+
|
1613
|
+
|
1614
|
+
|
1615
|
+
## Namespace
|
1616
|
+
|
1617
|
+
|
1618
|
+
|
1619
|
+
## Qualified Name
|
1620
|
+
|
1621
|
+
|
1622
|
+
|
1623
|
+
|
1624
|
+
|
1625
|
+
|
1626
|
+
|
1627
|
+
|
1628
|
+
|
1629
|
+
|
1630
|
+
___
|
1631
|
+
|
1632
|
+
Address
|
1633
|
+
___
|
1634
|
+
|
1635
|
+
# Create Data Field
|
1636
|
+
|
1637
|
+
## Data Field
|
1638
|
+
|
1639
|
+
Address
|
1640
|
+
|
1641
|
+
|
1642
|
+
## Description
|
1643
|
+
A collection of data fields that for a data specification for a data source.
|
1644
|
+
|
1645
|
+
|
1646
|
+
## Data Type
|
1647
|
+
|
1648
|
+
|
1649
|
+
|
1650
|
+
## Position
|
1651
|
+
0
|
1652
|
+
|
1653
|
+
|
1654
|
+
## Parent Data Field
|
1655
|
+
|
1656
|
+
|
1657
|
+
|
1658
|
+
## Minimum Cardinality
|
1659
|
+
|
1660
|
+
|
1661
|
+
|
1662
|
+
|
1663
|
+
## In Data Structure
|
1664
|
+
|
1665
|
+
|
1666
|
+
|
1667
|
+
|
1668
|
+
## Glossary Term
|
1669
|
+
|
1670
|
+
|
1671
|
+
|
1672
|
+
## In Data Dictionary
|
1673
|
+
|
1674
|
+
|
1675
|
+
|
1676
|
+
## Aliases
|
1677
|
+
|
1678
|
+
|
1679
|
+
|
1680
|
+
## Name Patterns
|
1681
|
+
|
1682
|
+
|
1683
|
+
|
1684
|
+
## IsNullable
|
1685
|
+
false
|
1686
|
+
|
1687
|
+
|
1688
|
+
|
1689
|
+
## Length
|
1690
|
+
0
|
1691
|
+
|
1692
|
+
|
1693
|
+
## Precision
|
1694
|
+
|
1695
|
+
|
1696
|
+
|
1697
|
+
## Ordered Values
|
1698
|
+
false
|
1699
|
+
|
1700
|
+
|
1701
|
+
## Units
|
1702
|
+
|
1703
|
+
|
1704
|
+
|
1705
|
+
## Sort Order
|
1706
|
+
|
1707
|
+
|
1708
|
+
|
1709
|
+
## Default Value
|
1710
|
+
|
1711
|
+
|
1712
|
+
|
1713
|
+
## Additional Properties
|
1714
|
+
|
1715
|
+
|
1716
|
+
|
1717
|
+
|
1718
|
+
## Namespace
|
1719
|
+
|
1720
|
+
|
1721
|
+
|
1722
|
+
## Qualified Name
|
1723
|
+
|
1724
|
+
|
1725
|
+
|
1726
|
+
|
1727
|
+
|
1728
|
+
|
1729
|
+
|
1730
|
+
|
1731
|
+
|
1732
|
+
|
1733
|
+
___
|
1734
|
+
|
1735
|
+
Date
|
1736
|
+
___
|
1737
|
+
|
1738
|
+
# Create Data Field
|
1739
|
+
|
1740
|
+
## Data Field
|
1741
|
+
|
1742
|
+
Date
|
1743
|
+
|
1744
|
+
|
1745
|
+
## Description
|
1746
|
+
A collection of data fields that for a data specification for a data source.
|
1747
|
+
|
1748
|
+
|
1749
|
+
## Data Type
|
1750
|
+
Date
|
1751
|
+
|
1752
|
+
|
1753
|
+
## Position
|
1754
|
+
0
|
1755
|
+
|
1756
|
+
|
1757
|
+
## Parent Data Field
|
1758
|
+
|
1759
|
+
|
1760
|
+
|
1761
|
+
## Minimum Cardinality
|
1762
|
+
|
1763
|
+
|
1764
|
+
|
1765
|
+
|
1766
|
+
## In Data Structure
|
1767
|
+
TBDF-Incoming Weekly Measurement Data;WWT-Incoming Weekly Measurement Data
|
1768
|
+
|
1769
|
+
|
1770
|
+
|
1771
|
+
## Glossary Term
|
1772
|
+
|
1773
|
+
|
1774
|
+
|
1775
|
+
## In Data Dictionary
|
1776
|
+
Clinical Trials Data Dictionary
|
1777
|
+
|
1778
|
+
|
1779
|
+
## Aliases
|
1780
|
+
|
1781
|
+
|
1782
|
+
|
1783
|
+
## Name Patterns
|
1784
|
+
|
1785
|
+
|
1786
|
+
|
1787
|
+
## IsNullable
|
1788
|
+
false
|
1789
|
+
|
1790
|
+
|
1791
|
+
|
1792
|
+
## Length
|
1793
|
+
0
|
1794
|
+
|
1795
|
+
|
1796
|
+
## Precision
|
1797
|
+
|
1798
|
+
|
1799
|
+
|
1800
|
+
## Ordered Values
|
1801
|
+
false
|
1802
|
+
|
1803
|
+
|
1804
|
+
## Units
|
1805
|
+
|
1806
|
+
|
1807
|
+
|
1808
|
+
## Sort Order
|
1809
|
+
|
1810
|
+
|
1811
|
+
|
1812
|
+
## Default Value
|
1813
|
+
|
1814
|
+
|
1815
|
+
|
1816
|
+
## Additional Properties
|
1817
|
+
|
1818
|
+
|
1819
|
+
|
1820
|
+
|
1821
|
+
## Namespace
|
1822
|
+
|
1823
|
+
|
1824
|
+
|
1825
|
+
## Qualified Name
|
1826
|
+
|
1827
|
+
|
1828
|
+
|
1829
|
+
|
1830
|
+
|
1831
|
+
|
1832
|
+
|
1833
|
+
|
1834
|
+
|
1835
|
+
|
1836
|
+
___
|
1837
|
+
|
1838
|
+
AngleLeft
|
1839
|
+
___
|
1840
|
+
|
1841
|
+
# Create Data Field
|
1842
|
+
|
1843
|
+
## Data Field
|
1844
|
+
|
1845
|
+
AngleLeft
|
1846
|
+
|
1847
|
+
|
1848
|
+
## Description
|
1849
|
+
Angle rotation of the left leg from vertical
|
1850
|
+
|
1851
|
+
|
1852
|
+
## Data Type
|
1853
|
+
Integer
|
1854
|
+
|
1855
|
+
|
1856
|
+
## Position
|
1857
|
+
0
|
1858
|
+
|
1859
|
+
|
1860
|
+
## Parent Data Field
|
1861
|
+
|
1862
|
+
|
1863
|
+
|
1864
|
+
## Minimum Cardinality
|
1865
|
+
|
1866
|
+
|
1867
|
+
|
1868
|
+
|
1869
|
+
## In Data Structure
|
1870
|
+
TBDF-Incoming Weekly Measurement Data
|
1871
|
+
|
1872
|
+
|
1873
|
+
|
1874
|
+
## Glossary Term
|
1875
|
+
Leg Angle Measurement
|
1876
|
+
|
1877
|
+
|
1878
|
+
## In Data Dictionary
|
1879
|
+
Clinical Trials Data Dictionary
|
1880
|
+
|
1881
|
+
|
1882
|
+
## Aliases
|
1883
|
+
|
1884
|
+
|
1885
|
+
|
1886
|
+
## Name Patterns
|
1887
|
+
|
1888
|
+
|
1889
|
+
|
1890
|
+
## IsNullable
|
1891
|
+
false
|
1892
|
+
|
1893
|
+
|
1894
|
+
|
1895
|
+
## Length
|
1896
|
+
0
|
1897
|
+
|
1898
|
+
|
1899
|
+
## Precision
|
1900
|
+
|
1901
|
+
|
1902
|
+
|
1903
|
+
## Ordered Values
|
1904
|
+
false
|
1905
|
+
|
1906
|
+
|
1907
|
+
## Units
|
1908
|
+
|
1909
|
+
|
1910
|
+
|
1911
|
+
## Sort Order
|
1912
|
+
|
1913
|
+
|
1914
|
+
|
1915
|
+
## Default Value
|
1916
|
+
|
1917
|
+
|
1918
|
+
|
1919
|
+
## Additional Properties
|
1920
|
+
|
1921
|
+
|
1922
|
+
|
1923
|
+
|
1924
|
+
## Namespace
|
1925
|
+
|
1926
|
+
|
1927
|
+
|
1928
|
+
## Qualified Name
|
1929
|
+
|
1930
|
+
|
1931
|
+
|
1932
|
+
|
1933
|
+
|
1934
|
+
|
1935
|
+
|
1936
|
+
|
1937
|
+
|
1938
|
+
|
1939
|
+
___
|
1940
|
+
|
1941
|
+
AngleRight
|
1942
|
+
___
|
1943
|
+
|
1944
|
+
# Create Data Field
|
1945
|
+
|
1946
|
+
## Data Field
|
1947
|
+
|
1948
|
+
AngleRight
|
1949
|
+
|
1950
|
+
|
1951
|
+
## Description
|
1952
|
+
Angle rotation of the left leg from vertical
|
1953
|
+
|
1954
|
+
|
1955
|
+
|
1956
|
+
## Data Type
|
1957
|
+
Integer
|
1958
|
+
|
1959
|
+
|
1960
|
+
## Position
|
1961
|
+
0
|
1962
|
+
|
1963
|
+
|
1964
|
+
## Parent Data Field
|
1965
|
+
|
1966
|
+
|
1967
|
+
|
1968
|
+
## Minimum Cardinality
|
1969
|
+
|
1970
|
+
|
1971
|
+
|
1972
|
+
|
1973
|
+
## In Data Structure
|
1974
|
+
TBDF-Incoming Weekly Measurement Data
|
1975
|
+
|
1976
|
+
|
1977
|
+
|
1978
|
+
## Glossary Term
|
1979
|
+
|
1980
|
+
|
1981
|
+
|
1982
|
+
## In Data Dictionary
|
1983
|
+
Clinical Trials Data Dictionary
|
1984
|
+
|
1985
|
+
|
1986
|
+
## Aliases
|
1987
|
+
|
1988
|
+
|
1989
|
+
|
1990
|
+
## Name Patterns
|
1991
|
+
|
1992
|
+
|
1993
|
+
|
1994
|
+
## IsNullable
|
1995
|
+
false
|
1996
|
+
|
1997
|
+
|
1998
|
+
|
1999
|
+
## Length
|
2000
|
+
0
|
2001
|
+
|
2002
|
+
|
2003
|
+
## Precision
|
2004
|
+
|
2005
|
+
|
2006
|
+
|
2007
|
+
## Ordered Values
|
2008
|
+
false
|
2009
|
+
|
2010
|
+
|
2011
|
+
## Units
|
2012
|
+
|
2013
|
+
|
2014
|
+
|
2015
|
+
## Sort Order
|
2016
|
+
|
2017
|
+
|
2018
|
+
|
2019
|
+
## Default Value
|
2020
|
+
|
2021
|
+
|
2022
|
+
|
2023
|
+
## Additional Properties
|
2024
|
+
|
2025
|
+
|
2026
|
+
|
2027
|
+
|
2028
|
+
## Namespace
|
2029
|
+
|
2030
|
+
|
2031
|
+
|
2032
|
+
## Qualified Name
|
2033
|
+
|
2034
|
+
|
2035
|
+
|
2036
|
+
|
2037
|
+
|
2038
|
+
|
2039
|
+
|
2040
|
+
|
2041
|
+
|
2042
|
+
|
2043
|
+
___
|
2044
|
+
|
2045
|
+
Transformation Completeness
|
2046
|
+
___
|
2047
|
+
|
2048
|
+
# Create Data Field
|
2049
|
+
|
2050
|
+
## Data Field
|
2051
|
+
|
2052
|
+
Transformation Completeness
|
2053
|
+
|
2054
|
+
|
2055
|
+
## Description
|
2056
|
+
Percent completeness of the werewolf transformation
|
2057
|
+
|
2058
|
+
|
2059
|
+
## Data Type
|
2060
|
+
Integer
|
2061
|
+
|
2062
|
+
|
2063
|
+
## Position
|
2064
|
+
0
|
2065
|
+
|
2066
|
+
|
2067
|
+
## Parent Data Field
|
2068
|
+
|
2069
|
+
|
2070
|
+
|
2071
|
+
## Minimum Cardinality
|
2072
|
+
|
2073
|
+
|
2074
|
+
|
2075
|
+
|
2076
|
+
## In Data Structure
|
2077
|
+
TBDF-Incoming Weekly Measurement Data
|
2078
|
+
|
2079
|
+
|
2080
|
+
|
2081
|
+
## Glossary Term
|
2082
|
+
|
2083
|
+
|
2084
|
+
|
2085
|
+
## In Data Dictionary
|
2086
|
+
Clinical Trials Data Dictionary
|
2087
|
+
|
2088
|
+
|
2089
|
+
## Aliases
|
2090
|
+
|
2091
|
+
|
2092
|
+
|
2093
|
+
## Name Patterns
|
2094
|
+
|
2095
|
+
|
2096
|
+
|
2097
|
+
## IsNullable
|
2098
|
+
false
|
2099
|
+
|
2100
|
+
|
2101
|
+
|
2102
|
+
## Length
|
2103
|
+
0
|
2104
|
+
|
2105
|
+
|
2106
|
+
## Precision
|
2107
|
+
|
2108
|
+
|
2109
|
+
|
2110
|
+
## Ordered Values
|
2111
|
+
false
|
2112
|
+
|
2113
|
+
|
2114
|
+
## Units
|
2115
|
+
percent
|
2116
|
+
|
2117
|
+
|
2118
|
+
## Sort Order
|
2119
|
+
|
2120
|
+
|
2121
|
+
|
2122
|
+
## Default Value
|
2123
|
+
|
2124
|
+
|
2125
|
+
|
2126
|
+
## Additional Properties
|
2127
|
+
|
2128
|
+
|
2129
|
+
|
2130
|
+
|
2131
|
+
## Namespace
|
2132
|
+
|
2133
|
+
|
2134
|
+
|
2135
|
+
## Qualified Name
|
2136
|
+
|
2137
|
+
|
2138
|
+
|
2139
|
+
|
2140
|
+
|
2141
|
+
|
2142
|
+
|
2143
|
+
|
2144
|
+
|
2145
|
+
|
2146
|
+
___
|
2147
|
+
|
2148
|
+
Transformation Speed
|
2149
|
+
___
|
2150
|
+
|
2151
|
+
# Create Data Field
|
2152
|
+
|
2153
|
+
## Data Field
|
2154
|
+
|
2155
|
+
Transformation Speed
|
2156
|
+
|
2157
|
+
|
2158
|
+
## Description
|
2159
|
+
Speed of the werewolf transformation in minutes.
|
2160
|
+
|
2161
|
+
|
2162
|
+
|
2163
|
+
## Data Type
|
2164
|
+
Integer
|
2165
|
+
|
2166
|
+
|
2167
|
+
## Position
|
2168
|
+
0
|
2169
|
+
|
2170
|
+
|
2171
|
+
## Parent Data Field
|
2172
|
+
|
2173
|
+
|
2174
|
+
|
2175
|
+
## Minimum Cardinality
|
2176
|
+
|
2177
|
+
|
2178
|
+
|
2179
|
+
|
2180
|
+
## In Data Structure
|
2181
|
+
TBDF-Incoming Weekly Measurement Data
|
2182
|
+
|
2183
|
+
|
2184
|
+
|
2185
|
+
## Glossary Term
|
2186
|
+
|
2187
|
+
|
2188
|
+
|
2189
|
+
## In Data Dictionary
|
2190
|
+
Clinical Trials Data Dictionary
|
2191
|
+
|
2192
|
+
|
2193
|
+
## Aliases
|
2194
|
+
|
2195
|
+
|
2196
|
+
|
2197
|
+
## Name Patterns
|
2198
|
+
|
2199
|
+
|
2200
|
+
|
2201
|
+
## IsNullable
|
2202
|
+
false
|
2203
|
+
|
2204
|
+
|
2205
|
+
|
2206
|
+
## Length
|
2207
|
+
0
|
2208
|
+
|
2209
|
+
|
2210
|
+
## Precision
|
2211
|
+
|
2212
|
+
|
2213
|
+
|
2214
|
+
## Ordered Values
|
2215
|
+
false
|
2216
|
+
|
2217
|
+
|
2218
|
+
## Units
|
2219
|
+
minutes
|
2220
|
+
|
2221
|
+
|
2222
|
+
## Sort Order
|
2223
|
+
|
2224
|
+
|
2225
|
+
|
2226
|
+
## Default Value
|
2227
|
+
|
2228
|
+
|
2229
|
+
|
2230
|
+
## Additional Properties
|
2231
|
+
|
2232
|
+
|
2233
|
+
|
2234
|
+
|
2235
|
+
## Namespace
|
2236
|
+
|
2237
|
+
|
2238
|
+
|
2239
|
+
## Qualified Name
|
2240
|
+
|
2241
|
+
|
2242
|
+
|
2243
|
+
|
2244
|
+
|
2245
|
+
|
2246
|
+
|
2247
|
+
|
2248
|
+
|
2249
|
+
|
2250
|
+
___
|
2251
|
+
|
2252
|
+
Transformation Duration
|
2253
|
+
___
|
2254
|
+
|
2255
|
+
# Create Data Field
|
2256
|
+
|
2257
|
+
## Data Field
|
2258
|
+
|
2259
|
+
Transformation Duration
|
2260
|
+
|
2261
|
+
|
2262
|
+
## Description
|
2263
|
+
Duration of the werewolf transformation, in minutes.
|
2264
|
+
|
2265
|
+
|
2266
|
+
## Data Type
|
2267
|
+
Integer
|
2268
|
+
|
2269
|
+
|
2270
|
+
## Position
|
2271
|
+
0
|
2272
|
+
|
2273
|
+
|
2274
|
+
## Parent Data Field
|
2275
|
+
|
2276
|
+
|
2277
|
+
|
2278
|
+
## Minimum Cardinality
|
2279
|
+
|
2280
|
+
|
2281
|
+
|
2282
|
+
|
2283
|
+
## In Data Structure
|
2284
|
+
WWT-Incoming Weekly Measurement Data
|
2285
|
+
|
2286
|
+
|
2287
|
+
|
2288
|
+
## Glossary Term
|
2289
|
+
|
2290
|
+
|
2291
|
+
|
2292
|
+
## In Data Dictionary
|
2293
|
+
Clinical Trials Data Dictionary
|
2294
|
+
|
2295
|
+
|
2296
|
+
## Aliases
|
2297
|
+
|
2298
|
+
|
2299
|
+
|
2300
|
+
## Name Patterns
|
2301
|
+
|
2302
|
+
|
2303
|
+
|
2304
|
+
## IsNullable
|
2305
|
+
false
|
2306
|
+
|
2307
|
+
|
2308
|
+
|
2309
|
+
## Length
|
2310
|
+
0
|
2311
|
+
|
2312
|
+
|
2313
|
+
## Precision
|
2314
|
+
|
2315
|
+
|
2316
|
+
|
2317
|
+
## Ordered Values
|
2318
|
+
false
|
2319
|
+
|
2320
|
+
|
2321
|
+
## Units
|
2322
|
+
Minutes
|
2323
|
+
|
2324
|
+
|
2325
|
+
## Sort Order
|
2326
|
+
|
2327
|
+
|
2328
|
+
|
2329
|
+
## Default Value
|
2330
|
+
|
2331
|
+
|
2332
|
+
|
2333
|
+
## Additional Properties
|
2334
|
+
|
2335
|
+
|
2336
|
+
|
2337
|
+
|
2338
|
+
## Namespace
|
2339
|
+
|
2340
|
+
|
2341
|
+
|
2342
|
+
## Qualified Name
|
2343
|
+
|
2344
|
+
|
2345
|
+
|
2346
|
+
|
2347
|
+
|
2348
|
+
|
2349
|
+
|
2350
|
+
|
2351
|
+
|
2352
|
+
|
2353
|
+
|
2354
|
+
|
2355
|
+
|
2356
|
+
|
2357
|
+
|
2358
|
+
|
2359
|
+
|
2360
|
+
|
2361
|
+
|
2362
|
+
|
2363
|
+
|
2364
|
+
|
2365
|
+
|
2366
|
+
___
|
2367
|
+
|
2368
|
+
|
2369
|
+
# Create Data Field
|
2370
|
+
## Name
|
2371
|
+
Patient Country
|
2372
|
+
## Description
|
2373
|
+
Country of the patient
|
2374
|
+
## Data Type
|
2375
|
+
String
|
2376
|
+
## Position
|
2377
|
+
0
|
2378
|
+
## Min Cardinality
|
2379
|
+
1
|
2380
|
+
## Max Cardinality
|
2381
|
+
1
|
2382
|
+
|
2383
|
+
## In Data Structure
|
2384
|
+
|
2385
|
+
|
2386
|
+
## Data Class
|
2387
|
+
## Glossary Term
|
2388
|
+
|
2389
|
+
## Namespace
|
2390
|
+
> forms part of qualified name
|
2391
|
+
|
2392
|
+
## Version
|
2393
|
+
|
2394
|
+
## Parent
|
2395
|
+
DataField::PatientId
|
2396
|
+
## In Data Dictionary
|
2397
|
+
|
2398
|
+
## Qualified Name
|
2399
|
+
|
2400
|
+
|
2401
|
+
|
2402
|
+
|
2403
|
+
|
2404
|
+
|
2405
|
+
|
2406
|
+
|