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

124 lines
2.4 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"
},
"closed_at": {
"type": ["null", "string"],
"format": "date-time"
},
"labels": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
},
"assignees": {
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
},
"type": {
"type": ["null", "string"]
},
"user_notes_count": {
"type": ["null", "integer"]
},
"merge_requests_count": {
"type": ["null", "integer"]
},
"upvotes": {
"type": ["null", "integer"]
},
"downvotes": {
"type": ["null", "integer"]
},
"due_date": {
"type": ["null", "string"]
},
"confidential": {
"type": ["null", "boolean"]
},
"discussion_locked": {
"type": ["null", "boolean"]
},
"issue_type": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
},
"time_stats": {
"type": ["null", "object"]
},
"task_completion_status": {
"type": ["null", "object"]
},
"blocking_issues_count": {
"type": ["null", "integer"]
},
"has_tasks": {
"type": ["null", "boolean"]
},
"_links": {
"type": ["null", "object"]
},
"references": {
"type": ["null", "object"]
},
"moved_to_id": {
"type": ["null", "integer", "string"]
},
"service_desk_reply_to": {
"type": ["null", "string"]
},
"author_id": {
"type": ["null", "integer"]
},
"assignee_id": {
"type": ["null", "integer"]
},
"closed_by_id": {
"type": ["null", "integer"]
},
"milestone_id": {
"type": ["null", "integer"]
},
"subscribed": {
"type": ["null", "boolean"]
},
"weight": {
"type": ["null", "integer"]
},
"task_status": {
"type": ["null", "string"]
}
}
}