1
0
mirror of synced 2026-01-16 00:06:28 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/branches.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

37 lines
707 B
JSON

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