* Source GitLab: add `additionalProperties` to all schemas; add `shared_runners_setting` field to groups * Source GitLab: update docs * Source GitLab: remove additionalProperties * Source GitLab: update docs * Source GitLab: update expected records
41 lines
800 B
JSON
41 lines
800 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"project_id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"merged": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"protected": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"developers_can_push": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"developers_can_merge": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"can_push": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"default": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"web_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"commit_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"commit": {
|
|
"type": ["null", "object"],
|
|
"additionalProperties": true
|
|
}
|
|
}
|
|
}
|