Skip to content

Commit

Permalink
remove minimum time and typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterowens authored and thekaveman committed Oct 20, 2018
1 parent 903f2a8 commit 3a90d8f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions generate_schema/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@
},
"timestamp": {
"$id": "#/definitions/timestamp",
"title": "Integer seconds since Unix epoch",
"title": "Integer milliseconds since Unix epoch",
"type": "number",
"multiple_of": 1.0,
"minimum": 1483228800
"multipleOf": 1.0,
"minimum": 0
}
}
}
6 changes: 3 additions & 3 deletions provider/status_changes.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@
},
"timestamp": {
"$id": "#/definitions/timestamp",
"title": "Integer seconds since Unix epoch",
"title": "Integer milliseconds since Unix epoch",
"type": "number",
"multiple_of": 1.0,
"minimum": 1483228800
"multipleOf": 1.0,
"minimum": 0
},
"vehicle_type": {
"$id": "#/definitions/vehicle_type",
Expand Down
6 changes: 3 additions & 3 deletions provider/trips.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@
},
"timestamp": {
"$id": "#/definitions/timestamp",
"title": "Integer seconds since Unix epoch",
"title": "Integer milliseconds since Unix epoch",
"type": "number",
"multiple_of": 1.0,
"minimum": 1483228800
"multipleOf": 1.0,
"minimum": 0
},
"vehicle_type": {
"$id": "#/definitions/vehicle_type",
Expand Down

0 comments on commit 3a90d8f

Please sign in to comment.