pyegeria 5.4.0.14__py3-none-any.whl → 5.4.0.15__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.
@@ -302,7 +302,7 @@ class CollectionManager(Client2):
302
302
  return NO_ELEMENTS_FOUND
303
303
 
304
304
  if output_format != 'JSON': # return a simplified markdown representation
305
- logger.info(f"Found elements, output format: {output_format}, output_format_set: {output_format_set}")
305
+ # logger.info(f"Found elements, output format: {output_format} and output_format_set: {output_format_set}")
306
306
  return self._generate_collection_output(elements, None, classification_name,
307
307
  output_format, output_format_set)
308
308
  return elements
@@ -1437,7 +1437,7 @@ class GovernanceOfficer(Client):
1437
1437
  async def _async_find_governance_definitions(self, search_filter: str = "*", starts_with: bool = True,
1438
1438
  ends_with: bool = False, ignore_case: bool = False,
1439
1439
  start_from: int = 0, page_size: int = 0, body: dict = None,
1440
- output_format: str = 'JSON') -> list[dict] | str:
1440
+ output_format: str = 'JSON', output_format_set: dict = None) -> list[dict] | str:
1441
1441
  """ Retrieve the list of governance definition metadata elements that contain the search string.
1442
1442
  Async version.
1443
1443
 
@@ -1516,7 +1516,7 @@ class GovernanceOfficer(Client):
1516
1516
  if element == NO_ELEMENTS_FOUND:
1517
1517
  return NO_ELEMENTS_FOUND
1518
1518
  if output_format != 'JSON': # return a simplified markdown representation
1519
- return self.generate_governance_definition_output(element, search_filter, output_format)
1519
+ return self.generate_governance_definition_output(element, search_filter, output_format, output_format_set)
1520
1520
  return response.json().get("elements", NO_ELEMENTS_FOUND)
1521
1521
 
1522
1522
  def find_governance_definitions(self, search_filter: str = "*", starts_with: bool = True, ends_with: bool = False,
pyegeria/load_config.py CHANGED
@@ -46,10 +46,12 @@ class PyegeriaSettings(BaseSettings):
46
46
  """
47
47
  # Core settings needed to locate the config file
48
48
  pyegeria_root_path: str = ""
49
+ pyegeria_config_directory: str = ""
49
50
  pyegeria_config_file: str = "config.json"
50
51
 
51
52
  # Additional settings that can be loaded from .env
52
53
  pyegeria_console_width: int = 200
54
+ pyegeria_user_format_sets_dir: str = "~/.pyegeria/format_sets"
53
55
  egeria_user_name: str = ""
54
56
  egeria_user_password: str = ""
55
57
 
@@ -104,7 +106,10 @@ class EnvironmentConfig(BaseModel):
104
106
  egeria_view_server_url: str = Field(default="https://localhost:9443", alias="Egeria View Server URL")
105
107
  egeria_view_server: str = Field(default="qs-view-server", alias="Egeria View Server")
106
108
  pyegeria_root: str = Field(default="/Users/dwolfson/localGit/egeria-v5-3/egeria-python", alias="Pyegeria Root")
109
+ pyegeria_config_directory: str = Field(default="", alias="Pyegeria Config Directory")
107
110
  pyegeria_config_file: str = Field(default="config.json", alias="Egeria Config File")
111
+ pyegeria_publishing_root: str = Field(default="/dr-egeria-outbox", alias="Pyegeria Publishing Root")
112
+ pyegeria_user_format_sets_dir: str = Field(default="~/.pyegeria/format_sets", alias="Pyegeria User Format Sets Dir")
108
113
 
109
114
  class Config:
110
115
  populate_by_name = True
@@ -253,10 +258,12 @@ def load_app_config(env_file: str = None):
253
258
  # Initialize env_settings with default values
254
259
  env_settings = PyegeriaSettings()
255
260
 
