2023-07-15 01:12:59 +06:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
|
|
"$id": "https://muntashirakon.github.io/android-debloat-list/bloatware_list.json",
|
|
|
|
"title": "Bloatware List",
|
|
|
|
"description": "Listing of Android bloatware",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"description": "Bloatware package name",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"label": {
|
|
|
|
"description": "Bloatware package label",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"description": "Packages that this bloatware depends on",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"minItems": 1,
|
|
|
|
"uniqueItems": true
|
|
|
|
},
|
|
|
|
"required_by": {
|
|
|
|
"description": "Packages that depend on this bloatware",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"minItems": 1,
|
|
|
|
"uniqueItems": true
|
|
|
|
},
|
|
|
|
"tags": {
|
|
|
|
"description": "Predefined tags",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"minItems": 1,
|
|
|
|
"uniqueItems": true
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"description": "Bloatware description",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"web": {
|
|
|
|
"description": "Online references",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"minItems": 1,
|
|
|
|
"uniqueItems": true
|
|
|
|
},
|
|
|
|
"removal": {
|
|
|
|
"description": "Bloatware removal type (delete, replace, caution, unsafe)",
|
2023-07-19 23:44:26 +06:00
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"delete",
|
|
|
|
"replace",
|
|
|
|
"caution",
|
|
|
|
"unsafe"
|
|
|
|
]
|
2023-07-15 01:12:59 +06:00
|
|
|
},
|
2023-07-15 02:09:31 +06:00
|
|
|
"warning": {
|
|
|
|
"description": "Possible consequences of removing the bloatware (for caution and unsafe), for others, useful information",
|
|
|
|
"type": "string"
|
|
|
|
},
|
2023-07-15 01:12:59 +06:00
|
|
|
"suggestions": {
|
|
|
|
"description": "Suggestion ID for listing alternatives to this bloatware",
|
|
|
|
"type": "string"
|
2023-07-21 00:53:51 +06:00
|
|
|
},
|
|
|
|
"suppress": {
|
|
|
|
"description": "Suppress a particular warning issued by the linter, separated by comma without space",
|
|
|
|
"type": "string"
|
2023-07-15 01:12:59 +06:00
|
|
|
}
|
|
|
|
},
|
2023-07-19 23:44:26 +06:00
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"label",
|
|
|
|
"description",
|
|
|
|
"removal"
|
|
|
|
]
|
2023-07-15 01:12:59 +06:00
|
|
|
},
|
|
|
|
"uniqueItems": true
|
|
|
|
}
|