Response attributes 
    
        
        
            Name 
            Type 
            Description 
         
         
        
        
            data.region.name 
            String 
            Region name. Note:  region object is defined only when there are different values for each region - if there is single value for whole country region object will not be defined. 
         
        
            data.region.code 
            String 
            ISO 3166-1 alpha-2  two-letter region code 
        
            data.legal 
            boolean 
            Whether alcohol consumption is legal at all 
         
        
            data.minimumPurchaseAgeBeerWine 
            int 
            Minimum age required to buy a beer or a wine (0 means it's undefined) 
         
        
            data.minimumPurchaseAgeSpirits 
            int 
            Minimum age required to buy an alcohol spirits (0 means it's undefined) 
         
        
            data.minimumDrinkingAgeBeerWine 
            int 
            Minimum age required to drink a beer or a wine (0 means it's undefined) 
         
        
            data.minimumDrinkingAgeSpirits 
            int 
            Minimum age required to drink an alcohol spirits (0 means it's undefined) 
         
         
    
    
        
    
        Response text attributes 
    
    
        Basic Startup Business 
    
 
    
    
        
        
            Name 
            Type 
            Description 
         
         
        
        
            textual.title 
            String 
            Alcohol category name 
         
        
            textual.sections.id[LEGALITY].body 
            String 
            Legal or not 
         
        
            textual.sections.id[SUMMARY].body 
            String 
            Minimum age to drink/purchase alcohol 
         
        
            textual.sections.id[DRIVING].body 
            String 
            Allowed blood-alcohol limit while driving 
         
         
    
    Example response 
    {
  "data": [
    {
      "legal": true,
      "minimumDrinkingAgeBeerWine": 0,
      "minimumDrinkingAgeSpirits": 0,
      "minimumPurchaseAgeBeerWine": 18,
      "minimumPurchaseAgeSpirits": 18
    }
  ],
  "textual": {
    "title": "Alcohol",
    "sections": [
      {
        "id": "LEGALITY",
        "body": [
          "Legal"
        ]
      },
      {
        "id": "SUMMARY",
        "body": [
          "Minimum age to purchase alcohol is 18 years old, while to drink it is not defined."
        ]
      },
      {
        "id": "DRIVING",
        "body": [
          "Blood-alcohol limit is 0.05% (0.5g per litre of blood) while driving."
        ]
      }
    ]
  }
}