256
- # First check if OS environment variables are set for PYEGERIA_ROOT_PATH and PYEGERIA_CONFIG_FILE
261
+ # First check if OS environment variables are set for PYEGERIA_CONFIG_DIRECTORY, PYEGERIA_ROOT_PATH and PYEGERIA_CONFIG_FILE
262
+ config_directory = os.getenv("PYEGERIA_CONFIG_DIRECTORY")
257
263
  root_path = os.getenv("PYEGERIA_ROOT_PATH")
258
264
  config_file = os.getenv("PYEGERIA_CONFIG_FILE")
259
265
 
266
+ logger.info(f"DEBUG: Initial config_directory from OS env: {config_directory}")
260
267
  logger.info(f"DEBUG: Initial root_path from OS env: {root_path}")
261
268
  logger.info(f"DEBUG: Initial config_file from OS env: {config_file}")
262
269
  logger.info(f"DEBUG: env_file parameter: {env_file}")
@@ -267,21 +274,25 @@ def load_app_config(env_file: str = None):
267
274
  env_settings = PyegeriaSettings.with_env_file(env_file)
268
275
 
269
276
  # If env_file is specified, always use its values, regardless of OS environment variables
277
+ config_directory = env_settings.pyegeria_config_directory
270
278
  root_path = env_settings.pyegeria_root_path
271
279
  config_file = env_settings.pyegeria_config_file
272
- # If config_file is set but root_path is not, we'll try to load the config file first
273
- # and only check the .env file if we still don't have a root_path after loading the config file
274
- elif config_file is not None and root_path is None:
280
+ # If config_file is set but config_directory and root_path are not, we'll try to load the config file first
281
+ # and only check the .env file if we still don't have a config_directory or root_path after loading the config file
282
+ elif config_file is not None and config_directory is None and root_path is None:
275
283
  # We'll check for a .env file later if needed
276
284
  pass
277
- # If neither config_file nor root_path is set, check for a .env file in the current directory
278
- elif (root_path is None or config_file is None):
285
+ # If any of config_directory, root_path, or config_file is not set, check for a .env file in the current directory
286
+ elif (config_directory is None or root_path is None or config_file is None):
279
287
  if os.path.exists(".env"):
280
288
  logger.info("Found .env file")
281
289
  logger.debug(f"DEBUG: Loading environment variables from .env in current directory")
282
290
  env_settings = PyegeriaSettings()
291
+ logger.debug(f"DEBUG: env_settings.pyegeria_config_directory: {env_settings.pyegeria_config_directory}")
283
292
  logger.debug(f"DEBUG: env_settings.pyegeria_root_path: {env_settings.pyegeria_root_path}")
284
293
  logger.debug(f"DEBUG: env_settings.pyegeria_config_file: {env_settings.pyegeria_config_file}")
294
+ if config_directory is None:
295
+ config_directory = env_settings.pyegeria_config_directory
285
296
  if root_path is None:
286
297
  root_path = env_settings.pyegeria_root_path
287
298
  if config_file is None:
@@ -291,13 +302,18 @@ def load_app_config(env_file: str = None):
291
302
  else:
292
303
  logger.error(f"The .env file at {env_file} wasn't found-outer")
293
304
  # Use default values if still not set
305
+ if config_directory is None:
306
+ config_directory = ""
294
307
  if root_path is None:
295
308
  root_path = ""
296
309
  if config_file is None:
297
310
  config_file = "config.json"
298
311
 
299
- # Construct the config file path
300
- config_file_path = os.path.join(root_path, config_file)
312
+ # Construct the config file path - prefer config_directory over root_path
313
+ if config_directory:
314
+ config_file_path = os.path.join(config_directory, config_file)
315
+ else:
316
+ config_file_path = os.path.join(root_path, config_file)
301
317
 
302
318
  if os.path.exists(config_file_path):
303
319
  logger.info("Found config file at {}".format(config_file_path))
