From a7cdd3db626b3a986f584b1314e912e0bfc9e918 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 18 Dec 2023 09:35:51 -0500 Subject: [PATCH] remove mention of validation on tree assignment and __init__ from docs --- docs/asdf/features.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/asdf/features.rst b/docs/asdf/features.rst index 8fc576928..255039b55 100644 --- a/docs/asdf/features.rst +++ b/docs/asdf/features.rst @@ -102,9 +102,8 @@ Schema validation Schema validation is used to determine whether an ASDF file is well formed. All ASDF files must conform to the schemas defined by the :ref:`ASDF Standard `. Schema validation can be run using `AsdfFile.validate` -and occurs when reading ASDF files (using `asdf.open`), writing them out -(using `AsdfFile.write_to` or `AsdfFile.update`) and when constructing -a new `AsdfFile` object from a tree/dictionary (as in ``AsdfFile(tree)``). +and occurs when reading ASDF files (using `asdf.open`) and writing them out +(using `AsdfFile.write_to` or `AsdfFile.update`). Schema validation also plays a role when using custom extensions (see :ref:`using_extensions` and :ref:`extending_extensions`). Extensions must provide schemas