-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema-v2.json
More file actions
64 lines (64 loc) · 2.32 KB
/
schema-v2.json
File metadata and controls
64 lines (64 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": ["Wordlists"],
"properties": {
"Wordlists": {
"type": "array",
"description": "The list of wordlists",
"items": {
"type": "object",
"required": [
"Id",
"Uri"
],
"properties": {
"Id": {
"type": "string",
"description": "Unique identifier of the wordlist"
},
"Name": {
"type": "string",
"description": "The user-friendly wordlist name"
},
"Uri": {
"type": "string",
"description": "Uri used to download the wordlist"
},
"Hash": {
"type": "string",
"description": "SHA256 hash of the wordlist file"
},
"Enforced": {
"type": "boolean",
"description": "Determines enforcement status of the wordlist. if it's true, it will block any operations if the word is found in the wordlist, but if set to false, it just shows a warning"
},
"Compressed": {
"type": "boolean",
"description": "Determines compression status of the wordlist file."
},
"Optimized": {
"type": "boolean",
"description": "Determines the optimization status of the wordlist file. if it's true, it means that the wordlist is optimized by fragment compiler and all duplicated entries are removed, otherwise it means that the wordlist is not optimized and may be have some duplicated entries. Note: this property only shows that the words property is calculated with optimization or not, and does not correspond to the wordlist file itself."
},
"InstallDirectory": {
"type": "string",
"description": "The installation directory of the wordlist compiled files"
},
"Lines": {
"type": "number",
"description": "The number of lines in the wordlist"
},
"Words": {
"type": "number",
"description": "The number of words detected by the wordlist fragment compiler"
},
"Size": {
"type": "number",
"description": "The size of the wordlist file"
}
}
}
}
}
}