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

46 lines
912 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"project_id": {
"type": ["null", "integer"]
},
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"color": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"description_html": {
"type": ["null", "string"]
},
"text_color": {
"type": ["null", "string"]
},
"subscribed": {
"type": ["null", "boolean"]
},
"priority": {
"type": ["null", "integer"]
},
"is_project_label": {
"type": ["null", "boolean"]
},
"open_issues_count": {
"type": ["null", "integer"]
},
"closed_issues_count": {
"type": ["null", "integer"]
},
"open_merge_requests_count": {
"type": ["null", "integer"]
}
}
}