Handling unknown JSON schema in low-code connections

Summary

When dealing with a field with an unknown JSON schema in low-code connections, you can treat it as a string and handle the parsing at the destination. This allows you to output the field content as a string for later processing.


Question

I have another question on low-code connections. I have a field whose json schema is not known, how do I handle that? I would like it to just treat it as a string and output whatever is in the field as a string and I can handle the parsing of it in the destination at a later step
For example it is an object like

  "key I don't know in advance": "something",
  "another key I don't know": "something else"
}```

<br>

---

This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1704575513633769) if you want to access the original thread.

[Join the conversation on Slack](https://slack.airbyte.com)

<sub>
["low-code-connections", "unknown-json-schema", "string-output", "parsing"]
</sub>

I figured out how to handle this