-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌟 Source Freshservice: add
requested_items
stream (#34272)
- Loading branch information
1 parent
dad53b7
commit dc8df8f
Showing
8 changed files
with
99 additions
and
20 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
6 changes: 3 additions & 3 deletions
6
airbyte-integrations/connectors/source-freshservice/metadata.yaml
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
47 changes: 47 additions & 0 deletions
47
...egrations/connectors/source-freshservice/source_freshservice/schemas/requested_items.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,47 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": true, | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"created_at": { | ||
"type": ["null", "string"] | ||
}, | ||
"updated_at": { | ||
"type": ["null", "string"] | ||
}, | ||
"quantity": { | ||
"type": ["null", "integer"] | ||
}, | ||
"stage": { | ||
"type": ["null", "integer"] | ||
}, | ||
"loaned": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"cost_per_request": { | ||
"type": ["null", "number"] | ||
}, | ||
"remarks": { | ||
"type": ["null", "string"] | ||
}, | ||
"delivery_time": { | ||
"type": ["null", "number"] | ||
}, | ||
"is_parent": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"service_item_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"service_item_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"custom_fields": { | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
} | ||
} | ||
} |
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