diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-07-24 01:00:42 -0700 |
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-07-24 01:00:42 -0700 |
| commit | 85ce06beb9b2d587b0b572117a98318d226bed61 (patch) | |
| tree | 76fc6232b5219d0bd61b547b26624641a99e7b9b /schema/json | |
| parent | 699a74250fd4cf91af930ff63077aeb81f74856f (diff) | |
| parent | 885f88af1d7b35e03b1de4df3e74a60da1a777ed (diff) | |
| download | sncontinue-85ce06beb9b2d587b0b572117a98318d226bed61.tar.gz sncontinue-85ce06beb9b2d587b0b572117a98318d226bed61.tar.bz2 sncontinue-85ce06beb9b2d587b0b572117a98318d226bed61.zip | |
Merge branch 'main' into show-react-immediately
Diffstat (limited to 'schema/json')
| -rw-r--r-- | schema/json/FullState.json | 8 | ||||
| -rw-r--r-- | schema/json/History.json | 8 | ||||
| -rw-r--r-- | schema/json/HistoryNode.json | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/schema/json/FullState.json b/schema/json/FullState.json index 5a7e9d10..62ed337b 100644 --- a/schema/json/FullState.json +++ b/schema/json/FullState.json @@ -120,6 +120,14 @@ "title": "Active", "default": true, "type": "boolean" + }, + "logs": { + "title": "Logs", + "default": [], + "type": "array", + "items": { + "type": "string" + } } }, "required": [ diff --git a/schema/json/History.json b/schema/json/History.json index ee797412..56415520 100644 --- a/schema/json/History.json +++ b/schema/json/History.json @@ -120,6 +120,14 @@ "title": "Active", "default": true, "type": "boolean" + }, + "logs": { + "title": "Logs", + "default": [], + "type": "array", + "items": { + "type": "string" + } } }, "required": [ diff --git a/schema/json/HistoryNode.json b/schema/json/HistoryNode.json index d0e12ac5..81e239b3 100644 --- a/schema/json/HistoryNode.json +++ b/schema/json/HistoryNode.json @@ -120,6 +120,14 @@ "title": "Active", "default": true, "type": "boolean" + }, + "logs": { + "title": "Logs", + "default": [], + "type": "array", + "items": { + "type": "string" + } } }, "required": [ |
