We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e784d5d + 40646a6 commit c0833dfCopy full SHA for c0833df
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
@@ -132,6 +132,7 @@
132
]
133
}
134
},
135
+ "propertyNames": { "$ref": "#" },
136
"const": {},
137
"enum": {
138
"type": "array",
0 commit comments