Commit 5f021170 authored by Jérome Perrin's avatar Jérome Perrin Committed by Rafael Monnerat

software/caucase: fix json schema

what we usually call float is called number in json schema
https://spacetelescope.github.io/understanding-json-schema/reference/numeric.html#number
parent 1daed8c0
......@@ -50,13 +50,13 @@
"crl-life-period": {
"title": "CRL life time period",
"description": "Number of individual certificate validity periods during which the CRL is valid. Default: 1/50.0",
"type": "float",
"type": "number",
"default": 0.2
},
"ca-life-period": {
"title": "CA Certificate life period",
"description": "Number of individual certificate validity periods during which the CA certificate is valid. Default: 10",
"type": "float",
"type": "number",
"default": 10
},
"crt-keep-time": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment