Enhancement Request: Ordering of Response Fields for Encrypt/Decrypt using batch_input

HI,
I am trying to use HashiCorp Vault Encryption as a service, I managed to encrypt and decrypt multiple fields using batch_input . In the response I understand the order of the requested fields is preserved. However some JSON parsers may not preserve the order leading to potential incorrect assignments. Any chance the Vault can provide option for the field name in the request and the same is returned in the response making it obvious.
Ex: curl --header “X-Vault-Token: root” --request POST http://127.0.0.1:8200/v1/transit/encrypt/ProductsAsymm -d “{“batch_input”: [{“FieldName”: “RmllbGQx”,“plaintext”: “dGhlIHF1aWNrIGJyb3duIGZveA==”},{“FieldName”: “RmllbGQy”,“plaintext”: “dGhlIHF1aWNrIGJyb3duIGZveA==”}]}”

or If there is already any workaround please suggest
Thank You
Vijay Akula