I defined a schema for the Orchestrator queue. One of the fields is of type string. However, when I tried uploading items using a CSV file, that field didn’t accept values consisting of digits only.
I did enclose such values with double quotes in the CSV file, e.g. “1234”, but it didn’t help. It worked when I changed the value to 1234A (with or without double quotes).
When I checked JSON Schema - string, it did mention to enclose all digits with double quotes.
Any idea how to format this correctly in the CSV file, or whether it is an issue elsewhere?
Hi @judewong ,
UiPath runs on .NET in the background as its scripting language. For working with JSON, you can refer to the Newtonsoft JSON Schema documentation: https://www.newtonsoft.com/jsonschema
That will end up with the value in the queue item actually having the double quotes as part of the value, which isn’t what you want and doesn’t solve the problem.