* Create Airbyte-Native connector for Gitlab Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
91 lines
1.8 KiB
JSON
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"]
|
|
}
|
|
}
|
|
}
|