summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/pipeline_schedule_variable.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/pipeline_schedule_variable.json')
-rw-r--r--spec/fixtures/api/schemas/pipeline_schedule_variable.json10
1 files changed, 8 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/pipeline_schedule_variable.json b/spec/fixtures/api/schemas/pipeline_schedule_variable.json
index f7ccb2d44a0..022d36cb88c 100644
--- a/spec/fixtures/api/schemas/pipeline_schedule_variable.json
+++ b/spec/fixtures/api/schemas/pipeline_schedule_variable.json
@@ -1,8 +1,14 @@
{
- "type": ["object", "null"],
+ "type": "object",
+ "required": [
+ "key",
+ "value",
+ "variable_type"
+ ],
"properties": {
"key": { "type": "string" },
- "value": { "type": "string" }
+ "value": { "type": "string" },
+ "variable_type": { "type": "string" }
},
"additionalProperties": false
}