Documentation
¶
Overview ¶
Package simple allows for structured, but schema-less values to be represented while constraining the possible types to a limited, knowable set.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array []Value
Array is an ordered set of Value values
func (*Array) UnmarshalJSON ¶
type Struct ¶
Struct is a key value structure where keys are strings the are mapped to a Value
func (*Struct) UnmarshalJSON ¶
type Value ¶
type Value interface { String() string // contains filtered or unexported methods }
Value is a way of having structured data with no specific schema. It mirrors JSON's limited type set. So, Value can only be one of the following: Struct, Array, Number, String, Bool. JSON "null" can be represented by Go's nil.
func FromJSON ¶
func FromJSON(jb json.RawMessage) (Value, error)
FromJSON will instantiate a Value based on JSON. The only possible failure is JSON syntax errors.
func FromValue ¶
FromValue allows any scalar or composite value to be simplified to a Value.
Things like channels, functions and interfaces do not represent transmittable values and therefore cannot be simplified.
Any value that implements `SimpleValue() (Value, error)` or `SimpleValue() Value` can override some logic and handle value simplification on their own.