-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: serializer omit
None
values as expected (#136)
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
- Loading branch information
1 parent
d26c9ec
commit 1a0e14b
Showing
6 changed files
with
95 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"authors": [ | ||
"George Spafford", | ||
"Gene Kim", | ||
"Kevin Behr" | ||
], | ||
"edition": { | ||
"name": "Preview Edition" | ||
}, | ||
"id": "f3758bf0-0ff7-4366-a5e5-c209d4352b2d", | ||
"isbnNumber": "978-1942788294", | ||
"publishDate": "2018-04-16", | ||
"publisher": { | ||
"name": "IT Revolution Press LLC" | ||
}, | ||
"rating": 9.8, | ||
"title": "{J} The Phoenix Project", | ||
"type": "fiction" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<book isbnNumber="978-1942788294"> | ||
<id>f3758bf0-0ff7-4366-a5e5-c209d4352b2d</id> | ||
<title>{X} The Phoenix Project</title> | ||
<edition>Preview Edition</edition> | ||
<publishDate>2018-04-16</publishDate> | ||
<author>Kevin Behr</author> | ||
<author>George Spafford</author> | ||
<author>Gene Kim</author> | ||
<type>fiction</type> | ||
<publisher> | ||
<name>IT Revolution Press LLC</name> | ||
</publisher> | ||
<rating>9.8</rating> | ||
</book> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters