{ isRef && schema.get("$$ref") && { schema.get("$$ref") } }
{ title }
@@ -95,6 +99,48 @@ export default class ObjectModel extends Component {
}
+ {
+ !anyOf ? null
+ :
+ | { "anyOf ->" } |
+
+ {anyOf.map((schema, k) => {
+ return
+ })}
+ |
+
+ }
+ {
+ !oneOf ? null
+ :
+ | { "oneOf ->" } |
+
+ {oneOf.map((schema, k) => {
+ return
+ })}
+ |
+
+ }
+ {
+ !not ? null
+ :
+ | { "not ->" } |
+
+ {not.map((schema, k) => {
+ return
+ })}
+ |
+
+ }
}
@@ -102,4 +148,4 @@ export default class ObjectModel extends Component {
}
-}
\ No newline at end of file
+}