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 faa8368 commit 5b13dd5Copy full SHA for 5b13dd5
src/ApiTypeDocument.js
@@ -414,6 +414,12 @@ export class ApiTypeDocument extends PropertyDocumentMixin(LitElement) {
414
}
415
} else if (this._hasType(type, this.ns.w3.shacl.NodeShape)) {
416
isObject = true;
417
+ const andKey = this._getAmfKey(this.ns.w3.shacl.and);
418
+ if (andKey in type) {
419
+ isObject = false;
420
+ isAnd = true;
421
+ this.andTypes = this._computeAndTypes(type[andKey]);
422
+ }
423
} else if (this._hasType(type, this.ns.aml.vocabularies.shapes.AnyShape)) {
424
const andKey = this._getAmfKey(this.ns.w3.shacl.and);
425
if (andKey in type) {
0 commit comments