When creating a mapping, setting a key to "properties" enables you to nest
I ask because my documents have a field named properties. For example, check
  
  
    
1-settings.js 
// curl localhost:9200/development_products/_settings?pretty=true
{ 
  "development_products" : {
    "settings" : {
      "index.analysis.filter.3_8_ngram.max_gram": "8",
      "index.analysis.filter.3_8_ngram.type":     "nGram",
      "index.analysis.filter.3_8_ngram.min_gram": "3",
      "index.analysis.analyzer.ascii_std.type":       "custom",
      "index.analysis.analyzer.ascii_std.tokenizer":  "standard",show original 
2-mapping.js 
// curl localhost:9200/development_products/_mapping?pretty=true
{
  "development_products" : {
    "product" : {
      "properties" : {
        "id" : {
          "index" : "not_analyzed",
          "type" : "string"
        },show original 
   
  
    
    
  
  
 
Is that valid?
             
            
              
            
           
          
            
              
                kimchy  
              
                  
                    October 14, 2011,  4:01pm
                   
                  2 
               
             
            
              It should be ok, have you seen problems with it? One way to verify is to use
On Fri, Oct 14, 2011 at 4:13 PM, Nick Hoffman nick@deadorange.com  wrote:
When creating a mapping, setting a key to "properties" enables you to nest
I ask because my documents have a field named properties. For example,1-settings.js · GitHub 
Is that valid?
 
             
            
              
            
           
          
            
            
              I grabbed the mapping via GEThttps://gist.github.com/6e935e022c759fbc8d61#file_2_mapping.js ), and the