@@ -306,9 +322,14 @@ def load_app_config(env_file: str = None):
306
322
  file_config = json.load(f)
307
323
  config_dict.update(file_config) # Merge/override defaults
308
324
 
309
- # If root_path is not set from environment variables or .env file,
325
+ # If config_directory is not set from environment variables or .env file,
310
326
  # set it from the config file if available
311
- if not root_path and "Environment" in file_config and "Pyegeria Root" in file_config["Environment"]:
327
+ if not config_directory and "Environment" in file_config and "Pyegeria Config Directory" in file_config["Environment"]:
328
+ config_directory = file_config["Environment"]["Pyegeria Config Directory"]
329
+ logger.debug(f"DEBUG: Setting config_directory from config file: {config_directory}")
330
+ # If config_directory is still not set and root_path is not set from environment variables or .env file,
331
+ # set root_path from the config file if available
332
+ if not config_directory and not root_path and "Environment" in file_config and "Pyegeria Root" in file_config["Environment"]:
312
333
  root_path = file_config["Environment"]["Pyegeria Root"]
313
334
  logger.debug(f"DEBUG: Setting root_path from config file: {root_path}")
314
335
  except json.JSONDecodeError:
@@ -351,6 +372,10 @@ def load_app_config(env_file: str = None):
351
372
  env["Egeria Platform URL"] = os.getenv("EGERIA_PLATFORM_URL", env.get("Egeria Platform URL", "https://localhost:9443"))
352
373
  env["Egeria View Server"] = os.getenv("EGERIA_VIEW_SERVER", env.get("Egeria View Server", "qs-view-server"))
353
374
  env["Egeria View Server URL"] = os.getenv("EGERIA_VIEW_SERVER_URL", env.get("Egeria View Server URL", "https://localhost:9443"))
375
+ env['Pyegeria Publishing Root'] = os.getenv("PYEGERIA_PUBLISHING_ROOT", env.get("Pyegeria Publishing Root", "/dr-egeria-outbox"))
376
+ env['Pyegeria User Format Sets Dir'] = os.getenv("PYEGERIA_USER_FORMAT_SETS_DIR", env.get("Pyegeria User Format Sets Dir", "~/.pyegeria/format_sets"))
377
+ # Set Pyegeria Config Directory to the config_directory value we've already determined with the correct precedence order
378
+ env["Pyegeria Config Directory"] = config_directory
354
379
  # Set Pyegeria Root to the root_path value we've already determined with the correct precedence order
355
380
  env["Pyegeria Root"] = root_path
356
381
 
@@ -363,12 +388,12 @@ def load_app_config(env_file: str = None):
363
388
  log["file_logging_level"] = os.getenv("PYEGERIA_FILE_LOG_LVL", log.get("file_logging_level", "INFO"))
364
389
  log["log_directory"] = os.getenv("PYEGERIA_LOG_DIRECTORY", log.get("log_directory", 'logs'))
365
390
  log["logging_console_format"] = os.getenv("PYEGERIA_LOGGING_CONSOLE_FORMAT", log.get("logging_console_format",
366
- " <green>{time:YYYY-MM-DD HH:mm:ss}</green> | <level>{level}</level> | "
391
+ "<green>{time:YYYY-MM-DD HH:mm:ss}</green> | <level>{level}</level> | "
367
392
  "<cyan>{name}</cyan>:<cyan>{line}</cyan> - "
368
393
  "<level>{message}</level> -{extra}"))
369
394
  log["logging_file_format"] = os.getenv("PYEGERIA_LOGGING_FILE_FORMAT", log.get("logging_file_format",
370
- " {time:YYYY-MM-DD HH:mm:ss} | {level} | {function}:{line} "
371
- "- {message }-{extra}"))
395
+ "{time:YYYY-MM-DD HH:mm:ss} | {level} | {function}:{line} "
396
+ "- {message}-{extra}"))
372
397
 
