airbyte-custom-connector/wallet-fetcher/sample_files/configured_catalog.json

39 lines
872 B
JSON
Raw Normal View History

{
"streams": [
{
"stream": {
"name": "token",
"json_schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"wallets": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"address"
],
"properties": {
"name": {
"type": "string"
},
"address": {
"type": "string"
}
}
}
}
}
},
"supported_sync_modes": [
"full_refresh"
]
},
"sync_mode": "full_refresh",
"destination_sync_mode": "overwrite"
}
]
}