Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[source-opsgenie] add support for additional incident fields #50880

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 78 additions & 4 deletions airbyte-integrations/connectors/source-opsgenie/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,11 @@ definitions:
type:
- "null"
- string
ownerTeam:
description: Owner team of the incident.
type:
- "null"
- string
responders:
description: List of responders assigned to deal with the incident.
type:
Expand Down Expand Up @@ -668,13 +673,45 @@ definitions:
type:
- "null"
- string
details:
description: Additional details or context related to the incident.
extraProperties:
description:
Map of key-value pairs of custom properties of the incident.
type:
- "null"
- object
properties: {}
additionalProperties: true
links:
description: Links related to the incident data.
type:
- "null"
- object
properties:
web:
description: Web link related to the incident.
type:
- "null"
- string
api:
description: API link related to the incident.
type:
- "null"
- string
impactStartDate:
description: The timestamp when the impact started for the incident.
type:
- "null"
- string
format: date-time
actions:
description: List of actions related to the incident.
type:
- "null"
- array
items:
type: object
properties: {}
additionalProperties: true
notifyStakeholders:
description:
Flag indicating whether stakeholders should be notified about
Expand Down Expand Up @@ -2726,6 +2763,11 @@ streams:
type:
- "null"
- string
ownerTeam:
description: Owner team of the incident.
type:
- "null"
- string
responders:
description: List of responders assigned to deal with the incident.
type:
Expand Down Expand Up @@ -2767,13 +2809,45 @@ streams:
type:
- "null"
- string
details:
description: Additional details or context related to the incident.
extraProperties:
description:
Map of key-value pairs of custom properties of the incident.
type:
- "null"
- object
properties: {}
additionalProperties: true
links:
description: Links related to the incident data.
type:
- "null"
- object
properties:
web:
description: Web link related to the incident.
type:
- "null"
- string
api:
description: API link related to the incident.
type:
- "null"
- string
impactStartDate:
description: The timestamp when the impact started for the incident.
type:
- "null"
- string
format: date-time
actions:
description: List of actions related to the incident.
type:
- "null"
- array
items:
type: object
properties: {}
additionalProperties: true
notifyStakeholders:
description:
Flag indicating whether stakeholders should be notified about
Expand Down
Loading