373
398
  # User Profile section
374
399
  user = config_dict["User Profile"]
@@ -152,7 +152,7 @@ def init_logging(log_init:bool= False):
152
152
  if not log_init:
153
153
  logger.disable("pyegeria")
154
154
 
155
- def config_logging():
155
+ def config_logging(verbose: bool=False):
156
156
  """
157
157
  Configures logging for the application using Loguru.
158
158
 
@@ -189,7 +189,7 @@ def config_logging():
189
189
  logger.add(log_file_path,
190
190
  level=file_logging_level,
191
191
  format=logging_file_format,
192
- filter = "",
192
+ # filter = "",
193
193
  retention="7 days", # Keep logs for 7 days
194
194
  rotation="10 MB", # rotate logs once they are 10mb
195
195
  compression="zip")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyegeria
3
- Version: 5.4.0.14
3
+ Version: 5.4.0.15
4
4
  Summary: A python client for Egeria
5
5
  License: Apache 2.0
6
6
  Keywords: egeria,metadata,governance
@@ -1,6 +1,7 @@
1
1
  commands/cat/Dr-Egeria_md-orig.py,sha256=ZX20BvRo0fIFisvy5Z-VJDLVyKbQoud89-CUV2S66tU,7336
2
2
  commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
3
3
  commands/cat/__init__.py,sha256=l4CImkjEiTQKS7QR-RQwzHIgRpfP032Mn_NZEuIILwg,98
4
+ commands/cat/debug_log,sha256=SPyh14qmd0m7Z656SPVp0egoKFjGpOXAB6KWwpcmrjs,63359
4
5
  commands/cat/dr_egeria_command_help.py,sha256=RIxLNIva3_8ofWG_q-tvuIwHY8OZzoOxu6T8CdYZDdU,11101
5
6
  commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
6
7
  commands/cat/dr_egeria_md.py,sha256=dwMWHO9xuH8h2YaVfEHHBLlwOVyZLxb2LuEGNOvLgTg,19353
@@ -21,7 +22,7 @@ commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQep
21
22
  commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
22
23
  commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
23
24
  commands/cat/list_deployed_servers.py,sha256=_xR7EaaCsxIjTphxmoCZlARoja_vQqZ881pFiEuhw-8,5719
24
- commands/cat/list_format_set.py,sha256=4cgboQdQZyPmufsw8CHnXo_e1_tGf5GmsTdfZ0FLqkc,17676
25
+ commands/cat/list_format_set.py,sha256=Lb0or-I_oy3GwqDUKyzN7nw5aKJWGoTlbQ68K7yLC_4,18048
25
26
  commands/cat/list_glossaries.py,sha256=pKJdiRMrSBpmPv0yOWoR_CdGZP06MuxfPGwCXc-kSQw,7666
26
27
  commands/cat/list_projects.py,sha256=NzWTuepTGUEyxK-eWvuUxtBgCtNWubVwmz2eqm2UN1c,7997
27
28
  commands/cat/list_tech_type_elements.py,sha256=-9omj5en9dSP1xMSljYVHyfXsuhuE1bO2IFj_bZPhAs,6873
@@ -99,8 +100,6 @@ commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0es
99
100
  md_processing/__init__.py,sha256=Z1nnPovPro70uO_KQNNmMZZsVry37CjnAWHQMIAbCa4,6857
100
101
  md_processing/data/commands-working.json,sha256=uCo_azcuuYqGm7QffJeCGj7PyZuZRGdu7kKf4XWmMoA,1162560
101
102
  md_processing/data/commands.json,sha256=qywJWX4vfZIq2LzcucY0kI5R-59HiMk6B6DQNo9TynQ,1162918
102
- md_processing/dr-egeria-outbox/DataStruct-2025-07-29-20-49-16.py,sha256=tB4usD68FAAUNI_sO0VcZ3-vuW4K6fgJaBWfQIrMAac,319
103
- md_processing/dr-egeria-outbox/Mandy-DataStruct-2025-07-29-15-54-45.md,sha256=y04ByuucQBMmp4EtfuHplERxGrCij2qju5MYo8iGvNA,556
104
103
  md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
105
104
  md_processing/family_docs/Data Designer/Create_Data_Class.md,sha256=eC6JxHiK_uPnUgqCbu4AN8hPWpddlvch_7j1tb8k_B8,3561
106
105
  md_processing/family_docs/Data Designer/Create_Data_Dictionary.md,sha256=VVWXQFWJgprYtRTvnDUu--S2mSTNDWu3kSED8U2WnR4,782
@@ -192,16 +191,16 @@ pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8Md
192
191
  pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
193
192
  pyegeria/_exceptions_new.py,sha256=rxfT3KcBUCeXoz_JJotTzylT0o9SZ_yu4EMuWMScCF8,18182
194
193
  pyegeria/_globals.py,sha256=qSU5hM4uuJZPp-YapEEKxfcdgH9hauc6R7gRkELLroY,1132
195
- pyegeria/_output_formats.py,sha256=LgXSCpTNf-Qd8zZVTS1wUl_F1Emk-gxUFYqePVJJpAc,11954
194
+ pyegeria/_output_format_models.py,sha256=nVCq8usYiRqSGcolDEadkZNzzWISJBGwrvY2-56ndi8,12756
195
+ pyegeria/_output_formats.py,sha256=uOQthN3a8EEZshfcEyB1Jug9Z18LX0JLDV6m5mFzd5A,23058
196
196
  pyegeria/_validators.py,sha256=pNxND0dN2qvyuGE52N74l1Ezfrh2p9Hao2ziR_t1ENI,7425
197
197
  pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
198
198
  pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
199
199
  pyegeria/classification_manager_omvs.py,sha256=EBWjdx_C999bRu2-INL8RZxZ-wz92mzVqVBQ6mkyGM0,187228
200
- pyegeria/collection_manager_omvs.py,sha256=z-Hv88iMJciSV5vaPyMP9u288CxXNAnlbc52WeFlcK4,285617
200
+ pyegeria/collection_manager_omvs.py,sha256=fnUxRLLwuSOAA_PlI2ZOs1B2yMPwMBQ6ghrlY3kTqgo,285622
201
201
  pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
202
202
  pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
203
203
  pyegeria/data_designer_omvs.py,sha256=YTV_yy_nNKQSpVdiFuivsHftcS1PTDOGtA_OxdYC_qQ,207556
204
- pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
205
204
  pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
206
205
  pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
207
206
  pyegeria/egeria_config_client.py,sha256=3TZUeXSl1f7SQ2WWYTbgOu1Cu1YqApilErAgjZLzbWY,1391
@@ -211,10 +210,10 @@ pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1
211
210
  pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
212
211
  pyegeria/glossary_browser_omvs.py,sha256=Jb2Tt2qNjnoWQNBDMdZiuQffH6nC4lKekZNEJCiW5BE,166966
213
212
  pyegeria/glossary_manager_omvs.py,sha256=vXHlBuJxUIAkSI7OKbYcspmcfxxX-L7oe5J0AiEefVI,87991
214
- pyegeria/governance_officer_omvs.py,sha256=14UnC-fS5LUsWzx-RuzUX_ZNVxldqvVSvZFvJDv980I,91580
215
- pyegeria/load_config.py,sha256=ZBBv_wjZFQ4oSExpg5j7VTc6jDco6fpuNhM2MxCawnU,22733
213
+ pyegeria/governance_officer_omvs.py,sha256=JjVJ6myf1yE2ANr0Gv8A2Hg2nEgl1Ip4YbjReoc8nuU,91631
214
+ pyegeria/load_config.py,sha256=-x3K6pmEsm9zg8SpzcmUUTWAbd9dQMmY5OutS2AQv50,24984
216
215
  pyegeria/load_config_orig.py,sha256=lOM37vdIBcYfLQFTLP5bDuNc7vTFGBNYPfqHtWGNvA4,11624
217
- pyegeria/logging_configuration.py,sha256=1nLUgkzlUh87kvuo7H-ekawyGJmNiBo415EuufFbLfE,7713
216
+ pyegeria/logging_configuration.py,sha256=EIfBXhazslnIu_qxgLr8OkAJSJAU27cxoPiTk6vrEho,7734
218
217
  pyegeria/md_processing_helpers.py,sha256=xlQuK5eP_PJqUdy4BScQ97NyBD95jMS3EUg0wK5CsZo,2137
219
218
  pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6Oo,99119
220
219
  pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho_2jFsNE,52603
@@ -232,8 +231,8 @@ pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDT
232
231
  pyegeria/utils.py,sha256=CAh8LItgmGf5UHIYeYAOE4roHg1wuBk3zQ1lxK7lcZA,6805
233
232
  pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
234
233
  pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
235
- pyegeria-5.4.0.14.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
236
- pyegeria-5.4.0.14.dist-info/METADATA,sha256=O04nNIdIU3t_HIORvOu-mHDwSDA832XypzwZsyZk0uU,3031
237
- pyegeria-5.4.0.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
238
- pyegeria-5.4.0.14.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
239
- pyegeria-5.4.0.14.dist-info/RECORD,,
234
+ pyegeria-5.4.0.15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
235
+ pyegeria-5.4.0.15.dist-info/METADATA,sha256=fQgfxSQsxMeTJSUcdh9pkrmHAl_BVzmscGusOos5pb0,3031
236
+ pyegeria-5.4.0.15.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
237
+ pyegeria-5.4.0.15.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
238
+ pyegeria-5.4.0.15.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- [
2
- {
3
- "Display Name": "",
4
- "Qualified Name": " [DataStruct::TBDF-Incoming Weekly Measurement Data](#3e4bc9a1-2661-4d24-a753-b26060c61e34) ",
5
- "Category": "",
6
- "Description": "This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial."
7
- }
8
- ]
@@ -1,19 +0,0 @@
1
- # Puddy Approves
2
- This is a tutorial on how to use a data struct description
3
-
4
- # Data Structure Report - created at 2025-07-29 15:54
5
- Data Structure found from the search string: `All`
6
-
7
- <a id="3e4bc9a1-2661-4d24-a753-b26060c61e34"></a>
8
- # Data Structure Name:
9
-
10
- ## Qualified Name
11
- [DataStruct::TBDF-Incoming Weekly Measurement Data](#3e4bc9a1-2661-4d24-a753-b26060c61e34)
12
-
13
- ## Description
14
- This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial.
15
-
16
- ## GUID
17
- 3e4bc9a1-2661-4d24-a753-b26060c61e34
18
-
19
- [[Data Structure]]
@@ -1,9 +0,0 @@
1
-
2
- | Attribute Name | Input Required? | Generated/Default? | Unique? | Notes | Type
3
- |:----------------| :- | :- | :- | :-|:-------------------------|
4
- | Term Name | Yes | No | No | A display name (informal name). | string |
5
- | Owning Glossary | Yes | No | Yes | This is the qualified name of the glossary that owns this term. | Qualified name reference |
6
- | Categories | No | No | Yes | This is the qualified (unique) name of the category. Multiple categories can be assigned, separated by a `,` or line. | qualified name reference
7
- | Description | No | No | No | A textual description of this term | string |
8
- | Qualified Name | No | Yes | Yes | The qualified name can either be provided by the user or generated. If generated, a pattern is followed. | mfg or supplied q_name |
9
- | GUID | No | Yes | Yes | GUIDs are always generated by Egeria. They are meant for automation, not people. | Generated