Files
2020-05-27 14:48:51 -04:00

89 lines
2.1 KiB
JSON

{
"$id": "https://api.splunkresearch.com/schemas/lookups.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A object that defines a lookup file and its properties.",
"oneOf": [
{
"required": [
"collection"
]
},
{
"required": [
"filename"
]
}
],
"properties": {
"case_sensitive_match": {
"description": "What the macro is intended to filter",
"enum": [
"true",
"false"
],
"examples": [
"true"
],
"type": "string"
},
"collection": {
"description": "Name of the collection to use for this lookup",
"examples": [
"prohibited_apps_launching_cmd"
],
"type": "string"
},
"default_match": {
"description": "The default value if no match is found",
"examples": [
"true"
],
"type": "string"
},
"description": {
"description": "The description of this lookup",
"examples": [
"This lookup contains file names that exist in the Windows\\System32 directory"
],
"type": "string"
},
"filename": {
"description": "The name of the file to use for this lookup",
"examples": [
"prohibited_apps_launching_cmd.csv"
],
"type": "string"
},
"match_type": {
"description": "A comma and space-delimited list of <match_type>(<field_name>) specification to allow for non-exact matching",
"examples": [
"WILDCARD(process)"
],
"type": "string"
},
"max_matches": {
"description": "The maximum number of possible matches for each input lookup value",
"examples": [
"100"
],
"type": "integer"
},
"min_matches": {
"description": "Minimum number of possible matches for each input lookup value",
"examples": [
"1"
],
"type": "integer"
},
"name": {
"description": "The name of the lookup to be used in searches",
"examples": [
"isWindowsSystemFile_lookup"
],
"type": "string"
}
},
"title": "Lookup Manifest",
"type": "object"
}