mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Update config-schema.json to fix ignore_ids and ignore_imdb_ids validation
This commit is contained in:
parent
30577af0e4
commit
cd3432f4f8
1 changed files with 20 additions and 2 deletions
|
@ -751,25 +751,43 @@
|
|||
},
|
||||
"ignore_ids": {
|
||||
"description": "List of TMDb/TVDb IDs to ignore. Set a null, a single TMDb/TVDb ID, or a comma-separated string of TMDb/TVDb IDs to ignore in all collections.",
|
||||
"oneOf": [
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
},
|
||||
"minItems": 1
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"pattern": "^(\\d+)(,(\\d+))*$"
|
||||
},
|
||||
{
|
||||
"type": "integer"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ignore_imdb_ids": {
|
||||
"description": "List of IMDb IDs to ignore. Set a null, a single IMDb ID, or a comma-separated string of IMDb IDs to ignore in all collections.",
|
||||
"oneOf": [
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"pattern": "^(tt\\d{7})(,(tt\\d{7}))*$"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"pattern": "^tt\\d{7}$"
|
||||
},
|
||||
"minItems": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue