ci: Migrate workflow tests to Playwright (#17370)

This commit is contained in:
shortstacked
2025-07-29 10:38:53 +01:00
committed by GitHub
parent 096e535f1e
commit 4f85f92daf
757 changed files with 138083 additions and 160832 deletions

View File

@@ -15,5 +15,5 @@ packages/**/*.test.*
docker/compose
docker/**/Dockerfile
.vscode
cypress
test-workflows
packages/testing
cypress

View File

@@ -1,4 +1,4 @@
name: Callable Test Workflows
name: Test Workflows - Reusable
on:
workflow_call:
@@ -7,211 +7,50 @@ on:
description: 'The Git ref (branch, tag, or SHA) to checkout and test.'
required: true
type: string
send_webhook_report:
description: 'Set to true to send test results to the webhook.'
required: false
type: boolean
default: false
pr_number:
description: 'The PR number, if applicable (for context in webhook).'
compare_schemas:
description: 'Set to "true" to enable schema comparison during tests.'
required: false
default: 'true'
type: string
default: ''
secrets:
ENCRYPTION_KEY:
description: 'Encryption key for n8n operations.'
required: true
CI_SENTRY_DSN:
description: 'Sentry DSN for CI test runs.'
required: false
WORKFLOW_TESTS_RESULT_DESTINATION:
description: 'Webhook URL to send test results to (if enabled).'
required: false
CURRENTS_RECORD_KEY:
description: 'Currents record key for uploading test results.'
required: true
env:
NODE_OPTIONS: --max-old-space-size=4096
env:
NODE_OPTIONS: --max-old-space-size=3072
jobs:
build_and_test:
name: Install, Build, and Test Workflows
run_workflow_tests:
name: Run Workflow Tests with Snapshots
runs-on: blacksmith-2vcpu-ubuntu-2204
timeout-minutes: 10
env:
N8N_ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ inputs.git_ref }}
- name: Setup Environment and Build Project
uses: n8n-io/n8n/.github/actions/setup-and-build@7e870b8f7f5a39bb8bf82d1f42b6d44febc0082c # v1.100.1
with:
node-version: '22.x'
cache-suffix: 'workflow-test'
- name: Set up Environment
uses: n8n-io/n8n/.github/actions/setup-nodejs-blacksmith@f5fbbbe0a28a886451c886cac6b49192a39b0eea # v1.104.1
- name: Install OS dependencies
run: |
sudo apt update -y
echo 'tzdata tzdata/Areas select Europe' | sudo debconf-set-selections
echo 'tzdata tzdata/Zones/Europe select Paris' | sudo debconf-set-selections
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends graphicsmagick
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
- name: Import credentials
run: ./packages/cli/bin/n8n import:credentials --input=test-workflows/credentials.json
- name: Import workflows
run: ./packages/cli/bin/n8n import:workflow --separate --input=test-workflows/workflows
- name: Copy static assets
run: |
mkdir -p /tmp/testData/pdfs
cp assets/n8n-logo.png /tmp/n8n-logo.png
cp assets/n8n-screenshot.png /tmp/n8n-screenshot.png
cp test-workflows/testData/pdfs/*.pdf /tmp/testData/pdfs/
- name: Run tests
id: tests
run: ./packages/cli/bin/n8n executeBatch --shallow --skipList=test-workflows/skipList.json --githubWorkflow --shortOutput --output=test-results.json --concurrency=16 --compare=test-workflows/snapshots
continue-on-error: true
- name: Set up Workflow Tests
run: pnpm --filter=n8n-playwright test:workflows:setup
env:
SKIP_STATISTICS_EVENTS: 'true'
DB_SQLITE_POOL_SIZE: '4'
N8N_SENTRY_DSN: ${{ secrets.CI_SENTRY_DSN }}
N8N_ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }}
- name: Report test outcome
if: always()
run: |
echo "Test step outcome was: ${{ steps.tests.outcome }}"
if [[ "${{ steps.tests.outcome }}" == "failure" ]]; then
echo "Workflow tests failed but the workflow will continue."
elif [[ "${{ steps.tests.outcome }}" == "success" ]]; then
echo "Workflow tests passed."
else
echo "Workflow tests outcome: ${{ steps.tests.outcome }}"
fi
- name: Prepare and Send Test Results to Webhook
if: inputs.send_webhook_report == true
shell: bash
- name: Run Workflow Tests
run: pnpm --filter=n8n-playwright test:workflows --workers 4
env:
WEBHOOK_URL: ${{ secrets.WORKFLOW_TESTS_RESULT_DESTINATION }}
TEST_RESULTS_FILE: ./test-results.json
GH_REPOSITORY: ${{ github.repository }}
GH_RUN_ID: ${{ github.run_id }}
GH_RUN_ATTEMPT: ${{ github.run_attempt }}
GH_REF_TESTED: ${{ inputs.git_ref }}
GH_EVENT_NAME: ${{ github.event_name }}
GH_PR_NUMBER_INPUT: ${{ inputs.pr_number }}
GH_WORKFLOW_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
GH_ACTOR: ${{ github.actor }}
run: |
echo "Attempting to send test results to webhook..."
echo "Test results file expected at: $TEST_RESULTS_FILE"
CURRENTS_RECORD_KEY: ${{ secrets.CURRENTS_RECORD_KEY }}
if [ ! -f "$TEST_RESULTS_FILE" ]; then
echo "::warning::Test results file ($TEST_RESULTS_FILE) not found. Skipping webhook."
exit 0
fi
if ! command -v jq &> /dev/null; then
echo "jq not found. Installing jq..."
sudo apt-get update -qq && sudo apt-get install -y -qq jq
if ! command -v jq &> /dev/null; then
echo "::error::Failed to install jq. Cannot process JSON."
exit 1
fi
fi
pr_number_to_send="$GH_PR_NUMBER_INPUT"
echo "Preparing JSON payload..."
if [ ! -s "$TEST_RESULTS_FILE" ]; then
echo "::warning::Test results file ($TEST_RESULTS_FILE) is empty. Sending only GitHub context."
enriched_payload=$(jq -n \
--arg repository "$GH_REPOSITORY" \
--arg run_id "$GH_RUN_ID" \
--arg run_attempt "$GH_RUN_ATTEMPT" \
--arg ref_tested "$GH_REF_TESTED" \
--arg event_name "$GH_EVENT_NAME" \
--arg pr_num "$pr_number_to_send" \
--arg workflow_run_url "$GH_WORKFLOW_RUN_URL" \
--arg actor "$GH_ACTOR" \
'{
githubWorkflowContext: {
repository: $repository,
runId: $run_id,
runAttempt: $run_attempt,
gitRefTested: $ref_tested,
triggeringEventName: $event_name,
prNumber: (if $pr_num == "" then null else $pr_num | tonumber? // $pr_num end),
workflowRunUrl: $workflow_run_url,
triggeredBy: $actor
}
}')
else
enriched_payload=$(jq \
--arg repository "$GH_REPOSITORY" \
--arg run_id "$GH_RUN_ID" \
--arg run_attempt "$GH_RUN_ATTEMPT" \
--arg ref_tested "$GH_REF_TESTED" \
--arg event_name "$GH_EVENT_NAME" \
--arg pr_num "$pr_number_to_send" \
--arg workflow_run_url "$GH_WORKFLOW_RUN_URL" \
--arg actor "$GH_ACTOR" \
'. + {
githubWorkflowContext: {
repository: $repository,
runId: $run_id,
runAttempt: $run_attempt,
gitRefTested: $ref_tested,
triggeringEventName: $event_name,
prNumber: (if $pr_num == "" then null else $pr_num | tonumber? // $pr_num end),
workflowRunUrl: $workflow_run_url,
triggeredBy: $actor
}
}' "$TEST_RESULTS_FILE")
fi
jq_exit_code=$?
if [ $jq_exit_code -ne 0 ] || [ -z "$enriched_payload" ]; then
echo "::error::Failed to process JSON with jq (exit code: $jq_exit_code). Input file: $TEST_RESULTS_FILE"
if [ -s "$TEST_RESULTS_FILE" ]; then
echo "Contents of $TEST_RESULTS_FILE that may have caused an error:"
head -c 1000 "$TEST_RESULTS_FILE" # Print first 1000 chars
echo "" # Newline after head
elif [ -f "$TEST_RESULTS_FILE" ]; then
echo "$TEST_RESULTS_FILE exists but is empty."
fi
exit 1
fi
echo "Enriched payload to send (first 500 chars):"
echo "$enriched_payload" | head -c 500
echo ""
echo "Sending data to webhook: $WEBHOOK_URL"
http_response_code=$(curl -s -w "%{http_code}" \
-X POST \
-H "Content-Type: application/json" \
-H "X-GitHub-Event: $GH_EVENT_NAME" \
-H "X-GitHub-Run-Id: $GH_RUN_ID" \
--data "$enriched_payload" \
"$WEBHOOK_URL" \
-o curl_response_body.txt 2>curl_stderr.txt)
curl_stderr_content=$(cat curl_stderr.txt)
if [ -n "$curl_stderr_content" ]; then
echo "::warning::curl stderr: $curl_stderr_content"
fi
echo "Webhook response code: $http_response_code"
echo "Webhook response body:"
cat curl_response_body.txt
if [[ "$http_response_code" -ge 200 && "$http_response_code" -lt 300 ]]; then
echo "Successfully sent data to webhook."
else
echo "::error::Webhook call failed with status code $http_response_code."
fi
- name: Run Workflow Schema Tests
if: ${{ inputs.compare_schemas == 'true' }}
run: pnpm --filter=n8n-playwright test:workflows:schema
env:
CURRENTS_RECORD_KEY: ${{ secrets.CURRENTS_RECORD_KEY }}

View File

@@ -11,16 +11,10 @@ on:
type: string
default: 'master'
permissions:
contents: read
jobs:
run_workflow_tests:
name: Run Workflow Tests
uses: ./.github/workflows/test-workflows-callable.yml
with:
git_ref: ${{ github.event_name == 'schedule' && 'master' || github.event.inputs.git_ref_to_test }}
send_webhook_report: false
pr_number: ''
secrets: inherit
secrets: inherit

View File

@@ -22,6 +22,4 @@ jobs:
uses: ./.github/workflows/test-workflows-callable.yml
with:
git_ref: ${{ github.event.pull_request.head.sha }}
send_webhook_report: true
pr_number: ${{ github.event.pull_request.number }}
secrets: inherit
secrets: inherit

View File

@@ -107,6 +107,4 @@ jobs:
uses: ./.github/workflows/test-workflows-callable.yml
with:
git_ref: ${{ needs.handle_comment_command.outputs.git_ref }}
send_webhook_report: true
pr_number: ${{ needs.handle_comment_command.outputs.pr_number }}
secrets: inherit

View File

@@ -22,7 +22,9 @@ export class CommandRegistry {
private readonly moduleRegistry: ModuleRegistry,
private readonly logger: Logger,
) {
this.argv = argvParser(process.argv.slice(2));
// yargs-parser was resolving number like strings to numbers, which is not what we want
// eslint-disable-next-line id-denylist
this.argv = argvParser(process.argv.slice(2), { string: ['id'] });
this.commandName = process.argv[2] ?? 'start';
}

View File

@@ -1,16 +1,14 @@
import { defineConfig } from 'eslint/config';
import { baseConfig } from '@n8n/eslint-config/base';
import playwrightPlugin from 'eslint-plugin-playwright';
export default defineConfig(
{
ignores: ['**/playwright-report/**'],
},
baseConfig,
export default [
...baseConfig,
playwrightPlugin.configs['flat/recommended'],
{
ignores: ['playwright-report/**/*'],
},
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
@@ -33,4 +31,4 @@ export default defineConfig(
],
},
},
);
];

