Mike B
05/24/2024, 7:12 PMkapa.ai
05/24/2024, 7:12 PMjson { "$schema": "<http://json-schema.org/draft-07/schema#>", "type": "object", "additionalProperties": true, "properties": { "id": { "type": ["null", "string"] }, "date_created": { "format": "date-time", "type": ["null", "string"] }, "date_updated": { "format": "date-time", "type": ["null", "string"] }, "total": { "type": ["null", "integer"] }, "status": { "type": ["string", "null"], "enum": ["published", "draft"] }, "example_obj": { "type": ["null", "object"], "additionalProperties": true, "properties": { "steps": { "type": ["null", "string"] }, "count_steps": { "type": ["null", "integer"] } } }, "example_string_array": { "items": { "type": ["null", "string"] } } } } This schema includes various data types and structures, such as strings, integers, objects, and arrays. You can modify this template to fit the specific structure of the data you are working with. For more details on creating and using schemas in Airbyte, you can refer to the [Schema Reference documentation](https://docs.airbyte.com/connector-development/schema-reference). If you need further assistance or more specific examples, you might want to check the [Airbyte community](https://discuss.airbyte.io/) or reach out to Airbyte support.