diff --git a/openjpa-project/src/doc/manual/jpa_overview_mapping.xml b/openjpa-project/src/doc/manual/jpa_overview_mapping.xml
index ce66feeb7..b59dee2e5 100644
--- a/openjpa-project/src/doc/manual/jpa_overview_mapping.xml
+++ b/openjpa-project/src/doc/manual/jpa_overview_mapping.xml
@@ -99,6 +99,14 @@ JPA uses the defaults defined by the specification. As we present
each mapping throughout this chapter, we also describe the defaults that apply
when the mapping is absent.
+
+
+Mapping metadata is used primarily with schema generation. This metadata should not
+be relied upon for validation prior to communicating with the database.
+For example using the @Column(nullable=false) annotation does not do up front validation
+that the value in the entity is correct.
+
+
Table
diff --git a/openjpa-project/src/doc/manual/jpa_overview_meta.xml b/openjpa-project/src/doc/manual/jpa_overview_meta.xml
index 163bfe1da..2eb60c803 100644
--- a/openjpa-project/src/doc/manual/jpa_overview_meta.xml
+++ b/openjpa-project/src/doc/manual/jpa_overview_meta.xml
@@ -107,6 +107,15 @@ in the Reference Guide for details. There are currently no XML equivalents for
these extension annotations.
+
+
+Persistence metadata may be used to validate the contents of your entities prior to communicating
+with the database. This differs from mapping meta data which is primarily used for schema generation.
+For example if you indicate that a relationship is not optional (e.g. @Basic(optional=false)) OpenJPA
+will validate that the variable in your entity is not null before inserting a row
+in the database.
+
+