@cognigy/rest-api-client
Version:
Cognigy REST-Client
24 lines • 837 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.chartExecutableSchema = void 0;
/* Interfaces & Types */
const IChartExecutableNode_1 = require("./IChartExecutableNode");
exports.chartExecutableSchema = {
title: "chartExecutableSchema",
type: "object",
required: ["entrypointIds", "nodes", "startEntrypointId", "flowName"],
additionalProperties: false,
properties: {
entrypointIds: {
type: "array",
items: { type: "string", format: "uuid" },
},
nodes: {
type: "object",
additionalProperties: IChartExecutableNode_1.chartExecutableNodeSchema,
},
startEntrypointId: { type: "string", format: "uuid" },
flowName: { type: "string" },
},
};
//# sourceMappingURL=IChartExecutable.js.map