2020-06-19 05:08:35 -04:00
|
|
|
{
|
2021-03-23 14:09:05 -04:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
2020-06-19 05:08:35 -04:00
|
|
|
"description": "CI builds metadata secrets",
|
|
|
|
"type": "object",
|
|
|
|
"patternProperties": {
|
|
|
|
".*": {
|
|
|
|
"type": "object",
|
|
|
|
"patternProperties": {
|
|
|
|
"^vault$": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["path", "field", "engine"],
|
|
|
|
"properties": {
|
|
|
|
"path": { "type": "string" },
|
|
|
|
"field": { "type": "string" },
|
|
|
|
"engine": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["name", "path"],
|
|
|
|
"properties": {
|
|
|
|
"path": { "type": "string" },
|
|
|
|
"name": { "type": "string" }
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
2021-07-02 14:08:28 -04:00
|
|
|
},
|
|
|
|
"^file$": { "type": "boolean" }
|
2020-06-19 05:08:35 -04:00
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|