I am trying to add a range index in the Native JSON property that has a colon (:) in its name in MarkLogic Server.
Sample data is as follows.
{ "Aspects": { "xbrl28:TransactionTime": "2014-08-13T00:00:00+0000", "xbrl28:Archive": "S1002U7K", "xbrl:Period": "2014-08-13" }, "_id": "27948e6d-a774-49ee-8e30-668cc4731975" }
When I tried to add the range index to "xbrl28: Archive", but I can not, because "xbrl28:" was considered as a namespace prefix. Is there a way to avoid the colon?
source share