We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a5c7fc commit 40646a6Copy full SHA for 40646a6
jsonschema-validation.xml
@@ -548,6 +548,17 @@
548
</t>
549
</section>
550
551
+ <section title="propertyNames">
552
+ <t>
553
+ The value of "propertyNames" MUST be a valid JSON Schema.
554
+ </t>
555
556
+ If the instance is an object, this keyword validates if every property name in the instance
557
+ validates against the provided schema.
558
+ Note the property name that the schema is testing will always be a string.
559
560
+ </section>
561
+
562
<section title="enum">
563
<t>
564
The value of this keyword MUST be an array. This array SHOULD have at
schema.json
@@ -124,6 +124,7 @@
124
]
125
}
126
},
127
+ "propertyNames": { "$ref": "#" },
128
"const": {},
129
"enum": {
130
"type": "array",
0 commit comments