1
0
mirror of synced 2026-01-20 21:06:36 -05:00
Files
airbyte/airbyte-integrations/connectors/source-orb/source_orb/spec.json
Alyssa Hatch 00aca98113 adding credit_block_id to columns obtained from Orb API (#16017)
* adding credit_block_id to columns obtained from Orb API

* switch additional properties from false to true

* Update orb.md (#16020)

updating changelog for orb credit block id upgrade

* bump image tag

* auto-bump connector version [ci skip]

Co-authored-by: Tim Chan <tim@chan.net>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2022-08-26 13:56:27 -05:00

54 lines
1.9 KiB
JSON

{
"documentationUrl": "https://docs.withorb.com/",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Orb Spec",
"type": "object",
"required": ["api_key"],
"additionalProperties": true,
"properties": {
"api_key": {
"type": "string",
"title": "Orb API Key",
"description": "Orb API Key, issued from the Orb admin console.",
"airbyte_secret": true,
"order": 1
},
"start_date": {
"type": "string",
"title": "Start Date",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$",
"description": "UTC date and time in the format 2022-03-01T00:00:00Z. Any data with created_at before this data will not be synced.",
"examples": ["2022-03-01T00:00:00Z"],
"order": 2
},
"lookback_window_days": {
"type": "integer",
"title": "Lookback Window (in days)",
"default": 0,
"minimum": 0,
"description": "When set to N, the connector will always refresh resources created within the past N days. By default, updated objects that are not newly created are not incrementally synced.",
"order": 3
},
"string_event_properties_keys": {
"type": "array",
"items": {
"type": "string"
},
"title": "Event properties keys (string values)",
"description": "Property key names to extract from all events, in order to enrich ledger entries corresponding to an event deduction.",
"order": 4
},
"numeric_event_properties_keys": {
"type": "array",
"items": {
"type": "string"
},
"title": "Event properties keys (numeric values)",
"description": "Property key names to extract from all events, in order to enrich ledger entries corresponding to an event deduction.",
"order": 5
}
}
}
}