gitlab-ci-vars-setter/gitlab-vars-schema.json

24 lines
695 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "GitLab CI/CD Variables File Schema",
"type": "object",
"patternProperties": {
".+": {
"type": "object",
"properties": {
"value": { "type": "string" },
"environment_scope": { "type": "string" },
"variable_type": { "type": "string" },
"protected": { "type": "boolean" },
"raw": { "type": "boolean" },
"masked": { "type": "boolean" },
"masked_and_hidden": { "type": "boolean" },
"description": { "type": ["string", "null"] }
},
"required": ["value"],
"additionalProperties": false
}
},
"additionalProperties": false
}