diff --git a/docling_core/utils/ds_generate_jsonschema.py b/docling_core/utils/ds_generate_jsonschema.py index 8bdf5d6..67acf19 100644 --- a/docling_core/utils/ds_generate_jsonschema.py +++ b/docling_core/utils/ds_generate_jsonschema.py @@ -6,7 +6,7 @@ """Generate the JSON Schema of pydantic models and export them to files. Example: - python docling_core/utils/ds_generate_jsonschema.py legacy.base.TableCell + python docling_core/utils/ds_generate_jsonschema.py doc.base.TableCell """ import argparse @@ -48,7 +48,7 @@ def main() -> None: """Print the JSON Schema of a model.""" argparser = argparse.ArgumentParser() argparser.add_argument( - "class_ref", help="Class reference, e.g., legacy.base.TableCell" + "class_ref", help="Class reference, e.g., doc.base.TableCell" ) args = argparser.parse_args()