We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
anyOf
1 parent 7296338 commit ac42a22Copy full SHA for ac42a22
docs/usage/oneof.md
@@ -2,9 +2,9 @@
2
3
react-jsonschema-form supports custom widgets for oneOf, anyOf, and allOf.
4
5
-- A schema with oneOf is valid if *exactly one* of the subschemas is valid.
6
-- A schema with allOf is valid if *at least one* of the subschemas is valid.
7
-- A schema with allOf is valid if *all* of the subschemas are valid.
+- A schema with `oneOf` is valid if *exactly one* of the subschemas is valid.
+- A schema with `anyOf` is valid if *at least one* of the subschemas is valid.
+- A schema with `allOf` is valid if *all* of the subschemas are valid.
8
9
## oneOf
10
@@ -88,4 +88,4 @@ const schema = {
88
render((
89
<Form schema={schema} />
90
), document.getElementById("app"));
91
-```
+```
0 commit comments