2015-07-06 12:24:35 -04:00
|
|
|
package jsonapi
|
|
|
|
|
2015-07-10 12:07:12 -04:00
|
|
|
type OnePayload struct {
|
|
|
|
Data *Node `json:"data"`
|
|
|
|
Included []*Node `json:"included,omitempty"`
|
2015-07-06 14:57:20 -04:00
|
|
|
Links *map[string]string `json:"links,omitempty"`
|
2015-07-06 12:24:35 -04:00
|
|
|
}
|
|
|
|
|
2015-07-10 12:07:12 -04:00
|
|
|
type ManyPayload struct {
|
|
|
|
Data []*Node `json:"data"`
|
|
|
|
Included []*Node `json:"included,omitempty"`
|
2015-07-07 12:52:38 -04:00
|
|
|
Links *map[string]string `json:"links,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Models interface {
|
|
|
|
GetData() []interface{}
|
|
|
|
}
|
|
|
|
|
2015-07-10 12:07:12 -04:00
|
|
|
type Node struct {
|
2015-07-06 12:24:35 -04:00
|
|
|
Type string `json:"type"`
|
|
|
|
Id string `json:"id"`
|
|
|
|
Attributes map[string]interface{} `json:"attributes,omitempty"`
|
2015-07-08 12:34:37 -04:00
|
|
|
Relationships map[string]interface{} `json:"relationships,omitempty"`
|
2015-07-06 12:24:35 -04:00
|
|
|
}
|
2015-07-06 20:04:26 -04:00
|
|
|
|
2015-07-10 12:07:12 -04:00
|
|
|
type RelationshipOneNode struct {
|
|
|
|
Data *Node `json:"data"`
|
2015-07-06 20:04:26 -04:00
|
|
|
Links *map[string]string `json:"links,omitempty"`
|
|
|
|
}
|
|
|
|
|
2015-07-10 12:07:12 -04:00
|
|
|
type RelationshipManyNode struct {
|
|
|
|
Data []*Node `json:"data"`
|
2015-07-06 20:04:26 -04:00
|
|
|
Links *map[string]string `json:"links,omitempty"`
|
|
|
|
}
|