Gerência Qualidade
10/30/2024, 2:25 PMtap-rest-api-msdk
. My API response is an array of object...
{
"id": "1",
"a": 0,
"b": "0",
"c": {
"d": *true*
}
}
After loading data using target-jsonl
, d
is not saved and c
is null.
{"id": "1", "a": 0, "b": "0", "c": null}
Inferred Schema
"schema": {
"properties": {
"id": {
"type": "string"
},
"a": {
"type": "integer"
},
"b": {
"type": "string"
},
"c": {
"type": "null"
}
},
"type": "object",
"required": [
"a",
"c",
"b",
"id"
]
},
Edgar Ramírez (Arch.dev)
10/30/2024, 2:48 PMnum_inference_records
or passing a custom schema
to make it so
"c": {
"type": "object",
"properties": {...}
}
Edgar Ramírez (Arch.dev)
10/30/2024, 2:48 PMGerência Qualidade
10/30/2024, 2:50 PM3
records.Gerência Qualidade
10/30/2024, 2:51 PMGerência Qualidade
10/30/2024, 4:49 PMnull
for field c
. With authentication, c.d
is returned and schema is correctly infered.