1
0
mirror of synced 2025-12-31 15:03:11 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/commits.json
Artem Inzhyyants c734909b79 Source GitLab: add shared_runners_setting field to groups (#27869)
* 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
2023-07-03 10:38:10 +02:00

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"]
}
}
}
}
}