-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Gitlab: add GroupIssueBoards stream (#13252)
* GitLab Source: add GroupIssueBoards stream * Address stream schema comments * Address comments * Bump version * Add as empty stream
- Loading branch information
Showing
8 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/group_issue_boards.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"hide_backlog_list": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"hide_closed_list": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"project": { | ||
"type": ["null", "integer"] | ||
}, | ||
"lists": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"label": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"description": { | ||
"type": ["null", "string"] | ||
}, | ||
"description_html": { | ||
"type": ["null", "string"] | ||
}, | ||
"text_color": { | ||
"type": ["null", "string"] | ||
}, | ||
"color": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"position": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} | ||
}, | ||
"group_id": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters