1
0
mirror of synced 2026-01-31 01:02:01 -05:00
Files
airbyte/airbyte-integrations/connectors/source-apify-dataset/source_apify_dataset/spec.json
Joe Reuter b6531ac120 🐛 Source apify-dataset: Fix broken sync (#28290)
* fix connector

* fix more things

* prepare release

* cleanup

* format

* revert back to wrapper object

* format
2023-07-18 11:28:23 +02:00

23 lines
848 B
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/apify-dataset",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Apify Dataset Spec",
"type": "object",
"required": ["datasetId"],
"additionalProperties": true,
"properties": {
"datasetId": {
"type": "string",
"title": "Dataset ID",
"description": "ID of the dataset you would like to load to Airbyte."
},
"clean": {
"type": "boolean",
"title": "Clean",
"description": "If set to true, only clean items will be downloaded from the dataset. See description of what clean means in <a href=\"https://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\">Apify API docs</a>. If not sure, set clean to false."
}
}
}
}