-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Source Jira: add new stream
Issue custom field options
, `IssueTyp…
…es`, `Project Roles` (#30755)
- Loading branch information
Showing
13 changed files
with
383 additions
and
81 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
27 changes: 19 additions & 8 deletions
27
airbyte-integrations/connectors/source-jira/integration_tests/expected_records.jsonl
Large diffs are not rendered by default.
Oops, something went wrong.
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
20 changes: 11 additions & 9 deletions
20
...-integrations/connectors/source-jira/source_jira/schemas/issue_custom_field_contexts.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 |
---|---|---|
@@ -1,32 +1,34 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"description": "The details of a custom field context.", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"type": ["null", "string"], | ||
"description": "The ID of the context." | ||
}, | ||
"fieldId": { | ||
"type": ["null", "string"], | ||
"description": "Id of the related field" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"type": ["null", "string"], | ||
"description": "The name of the context." | ||
}, | ||
"description": { | ||
"type": "string", | ||
"type": ["null", "string"], | ||
"description": "The description of the context." | ||
}, | ||
"isGlobalContext": { | ||
"type": "boolean", | ||
"type": ["null", "boolean"], | ||
"description": "Whether the context is global." | ||
}, | ||
"isAnyIssueType": { | ||
"type": "boolean", | ||
"type": ["null", "boolean"], | ||
"description": "Whether the context apply to all issue types." | ||
}, | ||
"fieldType": { | ||
"type": ["null", "string"] | ||
} | ||
}, | ||
"additionalProperties": true, | ||
"description": "The details of a custom field context." | ||
} | ||
} |
21 changes: 13 additions & 8 deletions
21
...e-integrations/connectors/source-jira/source_jira/schemas/issue_custom_field_options.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 |
---|---|---|
@@ -1,24 +1,29 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"description": "Details of the custom field options for a context.", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"type": ["null", "string"], | ||
"description": "The ID of the custom field option." | ||
}, | ||
"value": { | ||
"type": "string", | ||
"type": ["null", "string"], | ||
"description": "The value of the custom field option." | ||
}, | ||
"optionId": { | ||
"type": "string", | ||
"type": ["null", "string"], | ||
"description": "For cascading options, the ID of the custom field option containing the cascading option." | ||
}, | ||
"disabled": { | ||
"type": "boolean", | ||
"type": ["null", "boolean"], | ||
"description": "Whether the option is disabled." | ||
}, | ||
"fieldId": { | ||
"type": ["null", "string"] | ||
}, | ||
"contextId": { | ||
"type": ["null", "string"] | ||
} | ||
}, | ||
"additionalProperties": true, | ||
"description": "Details of the custom field options for a context." | ||
} | ||
} |
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
Oops, something went wrong.