Versions in this module Expand all Collapse all v0 v0.1.1 Sep 28, 2015 Changes in this version + type FieldData struct + Raw map[string]interface{} + Schema map[string]*FieldSchema + func (d *FieldData) Get(k string) interface{} + func (d *FieldData) GetOk(k string) (interface{}, bool) + func (d *FieldData) GetOkErr(k string) (interface{}, bool, error) + func (d *FieldData) Validate() error + type FieldSchema struct + Default interface{} + Description string + Type FieldType + func (s *FieldSchema) DefaultOrZero() interface{} + type FieldType uint + const TypeBool + const TypeInt + const TypeInvalid + const TypeMap + const TypeString + func (t FieldType) String() string + func (t FieldType) Zero() interface{}