-
Hi - I looked at #624 and have a similar, but slightly different requirement.
Here is muy input JSON:
`{
"Level-1": {
"Level-2": [
{
"someA": "A1",
"someB": "B1",
…
-
The basic example for the DataRecord on page 91 includes the values of the fields within the fields, not really useful
The example for a DataRecord inside a DataArray on page 96 does have a separat…
-
```
What steps will reproduce the problem?
1. create an array holding other arrays or a dictionary
2. save the object
What is the expected output? What do you see instead?
- The object should save …
-
Values serialize into arrays just fine when they're not nested, but when they are, only the last value is used and serializes as a string:
``` html
```
Expected Output:
``` js
{
nested: {
…
-
If you use `JsonSchema4.FromSampleJson` to infer schema from this JSON `{ "hi": [[10, 20], [30, 40]] }`, I would expect it to detect that its an array of array of integers. But instead I get an array …
-
Nested arrays and array_pin can leak memory. For example, the MUF program:
```
: main { }dict ARRAY_PIN DUP 0 ARRAY_SETITEM DUP DUP ARRAY_SETITEM ;
```
leaks memory (AddressSanitizer report):
```…
-
### Is your feature request related to a problem?
Currently the workflow in tests that need recursive tests of dictionaries containing numpy arrays requires the `dict_almost_equal` function, but this…
-
Currently, the extractor returns tabulated data. It downloads data as CSV and uploaded them in Keboola this way.
But there is an option how to create multiple tables with references. It can work in a…
-
An example:
```toml
[[outer]]
inner = { foo = "bar" }
```
is parsed as:
```elixir
%{"outer" => [%{"foo" => "bar"}]}
```
However, adding another `outer` table:
```toml
[[outer]]
i…
-
Consider this case:
```ts
const db = factory({
entity: {
id: primaryKey(datatype.uuid),
name: String,
matrix: () => [[0,0,0], [1,1,1], [2,2,2]]
}
})
```
This results in TS …