Hi! I have this JSON file:
{
"UserId": "ABC",
"CompanyFiscalId": "123",
"Invoices": [
{
"Numero": "ABC123"
}
]
}
I want to assign the field "Numero" to the DocumentID in OneView.
However, in OneView the document keeps showing up without a DocumentID.
I have tested alot of variants in the properties file for the Object Schema, for example:
{"IdentifierPaths":["$Invoices[0].Numero"]}
{"IdentifierPaths":["$.*.Numero"]}
{"IdentifierPaths":["$.Invoices[0].Numero"]}
{"IdentifierPaths":["Invoices[0].Numero"]}
{"IdentifierPaths":["Invoices.Numero"]}
{"IdentifierPaths":["['Invoices'][0].['Numero']"]}
Is it not possible to grab the first value of an array (The "Invoices" list) for OneView?