In https://docs.oracle.com/en/cloud/paas/content-cloud/rest-api-documents/op-documents-api-1.2-folders-search-items-get.html, one of the examples shows a metadata array with values (see bottom json)
When I actually run the query, I get an empty array:
"metadata": { "items": [] }
What am I missing?
--
"metadata":{
"items":[
{
"name":"MyMetaCollection",
"fields":{
"items":[
{
"name":"IntField",
"type":"integer",
"value":"12345"
},
{
"name":"DateField",
"type":"date",
"value":"2023-02-20T12:00:00.000Z"
}
]
}
},
{
"name":"dDefaultFolderMetaCollection",
"fields":{
"items":[
{
"name":"xTags",
"type":"string",
"value":"FixMe"
}
]
}
}
]
}