diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2020-07-02 14:42:09 +0100 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2020-07-02 14:42:09 +0100 |
| commit | e2225e82672f08e16219bb5be2a7aeab39afb184 (patch) | |
| tree | 3795641e63fa55a0fe685a9760977593e9d65d44 /samples/dtail.schema.json | |
| parent | 9cf2c732ff08e9b4dc0d4ce80d33cc1811028dc6 (diff) | |
add lacks string operator, lacks is the opposite of contains. e.g.: not contains
Diffstat (limited to 'samples/dtail.schema.json')
| -rwxr-xr-x | samples/dtail.schema.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/samples/dtail.schema.json b/samples/dtail.schema.json index 68db788..73807fc 100755 --- a/samples/dtail.schema.json +++ b/samples/dtail.schema.json @@ -43,6 +43,29 @@ } } }, + "Monitor": { + "type": "array", + "items": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Enable": { + "type": "boolean" + }, + "Files": { + "type": "string" + }, + "Outfile": { + "type": "string" + }, + "Query": { + "type": "string" + } + } + } + }, "HostKeyFile": { "type": "string" }, |
