diff --git a/paper-checkbox.html b/paper-checkbox.html
index 9184ded..7d7a963 100644
--- a/paper-checkbox.html
+++ b/paper-checkbox.html
@@ -264,6 +264,17 @@
ariaActiveAttribute: {
type: String,
value: 'aria-checked'
+ },
+
+ /**
+ * @attribute checked
+ * @type Boolean
+ */
+ checked: {
+ type: Boolean,
+ value: function() {
+ this.checked = this.checked | false;
+ }
}
},