1
0
mirror of synced 2026-01-08 03:06:34 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json
2022-12-15 16:31:28 +02:00

49 lines
1.7 KiB
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/gitlab",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Source GitLab Singer Spec",
"type": "object",
"required": ["api_url", "private_token", "start_date"],
"additionalProperties": true,
"properties": {
"private_token": {
"type": "string",
"title": "Private Token",
"description": "Log into your GitLab account and then generate a personal [Access Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html).",
"airbyte_secret": true,
"order": 0
},
"api_url": {
"type": "string",
"examples": ["gitlab.com"],
"title": "API URL",
"description": "Please enter your basic URL from GitLab instance.",
"order": 1
},
"start_date": {
"type": "string",
"title": "Start Date",
"description": "The date from which you'd like to replicate data for GitLab API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated.",
"examples": ["2021-03-01T00:00:00Z"],
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$",
"order": 2
},
"groups": {
"type": "string",
"examples": ["airbyte.io"],
"title": "Groups",
"description": "Space-delimited list of groups. e.g. airbyte.io.",
"order": 3
},
"projects": {
"type": "string",
"title": "Projects",
"examples": ["airbyte.io/documentation"],
"description": "Space-delimited list of projects. e.g. airbyte.io/documentation meltano/tap-gitlab.",
"order": 4
}
}
}
}