We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d96a40 commit 2a3f63fCopy full SHA for 2a3f63f
modules/openapi-generator/src/main/resources/htmlDocs2/js_jsonschemaview.mustache
@@ -133,7 +133,7 @@ var JSONSchemaView = (function () {
133
// Determine if a schema is an array
134
this.isArray = !this.isAny && this.schema && this.schema.type === 'array';
135
136
- this.isObject = this.schema && (this.schema.type === 'object' || this.schema.properties || this.schema.anyOf || this.schema.oneof || this.schema.allOf);
+ this.isObject = this.schema && (this.schema.type === 'object' || this.schema.properties || this.schema.anyOf || this.schema.oneOf || this.schema.allOf);
137
138
// Determine if a schema is a primitive
139
this.isPrimitive = !this.isAny && !this.isArray && !this.isObject;
0 commit comments