* Create Airbyte-Native connector for Gitlab Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
47 lines
909 B
JSON
47 lines
909 B
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"
|
|
},
|
|
"due_date": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"start_date": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"expired": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"web_url": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|