Peter Zentai created OLINGO-835: ----------------------------------- Summary: Items in metadata with custom namespace do not get translated into JSON metadata Key: OLINGO-835 URL: https://issues.apache.org/jira/browse/OLINGO-835 Project: Olingo Issue Type: Question Components: odata4-client-JS Reporter: Peter Zentai
The below property with xmlns:p5 is missing from the javascript object model olingo-odatav4-js produces XML model: ```xml <Property xmlns:p5="http://schemas.microsoft.com/ado/2009/02/edm/annotation" Name="CategoryID" Type="Edm.Int32" Nullable="false" p5:StoreGeneratedPattern="Identity"/> ``` JS object model: ```json { "name": "CategoryID", "type": "Edm.Int32", "nullable": "false" }, ``` Its a question in general (regarding extension namespaces) and in particular the storeGeneratedPattern - that actually lets the client know if a field gets assigned server side: shouldn't they be translated? -- This message was sent by Atlassian JIRA (v6.3.4#6332)