Commit cbb33e56 authored by Jérome Perrin's avatar Jérome Perrin

software/erp5: use allOf to extend caucase schema

parent 17ac5551
...@@ -498,18 +498,22 @@ ...@@ -498,18 +498,22 @@
}, },
"caucase": { "caucase": {
"description": "Caucase certificate authority parameters", "description": "Caucase certificate authority parameters",
"properties": { "allOf": [
"url": { {
"title": "Caucase URL", "properties": {
"description": "URL of existing caucase instance to use. If empty, a new caucase instance will be deployed. If not empty, other properties in this section will be ignored.", "url": {
"default": "", "title": "Caucase URL",
"type": "string", "description": "URL of existing caucase instance to use. If empty, a new caucase instance will be deployed. If not empty, other properties in this section will be ignored.",
"format": "uri" "default": "",
"type": "string",
"format": "uri"
}
}
},
{
"$ref": "../caucase/instance-caucase-input-schema.json"
} }
}, ],
"additionalProperties": {
"$ref": "../caucase/instance-caucase-input-schema.json"
},
"type": "object" "type": "object"
}, },
"test-runner": { "test-runner": {
......
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