diff --git a/core-input.html b/core-input.html
index 95edde0..37d02aa 100644
--- a/core-input.html
+++ b/core-input.html
@@ -28,7 +28,7 @@
* ----------
*
* core-input can optionally validate the value using the HTML5 constraints API,
- * similar to native inputs. There are two methods to enable input validation:
+ * similar to native inputs. There are two methods to configure input validation:
*
* 1. By setting the `type` attribute. For example, setting it to `email` will
* check the value is a valid email, and setting it to `number` will check
@@ -263,7 +263,16 @@
* @type boolean
* @default false
*/
- invalid: false
+ invalid: false,
+
+ /**
+ * If this property is true, validate the input as they are entered.
+ *
+ * @attribute validateImmediately
+ * @type boolean
+ * @default true
+ */
+ validateImmediately: true
},
ready: function() {