Update config-schema.json to fix ignore_ids and ignore_imdb_ids validation

pull/1839/head
bullmoose20 10 months ago committed by GitHub
parent 30577af0e4
commit cd3432f4f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -751,25 +751,43 @@
}, },
"ignore_ids": { "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.", "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": "null"
}, },
{
"type": "array",
"items": {
"type": "integer"
},
"minItems": 1
},
{ {
"type": "string", "type": "string",
"pattern": "^(\\d+)(,(\\d+))*$" "pattern": "^(\\d+)(,(\\d+))*$"
},
{
"type": "integer"
} }
] ]
}, },
"ignore_imdb_ids": { "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.", "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": "null"
}, },
{ {
"type": "string", "type": "string",
"pattern": "^(tt\\d{7})(,(tt\\d{7}))*$" "pattern": "^(tt\\d{7})(,(tt\\d{7}))*$"
},
{
"type": "array",
"items": {
"type": "string",
"pattern": "^tt\\d{7}$"
},
"minItems": 1
} }
] ]
}, },

Loading…
Cancel
Save