View File

@@ -21,7 +21,7 @@ async function globalSetup() {
const n8nBaseUrl = process.env.N8N_BASE_URL;
if (!n8nBaseUrl) {
console.log('⚠️ N8N_BASE_URL environment variable is not set, skipping database reset');
if (process.env.CI) {
if (process.env.CI && process.env.N8N_DOCKER_IMAGE) {
await pullImagesForCI();
}
return;

View File

@@ -10,6 +10,10 @@
"test:queue": "playwright test --project=mode:queue*",
"test:multi-main": "playwright test --project=mode:multi-main*",
"test:clean": "docker rm -f $(docker ps -aq --filter 'name=n8n-*') 2>/dev/null || true && docker network prune -f",
"test:workflows:setup": "tsx test-workflows/setup-workflow-tests.ts",
"test:workflows": "playwright test --project=mode:workflows",
"test:workflows:schema": "SCHEMA=true playwright test --project=mode:workflows",
"test:workflows:update": "playwright test --project=mode:workflows --update-snapshots",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"install-browsers:ci": "PLAYWRIGHT_BROWSERS_PATH=./ms-playwright-cache playwright install chromium --with-deps --no-shell",
@@ -20,6 +24,8 @@
"@playwright/test": "1.53.0",
"@types/lodash": "catalog:",
"eslint-plugin-playwright": "2.2.0",
"generate-schema": "2.6.0",
"json-diff": "1.0.6",
"n8n-containers": "workspace:*"
}
}

View File

View File

@@ -5,6 +5,21 @@ import { defineConfig } from '@playwright/test';
import currentsConfig from './currents.config';
// Type definitions for container configurations
interface ContainerConfig {
postgres?: boolean;
queueMode?: {
mains: number;
workers: number;
};
env?: Record<string, string>;
}
interface ContainerConfigEntry {
name: string;
config: ContainerConfig;
}
/*
* Mode-based Test Configuration
*
@@ -35,17 +50,26 @@ import currentsConfig from './currents.config';
*/
// Container configurations
const containerConfigs = [
const containerConfigs: ContainerConfigEntry[] = [
{ name: 'mode:standard', config: {} },
{ name: 'mode:postgres', config: { postgres: true } },
{ name: 'mode:queue', config: { queueMode: { mains: 1, workers: 1 } } },
{ name: 'mode:multi-main', config: { queueMode: { mains: 2, workers: 1 } } },
];
// Workflow tests are run in a separate project, since they are not run in parallel with the other tests
const workflowProject: Project = {
name: 'mode:workflows',
testDir: './test-workflows',
testMatch: 'workflow-tests.spec.ts',
retries: process.env.CI ? 2 : 0,
fullyParallel: true,
};
// Parallel tests can run fully parallel on a worker
// Sequential tests can run on a single worker, since the need a DB reset
// Chaos tests can run on a single worker, since they can destroy containers etc, these need to be isolate from DB tests since they are destructive
function createProjectTrio(name: string, containerConfig: any): Project[] {
function createProjectTrio(name: string, containerConfig: ContainerConfig): Project[] {
const modeTag = `@${name}`;
// Parse custom env vars from command line
@@ -72,7 +96,7 @@ function createProjectTrio(name: string, containerConfig: any): Project[] {
),
testIgnore: '*examples*',
fullyParallel: true,
use: { containerConfig: mergedConfig } as any,
use: { containerConfig: mergedConfig },
},
{
name: `${name} - Sequential`,
@@ -81,7 +105,7 @@ function createProjectTrio(name: string, containerConfig: any): Project[] {
testIgnore: '*examples*',
workers: 1,
...(shouldAddDependencies && { dependencies: [`${name} - Parallel`] }),
use: { containerConfig: mergedConfig } as any,
use: { containerConfig: mergedConfig },
},
{
name: `${name} - Chaos`,
@@ -89,7 +113,7 @@ function createProjectTrio(name: string, containerConfig: any): Project[] {
testIgnore: '*examples*',
fullyParallel: false,
workers: 1,
use: { containerConfig: mergedConfig } as any,
use: { containerConfig: mergedConfig },
timeout: 120000,
},
];
@@ -131,5 +155,8 @@ export default defineConfig({
? containerConfigs
.filter(({ name }) => name === 'mode:standard')
.flatMap(({ name, config }) => createProjectTrio(name, config))
: containerConfigs.flatMap(({ name, config }) => createProjectTrio(name, config)),
.concat([workflowProject])
: containerConfigs
.flatMap(({ name, config }) => createProjectTrio(name, config))
.concat([workflowProject]),
});

View File

@@ -12,7 +12,7 @@ import { TestError } from '../Types';
export interface LoginResponseData {
id: string;
[key: string]: any;
[key: string]: unknown;
}
export type UserRole = 'owner' | 'admin' | 'member';
@@ -182,15 +182,15 @@ export class ApiHelpers {
throw new TestError(errorText);
}
let responseData: any;
let responseData: unknown;
try {
responseData = await response.json();
} catch (error) {
} catch (error: unknown) {
const errorText = await response.text();
throw new TestError(errorText);
}
const loginData: LoginResponseData = responseData.data;
const loginData: LoginResponseData = (responseData as { data: LoginResponseData }).data;
if (!loginData?.id) {
throw new TestError('Login did not return expected user data (missing user ID)');

View File

@@ -0,0 +1,286 @@
# Workflow Testing Framework
## Introduction
This framework tests n8n's nodes and workflows to:
***Ensure Correctness:** Verify that nodes operate correctly
* 🔄 **Maintain Compatibility:** Detect breaking changes in external APIs
* 🔒 **Guarantee Stability:** Prevent regressions in new releases
## Our Move to Playwright
This framework is an evolution of a previous system. We moved to **Playwright** as our test runner to leverage its powerful, industry-standard features, resulting in:
* **Simpler Commands:** A single command to run tests, with simple flags for control
* **Better Reporting:** Rich, interactive HTML reports with visual diffs
* **Built-in Features:** Automatic retries, parallel execution, and CI integration out of the box
* **Schema Validation:** Detect structural changes that indicate API breaking changes
---
## 🚀 Quick Start
### Prerequisites
1. **Set encryption key:** The test credentials are encrypted. Add to `~/.n8n/config`:
```json
{
"N8N_ENCRYPTION_KEY": "YOUR_KEY_FROM_BITWARDEN"
}
```
Find the key in Bitwarden under "Testing Framework encryption key"
2. **Fresh database (optional):** For a clean start, remove `~/.n8n/database.sqlite` if it exists
3. **Setup Environment**: ```pnpm test:workflows:setup```
### Basic Commands
```bash
# 1. Basic execution test (just verify workflows run without errors)
pnpm test:workflows
# 2. Run with schema validation
SCHEMA=true pnpm test:workflows
# 3. Update schema snapshots (when output structure changes)
pnpm test:workflows --update-snapshots
# 4. Run specific workflows (using grep)
pnpm test:workflows -g "email"
```
### View Test Results
After any test run, open the interactive HTML report:
```bash
npx playwright show-report
```
The report shows:
* ✅ Passed/❌ Failed tests with execution times
* 📸 Schema diffs showing structural changes
* ⚠️ Warnings and annotations
* 📊 Test trends over time (in CI)
---
## ⚙️ How It Works
### Test Modes
1. **Basic Run** (default): Executes workflows and checks for errors
2. **Schema Mode** (`SCHEMA=true`): Validates workflow output structure against saved schemas
### Schema Validation (Recommended)
Schema validation captures the **structure** of workflow outputs, not the values. This is ideal for:
- Detecting API breaking changes (field renames, type changes)
- Avoiding false positives from legitimate data variations
- Maintaining stable tests across different environments
When enabled, the framework:
1. Generates a JSON schema from the workflow output
2. Compares it against the saved schema snapshot
3. Reports any structural differences
**Example of what schema validation catches:**
```javascript
// Original API response
{ user: { name: "John", email: "john@example.com" } }
// Changed API response (field renamed)
{ user: { fullName: "John", email: "john@example.com" } }
// ❌ Schema validation catches this immediately!
```
### Why Schema Over Value Comparison?
Traditional value comparison often leads to:
- 🔴 False positives from timestamps, IDs, and other dynamic data
- 🔴 Constant snapshot updates for legitimate data changes
- 🔴 Missing actual breaking changes when values happen to match
Schema validation focuses on what matters:
- ✅ Data structure and types
- ✅ Field presence and naming
- ✅ API contract stability
---
## 📋 Configuration
### workflowConfig.json
Controls workflow execution and testing behavior:
```json
[
{
"workflowId": "123",
"status": "ACTIVE",
"enableSchemaValidation": true
},
{
"workflowId": "456",
"status": "SKIPPED",
"skipReason": "Depends on external API that is currently down",
"ticketReference": "JIRA-123"
}
]
```
**Configuration Fields:**
- `workflowId`: The ID of the workflow (must match the filename)
- `status`: Either "ACTIVE" or "SKIPPED"
- `enableSchemaValidation`: (optional) Whether to use schema validation (default: true)
- `skipReason`: (optional) Why the workflow is skipped
- `ticketReference`: (optional) Related ticket for tracking
---
## 🎯 Workflow for New Tests
### Step-by-Step Process
```bash
# 1. Create/modify workflow in n8n UI
# 2. Export the workflow
./packages/cli/bin/n8n export:workflow --separate --output=test-workflows/workflows --pretty --id=XXX
# 3. Add configuration entry to workflowConfig.json
# Edit workflowConfig.json and add:
{
"workflowId": "XXX",
"status": "ACTIVE",
"enableSchemaValidation": true
}
# 4. Test basic execution
pnpm test:workflows -g "XXX"
# 5. Create initial schema snapshot
SCHEMA=true pnpm test:workflows --update-snapshots -g "XXX"
# 6. Verify schema validation works
SCHEMA=true pnpm test:workflows -g "XXX"
# 7. Commit all changes
git add test-workflows/workflows/XXX.json
git add __snapshots__/workflow-XXX-schema.snap
git add workflowConfig.json
```
---
## 💡 Common Scenarios
### "I just want to check if workflows run"
```bash
pnpm test:workflows
```
### "I want to ensure API compatibility"
```bash
SCHEMA=true pnpm test:workflows
```
### "An API legitimately changed its structure"
```bash
# Update the schema snapshot
pnpm test:workflows --update-snapshots -g "workflow-name"
# Note: --update-snapshots automatically enables schema mode
```
### "I want to skip a workflow temporarily"
Update `workflowConfig.json`:
```json
{
"workflowId": "123",
"status": "SKIPPED",
"skipReason": "API endpoint is under maintenance",
"ticketReference": "SUPPORT-456"
}
```
---
## 🔧 Creating Test Workflows
### Best Practices
1. **One node per workflow:** Test a single node with multiple operations/resources
2. **Use test files:** Reference the files automatically copied to `/tmp` by setup
3. **Limit results:** Set "Limit" to 1 for "Get All" operations when possible
4. **Handle throttling:** Add wait/sleep nodes for rate-limited APIs
5. **Focus on structure:** Schema validation handles dynamic values automatically
### Available Test Files
The setup automatically copies these to `/tmp`:
- `n8n-logo.png`
- `n8n-screenshot.png`
- PDF test files:
- `04-valid.pdf`
- `05-versions-space.pdf`
### Exporting Credentials
When credentials expire or need updating:
```bash
# Update the credential in n8n UI
# Export all credentials (encrypted)
./packages/cli/bin/n8n export:credentials --output=test-workflows/credentials.json --all --pretty
```
⚠️ **Never use `--decrypted` when exporting credentials!**
---
## 🐛 Troubleshooting
### Tests fail with "No valid JSON output found"
The workflow likely has console.log statements. Remove them or ensure they don't interfere with JSON output.
### Schema differences for legitimate changes
When an API or node output structure legitimately changes:
```bash
pnpm test:workflows --update-snapshots -g "affected-workflow"
```
### Setup didn't run / Need to re-run setup
```bash
pnpm test:workflows:setup
```
### Workflow not found
Ensure the workflow was exported to the `test-workflows/workflows` directory and the workflowId in `workflowConfig.json` matches the filename.
---
## 🔄 Setup Process
```bash
pnpm test:workflows:setup
```
---
## 📊 Understanding Test Output
### Test Status
- **✅ PASSED:** Workflow executed successfully (and schema matched if enabled)
- **❌ FAILED:** Workflow execution failed or schema didn't match
- **⏭️ SKIPPED:** Workflow marked as SKIPPED in configuration
### Schema Comparison
When schema validation is enabled, the test compares:
- Data types (string, number, boolean, array, object)
- Object properties and their types
- Array element types
- Overall structure depth and shape
Schema validation ignores actual values, focusing purely on structure, making tests more stable and meaningful.

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,114 @@
import { execFile } from 'child_process';
import { promises as fsPromises } from 'fs';
import path from 'path';
import { promisify } from 'util';
// Only run the file once, so we don't run it multiple times
const execFileAsync = promisify(execFile);
const CREDENTIALS_FILE_NAME = 'credentials.json';
const WORKFLOWS_DIR_NAME = 'workflows';
const ASSETS_SOURCE_PATH = path.join(__dirname, '../../../../assets');
const PDF_SOURCE_DIR = path.join(__dirname, 'testData', 'pdfs');
const BASE_TMP_DIR = '/tmp';
const TMP_PDF_DEST_DIR = path.join(BASE_TMP_DIR, 'testData', 'pdfs');
/**
* Executes an n8n CLI command, providing robust error handling and logging.
* @param command The n8n CLI subcommand (e.g., 'import:credentials').
* @param args Arguments specific to the subcommand.
* @param options Options for `child_process.execFile`. `cwd` is typically required.
* @returns A promise that resolves with the stdout of the command, or rejects on error.
*/
async function runN8nCliCommand(command: string, args: string[], options: { cwd: string }) {
const n8nExecutablePath = '../../../cli/bin/n8n';
console.log(`Executing n8n command: n8n ${command} ${args.join(' ')}`);
await execFileAsync(n8nExecutablePath, [command, ...args], options);
}
/**
* Recursively copies files and directories from a source path to a destination path.
* If the source is a directory, it creates the destination directory and copies its contents.
* If the source is a file, it copies the file.
* Handles cases where the source path does not exist gracefully.
* @param sourcePath The path to the source file or directory.
* @param destinationPath The path where the file(s) or directory should be copied.
*/
async function copyAsset(sourcePath: string, destinationPath: string): Promise<void> {
try {
const stats = await fsPromises.stat(sourcePath);
if (stats.isDirectory()) {
await fsPromises.mkdir(destinationPath, { recursive: true });
const items = await fsPromises.readdir(sourcePath);
await Promise.all(
items.map((item) =>
copyAsset(path.join(sourcePath, item), path.join(destinationPath, item)),
),
);
console.log(`📁 Directory copied: ${sourcePath} to ${destinationPath}`);
} else if (stats.isFile()) {
await fsPromises.copyFile(sourcePath, destinationPath);
console.log(`📄 File copied: ${sourcePath} to ${destinationPath}`);
}
} catch (error: unknown) {
if (error instanceof Error && 'code' in error && error.code === 'ENOENT') {
console.warn(`⚠️ Warning: Source asset not found at ${sourcePath}. Skipping copy.`);
} else {
console.error(
`❌ Error copying asset from ${sourcePath} to ${destinationPath}: ${error instanceof Error ? error.message : String(error)}`,
);
throw error;
}
}
}
/**
* Sets up the n8n test environment by importing credentials and workflows,
* and copying necessary test data/assets.
* This function is designed to be used as a global setup hook in testing frameworks.
*/
export async function globalWorkflowSetup(): Promise<void> {
console.log('\n--- 🚀 Starting n8n workflow test environment setup ---\n');
try {
console.log('📥 Importing test credentials...');
await runN8nCliCommand('import:credentials', ['--input', CREDENTIALS_FILE_NAME], {
cwd: __dirname,
});
console.log('📥 Importing test workflows...');
await runN8nCliCommand('import:workflow', ['--separate', '--input', WORKFLOWS_DIR_NAME], {
cwd: __dirname,
});
console.log('📁 Copying test assets...');
await fsPromises.mkdir(BASE_TMP_DIR, { recursive: true });
await copyAsset(
path.join(ASSETS_SOURCE_PATH, 'n8n-logo.png'),
path.join(BASE_TMP_DIR, 'n8n-logo.png'),
);
await copyAsset(
path.join(ASSETS_SOURCE_PATH, 'n8n-screenshot.png'),
path.join(BASE_TMP_DIR, 'n8n-screenshot.png'),
);
await copyAsset(PDF_SOURCE_DIR, TMP_PDF_DEST_DIR);
console.log('\n--- ✅ n8n workflow test environment setup complete! ---\n');
} catch (error: unknown) {
console.error('\n--- ❌ n8n workflow test environment setup failed! ---\n', error);
process.exit(1);
}
}
if (require.main === module) {
globalWorkflowSetup().catch((error) => {
console.error('Setup failed:', error);
process.exit(1);
});
}

View File

@@ -0,0 +1,142 @@
/* eslint-disable playwright/no-conditional-expect */
/* eslint-disable playwright/no-conditional-in-test */
import { test, expect } from '@playwright/test';
import { execSync } from 'child_process';
import * as fs from 'fs';
// @ts-expect-error - 'generate-schema' is not typed, so we ignore the TS error.
import GenerateSchema from 'generate-schema';
import * as path from 'path';
// --- Configuration ---
const IGNORE_SKIPLIST = process.env.IGNORE_SKIPLIST === 'true';
const SCHEMA_MODE = process.env.SCHEMA === 'true';
const WORKFLOWS_DIR = path.join(__dirname, '../test-workflows/workflows');
const WORKFLOW_CONFIG_PATH = path.join(__dirname, 'workflowConfig.json');
interface Workflow {
id: string;
name: string;
status: 'SKIPPED' | 'ACTIVE';
enableSchemaValidation: boolean;
}
interface WorkflowConfigItem {
workflowId: string;
status: 'SKIPPED' | 'ACTIVE';
enableSchemaValidation?: boolean;
}
interface ExecutionResult {
success: boolean;
data: unknown;
error?: string;
}
// --- Helper Functions ---
/**
* Loads and merges workflow files with their configurations from `workflowConfig.json`.
* @returns An array of workflow objects ready for testing.
*/
function loadWorkflows(): Workflow[] {
if (!fs.existsSync(WORKFLOWS_DIR)) return [];
const configs = new Map<string, WorkflowConfigItem>();
if (fs.existsSync(WORKFLOW_CONFIG_PATH)) {
const rawConfigs: WorkflowConfigItem[] = JSON.parse(
fs.readFileSync(WORKFLOW_CONFIG_PATH, 'utf-8'),
);
rawConfigs.forEach((c) => configs.set(c.workflowId, c));
}
return fs
.readdirSync(WORKFLOWS_DIR)
.filter((file) => file.endsWith('.json'))
.map((file) => {
const id = path.basename(file, '.json');
const content = JSON.parse(fs.readFileSync(path.join(WORKFLOWS_DIR, file), 'utf-8'));
const config = configs.get(id);
return {
id,
name: content.name ?? `Workflow ${id}`,
status: config?.status ?? 'ACTIVE',
enableSchemaValidation: config?.enableSchemaValidation ?? true,
};
});
}
/**
* Executes a workflow via the CLI and captures the structured output or error.
* @param workflowId - The ID of the workflow to execute.
* @returns An object containing the execution status, data, and any errors.
*/
function executeWorkflow(workflowId: string): ExecutionResult {
const command = `../../cli/bin/n8n execute --id="${workflowId}"`;
const options = {
encoding: 'utf-8' as const,
maxBuffer: 10 * 1024 * 1024,
env: { ...process.env, SKIP_STATISTICS_EVENTS: 'true' },
};
const divider = '====================================';
try {
const stdout = execSync(command, options);
const dividerIndex = stdout.indexOf(divider);
if (dividerIndex === -1) {
// Handles cases where execution finishes but may not produce structured JSON output.
return { success: stdout.includes('Execution was successful'), data: null };
}
const jsonData = stdout.substring(dividerIndex + divider.length);
return { success: true, data: JSON.parse(jsonData) };
} catch (error: unknown) {
let stdout = '';
if (error && typeof error === 'object' && 'stdout' in error) {
stdout = (error as { stdout?: string }).stdout ?? '';
}
const dividerIndex = stdout.indexOf(divider);
// Try to parse specific error details from stdout if the divider is present.
if (dividerIndex !== -1) {
const errorDetails = stdout.substring(dividerIndex + divider.length).trim();
return { success: false, data: null, error: errorDetails };
}
// Fallback to the generic error message from the caught exception.
return { success: false, data: null, error: stdout };
}
}
// --- Test Suite ---
test.describe('Workflow Tests', () => {
const workflows = loadWorkflows();
for (const workflow of workflows) {
test(`${workflow.name} (ID: ${workflow.id})`, ({}, testInfo) => {
// Conditionally skip the test based on its status in the config file.
// This can be overridden by setting the IGNORE_SKIPLIST environment variable.
// eslint-disable-next-line playwright/no-skipped-test
test.skip(
workflow.status === 'SKIPPED' && !IGNORE_SKIPLIST,
'Workflow is marked as SKIPPED in workflowConfig.json',
);
// Standardize snapshot names to be consistent across different operating systems.
testInfo.snapshotSuffix = '';
const result = executeWorkflow(workflow.id);
expect(result.success, `Workflow execution failed: ${result.error}`).toBe(true);
// Optionally, validate the output against a JSON schema snapshot if enabled.
if (SCHEMA_MODE && result.data && workflow.enableSchemaValidation) {
const schema = GenerateSchema.json(result.data);
expect(JSON.stringify(schema, null, 2)).toMatchSnapshot(
`workflow-${workflow.id}-schema.snap`,
);
}
});
}
});

View File

@@ -0,0 +1,245 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Rename Keys": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,337 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Execute Command": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Read Binary File": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Execute Command1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,291 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Write Binary File": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Read Binary File": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,521 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"CustomerIo4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,705 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailchimp11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"GraphQL": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,337 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Spreadsheet File": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Spreadsheet File1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,938 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com15": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com16": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Merge": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
},
"required": [
"previousNode"
]
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Monday.com3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mandrill": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mandrill1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Twilio": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,567 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Shopify4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mailgun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,245 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"APITemplate.io": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"APITemplate.io1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"APITemplate.io2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,705 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Raindrop5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"DeepL": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,935 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Read Binary File": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 0.8 seconds4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Dropbox11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,337 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PostHog": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PostHog1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PostHog2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PostHog3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PostHog4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,245 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Comprehend": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Comprehend1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Comprehend2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Lambda": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Lambda1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Rekognition": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,797 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Function": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS S31": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS SNS": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenWeatherMap": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenWeatherMap1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vonage": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,199 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS SQS1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS SQS": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,797 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Intercom4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenThesaurus": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,291 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PayPal": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PayPal1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PayPal2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"PayPal3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,521 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set id & email": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Vero6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,337 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Webflow": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Webflow1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Webflow2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Webflow3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Webflow4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,981 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io22": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io18": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io16": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io19": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io17": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io15": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io20": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io21": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sentry.io23": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,429 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Kitemaker6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,337 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Beeminder": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Beeminder1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Beeminder2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Beeminder4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Beeminder3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,475 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Paddle7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Pushover": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,383 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set job name": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Transcribe": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Transcribe1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Transcribe2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Sleep 30 seconds": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Transcribe3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,843 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Delete existing dir": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Add file to dir": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Git13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,245 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Handle JSON data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Handle Binary data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Handle Static data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,163 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Execute Workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"VirusTotal HTTP Request": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,294 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Invalid Host header": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Internal SSL Error?": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Success": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeOutput": {
"type": "number"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Cross Domain Redirect": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,251 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Mistral Cloud Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Mistral Cloud Chat": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"Mistral Cloud Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,496 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Article": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Summary - Simple - Map": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Evaluate to Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,567 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Article": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Convert to File": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Summary - Simple - Map - Binary": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Evaluate to Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"OpenAI Chat Model5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,251 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Azure OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Azure OpenAI Chat": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"Azure OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,251 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Open AI Instruct": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,398 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Calculator3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"AI Agent3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Calculator3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,521 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Article": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Summary - Simple - Refine": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Evaluate to Baseline4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"OpenAI Chat Model9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,419 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Calculator": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"AI Agent": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Edit Fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Calculator": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,348 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Structured Output Parser1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Open AI Chat - Output Parsing": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Structured Output Parser1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,419 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Calculator2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"AI Agent2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Edit Fields2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Calculator2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,538 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Get Weather": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subExecution": {
"type": "object",
"properties": {
"executionId": {
"type": "string"
},
"workflowId": {
"type": "string"
}
}
},
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Get Events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subExecution": {
"type": "object",
"properties": {
"executionId": {
"type": "string"
},
"workflowId": {
"type": "string"
}
}
},
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"AI Agent4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Edit Fields6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Get Weather": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Get Events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,251 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AWS Bedrock Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"AWS Bedrock Chat": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"AWS Bedrock Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,251 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Open AI Chat": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,593 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Article": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Token Splitter": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_textSplitter": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_textSplitter": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Summary - Advanced": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Evaluate to Baseline3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"Token Splitter": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"OpenAI Chat Model8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,496 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set Article": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Summary - Simple - Stuff": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Evaluate to Baseline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,736 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Code": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"location": {
"type": "string"
}
}
}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Default Data Loader": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_document": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_document": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Token Splitter": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_textSplitter": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_textSplitter": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Embeddings OpenAI": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_embedding": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_embedding": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Pinecone Vector Store": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Check Vector Store Populated": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Wait": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Embeddings OpenAI10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_embedding": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_embedding": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Pinecone Vector Store1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"Token Splitter": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Default Data Loader": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Embeddings OpenAI": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Embeddings OpenAI10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,373 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Calculator1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"AI Agent1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Calculator1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,272 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking Test workflow": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"timestamp": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"context": {
"type": "object",
"properties": {}
}
}
}
}
}
},
"Basic LLM Chain": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,706 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking Test workflow": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Vector Store Tool": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_tool": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"timestamp": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"context": {
"type": "object",
"properties": {}
}
}
}
}
}
},
"In-Memory Vector Store": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_vectorStore": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_vectorStore": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"Embeddings OpenAI": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_embedding": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_embedding": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"timestamp": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"context": {
"type": "object",
"properties": {}
}
}
}
}
}
},
"AI Agent": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Embeddings OpenAI": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"In-Memory Vector Store": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Vector Store Tool": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,688 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Simple Memory": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_memory": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_memory": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Anthropic Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Auto-fixing Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Structured Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"AI Agent": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AI Agent1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"Simple Memory": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Anthropic Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Structured Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Auto-fixing Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,810 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"When clicking \"Test workflow\"": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Simple Memory": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_memory": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_memory": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Auto-fixing Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"Structured Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
},
"required": [
"previousNode",
"previousNodeRun"
]
}
},
"data": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_outputParser": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
}
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"timestamp": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"context": {
"type": "object",
"properties": {
"outputParserFailReason": {
"type": "string"
}
}
}
}
}
},
"required": [
"startTime",
"executionTime",
"executionIndex",
"executionStatus",
"source",
"data",
"inputOverride",
"metadata"
]
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
},
"previousNodeRun": {
"type": "number"
}
}
}
},
"data": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"inputOverride": {
"type": "object",
"properties": {
"ai_languageModel": {
"type": "array",
"items": {
"type": "array"
}
}
}
},
"metadata": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
}
}
},
"AI Agent": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"AI Agent1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {
"Simple Memory": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"OpenAI Chat Model": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"Structured Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
},
"OpenAI Chat Model1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
}
}
}
}
}
},
"Auto-fixing Output Parser": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subRun": {
"type": "array",
"items": {
"type": "object",
"properties": {
"node": {
"type": "string"
},
"runIndex": {
"type": "number"
}
},
"required": [
"node",
"runIndex"
]
}
}
},
"required": [
"subRun"
]
}
}
}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,291 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Drift ": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Drift 1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Drift 2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Drift 3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,429 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Strava2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,659 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack18": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack24": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack19": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack25": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack20": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack15": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack16": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Slack17": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,705 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Gitlab12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,613 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Google Drive9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,935 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana15": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana16": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana17": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Asana7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,245 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Bitly": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Bitly1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Bitly2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,245 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Hacker News": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Hacker News1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Hacker News2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,337 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Brandfetch": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Brandfetch1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Brandfetch2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Brandfetch4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Brandfetch3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,935 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"startData": {
"type": "object",
"properties": {}
},
"resultData": {
"type": "object",
"properties": {
"runData": {
"type": "object",
"properties": {
"Start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda11": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda4": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda2": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda5": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda3": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda13": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda6": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda14": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda7": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Set": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda15": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda8": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda16": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda10": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
},
"Coda9": {
"type": "array",
"items": {
"type": "object",
"properties": {
"startTime": {
"type": "number"
},
"executionIndex": {
"type": "number"
},
"source": {
"type": "array",
"items": {
"type": "object",
"properties": {
"previousNode": {
"type": "string"
}
}
}
},
"hints": {
"type": "array",
"items": {}
},
"executionTime": {
"type": "number"
},
"executionStatus": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"main": {
"type": "array",
"items": {
"type": "array"
}
}
}
}
}
}
}
}
},
"lastNodeExecuted": {
"type": "string"
}
}
},
"executionData": {
"type": "object",
"properties": {
"contextData": {
"type": "object",
"properties": {}
},
"nodeExecutionStack": {
"type": "array",
"items": {}
},
"metadata": {
"type": "object",
"properties": {}
},
"waitingExecution": {
"type": "object",
"properties": {}
},
"waitingExecutionSource": {
"type": "object",
"properties": {}
}
}
}
}
},
"mode": {
"type": "string"
},
"startedAt": {
"type": "string"
},
"stoppedAt": {
"type": "string"
},
"status": {
"type": "string"
},
"finished": {
"type": "boolean"
}
}
}

Some files were not shown because too many files have changed in this diff Show More