UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

21 lines 704 B
/* Interfaces & Types */ import { chartExecutableNodeSchema } from "./IChartExecutableNode"; export const 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: chartExecutableNodeSchema, }, startEntrypointId: { type: "string", format: "uuid" }, flowName: { type: "string" }, }, }; //# sourceMappingURL=IChartExecutable.js.map