gitlab-org--gitlab-foss/spec/fixtures/api/schemas/job/runners.json
Steve Azzopardi 7e3e895d74
Remove addtionalProperties in runners schema
This resulted into failure on EE pipeline, for more information follow
from
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7600#note_105310648
onwards.
2018-10-04 10:59:20 +02:00

12 lines
216 B
JSON

{
"type": "object",
"required": [
"online",
"available"
],
"properties": {
"online": { "type": "boolean" },
"available": { "type": "boolean" },
"settings_path": { "type": "string" }
}
}