Gabriel Levine
05/30/2023, 10:03 PM"some_object": {
"anyOf": [
{
"type": "null"
},
{
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
}
]
}
as opposed to when there are no nulls, it will produce:
"some_object": {
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
}
The second is correctly recognized as an object, while the first is classed as Unknown which prevents it being synced. I can’t tell if this comment is highlighting the same issue: https://github.com/airbytehq/airbyte/issues/25669#issuecomment-1559850741kapa.ai
05/30/2023, 10:03 PMkapa.ai
05/30/2023, 10:04 PMGabriel Levine
05/30/2023, 10:05 PMkapa.ai
05/30/2023, 10:05 PMkapa.ai
05/30/2023, 10:06 PMSherif Nada
05/31/2023, 2:23 AMJoe Reuter (Airbyte)
05/31/2023, 7:32 AM