1
0
mirror of synced 2026-01-17 21:02:47 -05:00
Files
airbyte/airbyte-integrations/connectors/source-orb/source_orb/spec.json
Kshitij Grover 01ed0e757e 🎉 Source Orb: support enriching ledger entries with numeric properties (#10839)
* Modifications to Orb schema

* Docs updates

* docs updates

* Remove deprecated field from connector export

* Add to source_definitions and update Dockerfile

* Update docs + run airbyte-config:init:processResources
2022-03-10 12:01:56 -08: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": false,
"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
}
}
}
}