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

91 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"iid": {
"type": ["null", "integer"]
},
"group_id": {
"type": ["null", "integer"]
},
"parent_id": {
"type": ["null", "integer"]
},
"title": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"confidential": {
"type": ["null", "boolean"]
},
"web_url": {
"type": ["null", "string"]
},
"reference": {
"type": ["null", "string"]
},
"references": {
"type": ["null", "object"]
},
"author_id": {
"type": ["null", "integer"]
},
"start_date": {
"type": ["null", "string"]
},
"start_date_is_fixed": {
"type": ["null", "boolean"]
},
"start_date_fixed": {
"type": ["null", "string"]
},
"start_date_from_inherited_source": {
"type": ["null", "string", "boolean"]
},
"end_date": {
"type": ["null", "string"]
},
"due_date": {
"type": ["null", "string"]
},
"due_date_is_fixed": {
"type": ["null", "boolean"]
},
"due_date_fixed": {
"type": ["null", "string"]
},
"due_date_from_inherited_source": {
"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"]
},
"upvotes": {
"type": ["null", "integer"]
},
"downvotes": {
"type": ["null", "integer"]
}
}
}