Merge pull request elastic/elasticsearch#639 from tsullivan/chris-rest-refactor

Refactoring to REST architecture for single point of data retrieval from front-end controllers

Original commit: elastic/x-pack-elasticsearch@3734c48709
This commit is contained in:
Tim Sullivan 2015-11-10 07:36:08 -07:00
commit fcc553220c

View File

@ -202,6 +202,23 @@
}
}
},
"nodes": {
"properties": {
"state_uuid": {
"type": "string",
"index": "not_analyzed"
},
"node": {
"properties": {
"id": { "type": "string", "index": "not_analyzed" },
"name": { "type": "string", "index": "not_analyzed" },
"transport_address": { "type": "string", "index": "not_analyzed" },
"master": { "type": "boolean" },
"attributes": { "type": "object" }
}
}
}
},
"shards": {
"properties": {
"state_uuid": {