This repository was archived by the owner on Aug 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcleanup-list.schema.json
More file actions
86 lines (86 loc) · 2.11 KB
/
cleanup-list.schema.json
File metadata and controls
86 lines (86 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"id": "https://github.com/constup/cleanup/blob/master/cleanup-list.schema.json",
"title": "constUP Cleanup list schema",
"description": "Describes cleanup operations on files, folders and registry entries for constUP Garbage Cleaner to use.",
"type": "object",
"patternProperties": {
"^[a-z0-9_]+$": {
"type": "object",
"properties": {
"application": {
"type": "string"
},
"category": {
"type": "string",
"enum": [
"IDE",
"government",
"Windows",
"Windows update",
".NET",
"installer",
"my application",
"my files",
"my registry entries",
"AI",
"communication",
"game",
"hardware",
"editing software"
]
},
"entity_category": {
"type": "string",
"enum": [
"crash log",
"log",
"cache",
"backup",
"old version",
"temporary files",
"telemetry",
"memory dump"
]
},
"custom_category": {
"type": "string"
},
"description": "object",
"properties": {
"type": "string"
},
"instructions": {
"type": "string"
},
"delete": {
"type": "object",
"properties": {
"type": "object",
"properties": {
"type": "string",
"enum": ["file", "directory", "registry value", "registry key"]
}
},
"location": {
"type": "string"
}
},
"active": {
"type": "boolean"
},
"required": ["type", "location"],
"additionalProperties": false
}
},
"required": [
"application",
"category",
"entity_category",
"description",
"delete",
"active"
]
},
"additionalProperties": false
}