Creating a JSON schema with JSON keys containing spaces
Hi,
I tried creating a JSON schema(inside metadata) which contains json keys which has space for eg. "prod partnumber" : "123". I am unable to do this?. Any help in creating the schema is much appreciated.
"products":
Regards
Jay
Hi Jay It is not allowed to contains a space in the column name, because Talend studio is a Java code generator, each column will be variable in the job class. A variable name can not contains a space in Java. You need to replace the space with other character such as "_".