Variable selectivePropertyListSchemaConst
selectivePropertyListSchema: {
allOf: readonly [{
properties: {
nodeId: {
type: "string";
};
nodeType: {
type: "string";
};
path: {
type: "string";
};
vcId: {
type: "string";
};
};
required: readonly ["vcId", "nodeId", "path"];
type: "object";
}, {
properties: {
@type: {
const: "SelectiveNodePropertyList";
};
properties: {
items: {
type: "string";
};
type: "array";
};
};
required: readonly ["@type", "properties"];
type: "object";
}];
} = ...
Type declaration
Readonly
allOf: readonly [{
properties: {
nodeId: {
type: "string";
};
nodeType: {
type: "string";
};
path: {
type: "string";
};
vcId: {
type: "string";
};
};
required: readonly ["vcId", "nodeId", "path"];
type: "object";
}, {
properties: {
@type: {
const: "SelectiveNodePropertyList";
};
properties: {
items: {
type: "string";
};
type: "array";
};
};
required: readonly ["@type", "properties"];
type: "object";
}]