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 | 9983d8b5162756f5016e4c0d0bc28ad86c2293e6 (patch) | |
| tree | 3795641e63fa55a0fe685a9760977593e9d65d44 /samples | |
| parent | 51998506b2f51eba9b6d82d07003c4f27928ae7f (diff) | |
add lacks string operator, lacks is the opposite of contains. e.g.: not contains
Diffstat (limited to 'samples')
| -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" }, |
