mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-24 21:43:07 +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
|
@ -1455,36 +1455,36 @@
|
|||
"template-variables-collections": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"data": {
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"starting": {
|
||||
"starting": {
|
||||
"oneOf": [
|
||||
{ "type": "integer", "minimum": 0 },
|
||||
{ "type": "string", "pattern": "^current_year(-\\d+)?$" }
|
||||
{ "type": "integer", "minimum": 0 },
|
||||
{ "type": "string", "pattern": "^(current_year(-\\d+)?|first)$" }
|
||||
]
|
||||
},
|
||||
"ending": {
|
||||
},
|
||||
"ending": {
|
||||
"oneOf": [
|
||||
{ "type": "integer", "minimum": 1 },
|
||||
{ "type": "string", "pattern": "^current_year(-\\d+)?$" }
|
||||
{ "type": "integer", "minimum": 1 },
|
||||
{ "type": "string", "pattern": "^(current_year(-\\d+)?|first)$" }
|
||||
]
|
||||
},
|
||||
"increment": { "type": "integer", "minimum": 0 },
|
||||
"depth": { "type": "integer", "minimum": 1 },
|
||||
"limit": { "type": "integer", "minimum": 1 }
|
||||
},
|
||||
"increment": { "type": "integer", "minimum": 0 },
|
||||
"depth": { "type": "integer", "minimum": 1 },
|
||||
"limit": { "type": "integer", "minimum": 1 }
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"style": {
|
||||
},
|
||||
"style": {
|
||||
"type": "string",
|
||||
"enum": ["color", "white", "bw", "diiivoy", "diiivoycolor", "rainier", "signature", "orig", "transparent", "default", "standards"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [],
|
||||
"dependentRequired": {},
|
||||
"title": "template_variables"
|
||||
},
|
||||
},
|
||||
"template-variables-overlays": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
|
|
Loading…
Reference in a new issue