1
0
mirror of synced 2026-01-25 10:01:49 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/releases.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

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"]
}
}
}