* update definitions with new .com docs urls * update docs urls in specs * update generators * regenerate scaffold connectors * remove unrelated changes * update more urls * update specs * fix tests * run `:airbyte-config:specs:generateSeedConnectorSpecs` to fix formatting * revert docs changes to make pr more reviewable * revert generator readme changes to make more reviewable * fix mysql strict encrypt expected spec * fix postgres expected spec
22 lines
805 B
JSON
22 lines
805 B
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/destinations/sqlite",
|
|
"supported_destination_sync_modes": ["overwrite", "append"],
|
|
"supportsIncremental": true,
|
|
"supportsDBT": false,
|
|
"supportsNormalization": false,
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Destination Sqlite",
|
|
"type": "object",
|
|
"required": ["destination_path"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"destination_path": {
|
|
"type": "string",
|
|
"description": "Path to the sqlite.db file. The file will be placed inside that local mount. For more information check out our <a href=\"https://docs.airbyte.com/integrations/destinations/sqlite\">docs</a>",
|
|
"example": "/local/sqlite.db"
|
|
}
|
|
}
|
|
}
|
|
}
|