We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When importing delimited text data to generate JSON, an input like this:
key1,key2,key3,key4 a,b,c,d e,f,g,h
will produce JSON like this:
{ "key1": "a", "key2": "b", "key3": "c", "key4": "d" }
Allow the use of -delimited_root_name for JSON to set a root property.
mlcp.sh import -username admin -password admin -host localhost -port 8000 -input_file_path test.csv -document_type json -input_file_type delimited_text -delimited_root_name myRoot
producing:
{ "myRoot": { "key1": "a", "key2": "b", "key3": "c", "key4": "d" } }
(Issue filed in response to a Stack Overflow question.)
The text was updated successfully, but these errors were encountered:
mattsunsjf
No branches or pull requests
When importing delimited text data to generate JSON, an input like this:
will produce JSON like this:
Allow the use of -delimited_root_name for JSON to set a root property.
producing:
(Issue filed in response to a Stack Overflow question.)
The text was updated successfully, but these errors were encountered: