You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
434 B
19 lines
434 B
1 year ago
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||
|
"$id": "https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/config/quality-definition.json",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": ["type"],
|
||
|
"properties": {
|
||
|
"type": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"preferred_ratio": {
|
||
|
"type": "number",
|
||
|
"default": 1.0,
|
||
|
"minimum": 0.0,
|
||
|
"maximum": 1.0
|
||
|
}
|
||
|
}
|
||
|
}
|