Variable selectiveSharedSchemaConst

selectiveSharedSchema: {
    properties: {
        nodeId: {
            type: "string";
        };
        nodeType: {
            type: "string";
        };
        path: {
            type: "string";
        };
        vcId: {
            type: "string";
        };
    };
    required: readonly ["vcId", "nodeId", "path"];
    type: "object";
} = ...

Type declaration

  • Readonly properties: {
        nodeId: {
            type: "string";
        };
        nodeType: {
            type: "string";
        };
        path: {
            type: "string";
        };
        vcId: {
            type: "string";
        };
    }
    • Readonly nodeId: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly nodeType: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly path: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly vcId: {
          type: "string";
      }
      • Readonly type: "string"
  • Readonly required: readonly ["vcId", "nodeId", "path"]
  • Readonly type: "object"