diff --git a/src/doc/tutorials/Data-Insertion.rst b/src/doc/tutorials/Data-Insertion.rst
index e0ea62e3e7d6bbb8b9e78cb916fee88bd7956209..51678e868c2f1854b87001b1fcae883fac656d39 100644
--- a/src/doc/tutorials/Data-Insertion.rst
+++ b/src/doc/tutorials/Data-Insertion.rst
@@ -4,9 +4,11 @@ Data Insertion
 Data Models
 ~~~~~~~~~~~
 
-Data is stored and structured in CaosDB using a concept of RecordTypes,
-Properties, Records etc. If you do not know what these are, please look
-at the chapter :any:`caosdb-server:Data Model` .
+Data is stored and structured in CaosDB using a concept of
+RecordTypes, Properties, Records etc. If you do not know what these
+are, please look at the chapter `Data Model
+<https://docs.indiscale.com/caosdb-server/specification/Datatype.html>`_
+in the CaosDB server documentation.
 
 In order to insert some actual data, we need to create a data model
 using RecordTypes and Properties (You may skip this if you use a CaosDB
@@ -58,7 +60,10 @@ resolution, but we'll omit this for the sake of brevity for now.
 The parameter ``inheritance=(obligatory|recommended|fix|all|none)`` of
 ``add_parent`` tells the server to assign all properties of the parent
 RecordType with the chosen importance to the child RecordType
-automatically upon insertion.
+automatically upon insertion. See the chapter on `importance
+<https://docs.indiscale.com/caosdb-server/specification/RecordType.html#importance>`_
+in the documentation of the CaosDB server for more information on the
+importance and inheritance of properties.
 
 .. note::