mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Update config-schema.json
fix the "first" keyword to work with "current_year" validation
This commit is contained in:
parent
cd3432f4f8
commit
d74f8e2ef5
1 changed files with 16 additions and 16 deletions
|
@ -1461,13 +1461,13 @@
|
|||
"starting": {
|
||||
"oneOf": [
|
||||
{ "type": "integer", "minimum": 0 },
|
||||
{ "type": "string", "pattern": "^current_year(-\\d+)?$" }
|
||||
{ "type": "string", "pattern": "^(current_year(-\\d+)?|first)$" }
|
||||
]
|
||||
},
|
||||
"ending": {
|
||||
"oneOf": [
|
||||
{ "type": "integer", "minimum": 1 },
|
||||
{ "type": "string", "pattern": "^current_year(-\\d+)?$" }
|
||||
{ "type": "string", "pattern": "^(current_year(-\\d+)?|first)$" }
|
||||
]
|
||||
},
|
||||
"increment": { "type": "integer", "minimum": 0 },
|
||||
|
|
Loading…
Reference in a new issue