1
0
mirror of synced 2026-01-25 10:01:49 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/merge_requests.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

146 lines
3.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"iid": {
"type": ["null", "integer"]
},
"project_id": {
"type": ["null", "integer"]
},
"title": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"merged_at": {
"type": ["null", "string"],
"format": "date-time"
},
"closed_at": {
"type": ["null", "string"],
"format": "date-time"
},
"target_branch": {
"type": ["null", "string"]
},
"source_branch": {
"type": ["null", "string"]
},
"user_notes_count": {
"type": ["null", "integer"]
},
"upvotes": {
"type": ["null", "integer"]
},
"downvotes": {
"type": ["null", "integer"]
},
"assignees": {
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
},
"reviewers": {
"type": ["null", "array"]
},
"source_project_id": {
"type": ["null", "integer"]
},
"target_project_id": {
"type": ["null", "integer"]
},
"labels": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
},
"work_in_progress": {
"type": ["null", "boolean"]
},
"merge_when_pipeline_succeeds": {
"type": ["null", "boolean"]
},
"merge_status": {
"type": ["null", "string"]
},
"sha": {
"type": ["null", "string"]
},
"merge_commit_sha": {
"type": ["null", "string"]
},
"squash_commit_sha": {
"type": ["null", "string"]
},
"discussion_locked": {
"type": ["null", "boolean"]
},
"should_remove_source_branch": {
"type": ["null", "boolean"]
},
"force_remove_source_branch": {
"type": ["null", "boolean"]
},
"reference": {
"type": ["null", "string"]
},
"references": {
"type": ["null", "object"]
},
"web_url": {
"type": ["null", "string"]
},
"time_stats": {
"type": ["null", "object"]
},
"squash": {
"type": ["null", "boolean"]
},
"task_completion_status": {
"type": ["null", "object"]
},
"has_conflicts": {
"type": ["null", "boolean"]
},
"blocking_discussions_resolved": {
"type": ["null", "boolean"]
},
"approvals_before_merge": {
"type": ["null", "boolean", "string", "object"]
},
"author_id": {
"type": ["null", "integer"]
},
"assignee_id": {
"type": ["null", "integer"]
},
"closed_by_id": {
"type": ["null", "integer"]
},
"milestone_id": {
"type": ["null", "integer"]
},
"merged_by_id": {
"type": ["null", "integer"]
}
}
}