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 | 2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670 (patch) | |
| tree | 6c1077859938fadce3a6f17f267127a66fd11df4 /schema | |
| parent | 59c549a468abd40207f8dc46eacdc0e02bbe21ad (diff) | |
| parent | 82b03aeb0882cb884c398104b7934d63c6ceed00 (diff) | |
| download | sncontinue-2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670.tar.gz sncontinue-2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670.tar.bz2 sncontinue-2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670.zip | |
Merge branch 'main' into show-react-immediately
Diffstat (limited to 'schema')
| -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": [ | 
