Hari Haran R
09/26/2024, 4:08 AMuser
09/26/2024, 4:09 AMconfiguration
field when defining the connector. If it's part of a specific stream's configuration, it might go into the stream configuration form. Here's a general example of how you might input a JSON structured string: 1. Open the ConnectorForm
preview component in the deployed Storybook at: https://storybook.airbyte.dev/?path=/story/connector-connectorform--preview 2. Press raw
on the connectionSpecification
property, so you will be able to paste a JSON structured string. 3. Set the string you want to preview the UI for. In your case, the JSON would be: json { "search": "{\"country\":\"CO\"}" }
4. When submitting the form you can see a preview of the values in the "Actions" tab. Please note that this is a general guide and the exact steps might vary based on the specific requirements of your connector. For more detailed instructions, you can refer to the [Connector Builder documentation](https://docs.airbyte.com/connector-development/connector-builder-ui/overview). Sources: - [Connector Specification Reference](https://docs.airbyte.com/connector-development/connector-specification-reference) - [Connector Builder Intro](https://docs.airbyte.com/connector-development/connector-builder-ui/overview)