Skip to content

Commit

Permalink
allowing null for links.next (#162)
Browse files Browse the repository at this point in the history
follow-on to #160
  • Loading branch information
thekaveman authored and hunterowens committed Nov 5, 2018
1 parent 23e19be commit 9498bbd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion generate_schema/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@
},
"next": {
"$id": "#/definitions/links/next",
"type": "string",
"type": [
"null",
"string"
],
"title": "The URL to the next page of data",
"examples": [
"https://data.provider.co/trips/next"
Expand Down
5 changes: 4 additions & 1 deletion provider/status_changes.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@
},
"next": {
"$id": "#/definitions/links/next",
"type": "string",
"type": [
"null",
"string"
],
"title": "The URL to the next page of data",
"examples": [
"https://data.provider.co/trips/next"
Expand Down
5 changes: 4 additions & 1 deletion provider/trips.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@
},
"next": {
"$id": "#/definitions/links/next",
"type": "string",
"type": [
"null",
"string"
],
"title": "The URL to the next page of data",
"examples": [
"https://data.provider.co/trips/next"
Expand Down

0 comments on commit 9498bbd

Please sign in to comment.