Fix schema rules to be more strict
parent
414bc18088
commit
781cf75191
|
@ -140,12 +140,16 @@
|
||||||
"gitlab-token": {
|
"gitlab-token": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"description": "A hash of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}.",
|
"description": "A hash of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}.",
|
||||||
"additionalProperties": true
|
"additionalProperties": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"bearer": {
|
"bearer": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"description": "A hash of domain name => bearer authentication token, for example {\"example.com\":\"<token>\"}.",
|
"description": "A hash of domain name => bearer authentication token, for example {\"example.com\":\"<token>\"}.",
|
||||||
"additionalProperties": true
|
"additionalProperties": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"disable-tls": {
|
"disable-tls": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|
Loading…
Reference in New Issue