* 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
72 lines
1.4 KiB
JSON
72 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"project_id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"short_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"parent_ids": {
|
|
"type": ["null", "array"],
|
|
"items": {
|
|
"type": ["null", "string"]
|
|
}
|
|
},
|
|
"title": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"message": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"author_name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"author_email": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"authored_date": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"committer_name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"committer_email": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"committed_date": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"trailers": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"web_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"stats": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"additions": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"deletions": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"total": {
|
|
"type": ["null", "integer"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|