mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-07-22 03:00:29 +00:00
fix(schema): allow null for analytics field
This commit is contained in:
parent
9cf87ff1c2
commit
e477fcd390
1 changed files with 5 additions and 2 deletions
|
|
@ -165,8 +165,11 @@
|
|||
}
|
||||
},
|
||||
"analytics": {
|
||||
"type": "object",
|
||||
"description": "Analytics configuration"
|
||||
"oneOf": [
|
||||
{ "type": "null" },
|
||||
{ "type": "object", "description": "Analytics configuration" }
|
||||
],
|
||||
"description": "Analytics configuration (null to disable)"
|
||||
},
|
||||
"ignorePatterns": {
|
||||
"type": "array",
|
||||
|
|
|
|||
Loading…
Reference in a new issue