2015-07-06 12:24:35 -04:00
|
|
|
package jsonapi
|
|
|
|
|
2015-07-06 14:57:20 -04:00
|
|
|
type JsonApiPayload struct {
|
|
|
|
Data *JsonApiNode `json:"data"`
|
|
|
|
Included []*JsonApiNode `json:"included,omitempty"`
|
|
|
|
Links *map[string]string `json:"links,omitempty"`
|
2015-07-06 12:24:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type JsonApiNode struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Id string `json:"id"`
|
|
|
|
Attributes map[string]interface{} `json:"attributes,omitempty"`
|
|
|
|
Relationships map[string]interface{} `json:"realtionships,omitempty"`
|
|
|
|
}
|