If i have that document:
POST /contentman/sites
{
"name":"jimmy_page",
"author":"Jimmy Page",
"instalacao":"MD",
"raiz":"jimmy_oage",
"url":"jimmy_oage",
"PAGES":[
{
"name":"index",
"site_id":"1",
"AREAS":[
{
"name":"inicio",
"page_id":"1"
}
]
},
{
"name":"another_index",
"site_id":"2",
"AREAS":[
{
"name":"inicio",
"page_id":"1"
}
]
}
]
}
And I only want to delete the PAGE in that has the name equals to Index, what Query should I do to delete that Page?