diff --git a/jsonschema-validation.xml b/jsonschema-validation.xml
index 1c3aa1c0..e4c2c572 100644
--- a/jsonschema-validation.xml
+++ b/jsonschema-validation.xml
@@ -461,6 +461,10 @@
An object instance is valid against this keyword if its
property set contains all elements in this keyword's array value.
+
+ If this keyword is not present, it may be considered present
+ as an empty array.
+
-
+
This keyword's value MUST be an array. This array MUST have at least one
element.
diff --git a/schema.json b/schema.json
index 3b9019c8..4260825b 100644
--- a/schema.json
+++ b/schema.json
@@ -32,7 +32,8 @@
"stringArray": {
"type": "array",
"items": { "type": "string" },
- "uniqueItems": true
+ "uniqueItems": true,
+ "defaultItems": []
}
},
"type": "object",