* Create Airbyte-Native connector for Gitlab Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
79 lines
1.6 KiB
JSON
79 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"tag_name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"description": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"released_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"upcoming_release": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"milestones": {
|
|
"type": ["null", "array"],
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"commit_path": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"tag_path": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"assets": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"count": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"sources": {
|
|
"type": ["null", "array"],
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"format": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"url": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"links": {
|
|
"type": "array"
|
|
}
|
|
}
|
|
},
|
|
"evidences": {
|
|
"type": ["null", "array"]
|
|
},
|
|
"_links": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"author_id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"commit_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"project_id": {
|
|
"type": ["null", "integer"]
|
|
}
|
|
}
|
|
}
|