File tree 6 files changed +32
-6
lines changed
6 files changed +32
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
6
## [ Unreleased]
7
7
8
+ ### Added
9
+
10
+ - New ` Resource\ItemLink ` object; was seperated from ` Link ` object
11
+
12
+ ### Fixed
13
+
14
+ - links and pagination are now parsed spec conform, see [ #23 ] ( https://github.com/Art4/json-api-client/pull/23 )
15
+
8
16
## [ 0.6] - 2015-11-06
9
17
10
18
### Added
Original file line number Diff line number Diff line change @@ -20,5 +20,4 @@ _[Symbols definition](objects-introduction.md#symbols)_
20
20
? | last | - ` null ` <br />- ` string ` |
21
21
? | prev | - ` null ` <br />- ` string ` |
22
22
? | next | - ` null ` <br />- ` string ` |
23
- ? | meta | [ Meta object] ( objects-meta.md ) |
24
23
* | ` string ` | - ` string ` <br />- [ Link object] ( objects-link.md ) |
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ All possible objects and their hierarchical structure are listet below.
32
32
1 . [ Error Source object] ( objects-error-source.md )
33
33
1 . [ Link object] ( objects-link.md )
34
34
1 . [ Document Link object] ( objects-document-link.md )
35
+ 1 . [ Resource Item Link object] ( objects-resource-item-link.md )
35
36
1 . [ Relationship Link object] ( objects-relationship-link.md )
36
37
1 . [ Error Link object] ( objects-error-link.md )
37
38
1 . [ Jsonapi object] ( objects-jsonapi.md )
Original file line number Diff line number Diff line change 6
6
The ` Link ` object represents a [ links object] ( http://jsonapi.org/format/#document-links ) .
7
7
8
8
Property of:
9
- - [ Resource Item object] ( objects-resource-item.md )
10
- - [ Link object] ( objects-link.md )
9
+ - [ Document Link object] ( objects-document-link.md )
10
+ - [ Resource Item Link object] ( objects-resource-item-link.md )
11
+ - [ Relationship Link object] ( objects-relationship-link.md )
11
12
- [ Error Link object] ( objects-error-link.md )
12
13
13
14
### Properties
@@ -16,6 +17,5 @@ _[Symbols definition](objects-introduction.md#symbols)_
16
17
17
18
| Key | Value | Note
18
19
--- | ---- | ----- | ----
19
- * | ` string ` | - ` string ` <br />- [ Link object] ( objects-link.md ) |
20
- ? | href | ` string ` |
20
+ 1 | href | ` string ` |
21
21
? | meta | [ Meta object] ( objects-meta.md ) |
Original file line number Diff line number Diff line change @@ -20,5 +20,4 @@ _[Symbols definition](objects-introduction.md#symbols)_
20
20
? | last | - ` null ` <br />- ` string ` | Only exists if the parent relationship object represents a to-many relationship |
21
21
? | prev | - ` null ` <br />- ` string ` | Only exists if the parent relationship object represents a to-many relationship |
22
22
? | next | - ` null ` <br />- ` string ` | Only exists if the parent relationship object represents a to-many relationship |
23
- ? | meta | [ Meta object] ( objects-meta.md ) |
24
23
* | ` string ` | - ` string ` <br />- [ Link object] ( objects-link.md ) |
Original file line number Diff line number Diff line change
1
+ # ResourceItemLink
2
+ [ Back to Navigation] ( README.md )
3
+
4
+ ## Description
5
+
6
+ The ` ResourceItemLink ` object represents a [ links object inside a resource] ( http://jsonapi.org/format/#document-links ) .
7
+
8
+ Property of:
9
+ - [ Resource Item object] ( objects-resource-item.md )
10
+
11
+ ### Properties
12
+
13
+ _ [ Symbols definition] ( objects-introduction.md#symbols ) _
14
+
15
+ | Key | Value | Note
16
+ --- | ---- | ----- | ----
17
+ ? | self | ` string ` |
18
+ ? | related | - ` string ` <br />- [ Link object] ( objects-link.md ) |
19
+ * | ` string ` | - ` string ` <br />- [ Link object] ( objects-link.md ) |
You can’t perform that action at this time.
0 commit comments