region.go raw

   1  package data
   2  
   3  // Region is a metadata table with a name/key.
   4  // Can be thought of as metadata groupings.
   5  type Region struct {
   6  	Meta Meta `json:"meta,omitempty"`
   7  }
   8  
   9  // Regions is simply a mapping of Regions inside a record.
  10  type Regions map[string]Region
  11