1
0
mirror of synced 2026-01-10 09:04:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-delighted/source_delighted/spec.json

29 lines
844 B
JSON

{
"documentationUrl": "https://docsurl.com",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Delighted Spec",
"type": "object",
"required": ["since", "api_key"],
"additionalProperties": true,
"properties": {
"api_key": {
"title": "Delighted API Key",
"type": "string",
"description": "A Delighted API key.",
"airbyte_secret": true,
"order": 0
},
"since": {
"title": "Date Since",
"type": "string",
"description": "The date from which you'd like to replicate the data",
"examples": ["2022-05-30T04:50:23Z", "2022-05-30 04:50:23"],
"pattern": "^\\d{4}-\\d{2}-\\d{2}[T ]\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?Z?$",
"order": 1,
"format": "date-time"
}
}
}
}