Marc Panzirsch
06/18/2024, 3:03 PM"schema": {
"properties": {
"array_column": {
"items": {
"type": [
"string"
]
},
"type": [
"array",
"null"
]
},
...
The incoming data can also contain null values like this:
{
...
"array_column": [null, null],
...
}
Is there a way to add "null" to the allowed types of the array_column while using ArrayType(StringType()) without creating any custom types?
"schema": {
"properties": {
"array_column": {
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
...
Thank you for your help!Edgar Ramírez (Arch.dev)
06/18/2024, 3:23 PMArrayType(CustomType({"type": ["string", "null"]}))
Marc Panzirsch
06/20/2024, 7:07 AM