alteryx / alteryx/promote-r-client
Support for nested JSON objects
Open
- Dominant language
- R
- Stars
- 5
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
The Alteryx promote-python library supports nested JSON objects:
```
{
"name": {
"first_name": "colin",
"last_name": "kaepernick"
}
}
```
This doesn't work in the R client though. The jsonlite package supports nested JSON, but for some reason it is being flattened for the promote request:
```
{
"name.first_name": "colin",
"name.last_name": "kaepernick"
}
```
Is there any reason for flattening the JSON here (and not in python) ?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.