1
0
mirror of synced 2026-01-16 00:06:28 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/commits.json
Yevhenii 94f1d217b8 🎉 Native Gitlab connector (#4027)
* Create Airbyte-Native connector for Gitlab

Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
2021-07-06 15:25:01 +03:00

72 lines
1.4 KiB
JSON

{
"$schema": "http://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"]
}
}
}
}
}