Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates user model to have correct number types #38

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions api.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.0",
"info": {
"version": "1.2.2",
"version": "1.2.3",
"title": "OneSignal",
"description": "A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com",
"contact": {
Expand Down Expand Up @@ -1366,7 +1366,7 @@
"description": "The 3-letter ISO 4217 currency code. Required for correct storage and conversion of amount."
},
"count": {
"type": "number"
"type": "integer"
}
},
"required": [
Expand Down Expand Up @@ -1757,10 +1757,10 @@
"type": "string"
},
"first_active": {
"type": "number"
"type": "integer"
},
"last_active": {
"type": "number"
"type": "integer"
},
"amount_spent": {
"type": "number"
Expand All @@ -1780,10 +1780,10 @@
"type": "object",
"properties": {
"session_time": {
"type": "number"
"type": "integer"
},
"session_count": {
"type": "number"
"type": "integer"
},
"purchases": {
"type": "array",
Expand Down Expand Up @@ -1824,13 +1824,13 @@
"type": "boolean"
},
"notification_types": {
"type": "number"
"type": "integer"
},
"session_time": {
"type": "number"
"type": "integer"
},
"session_count": {
"type": "number"
"type": "integer"
},
"sdk": {
"type": "string"
Expand All @@ -1845,7 +1845,7 @@
"type": "boolean"
},
"test_type": {
"type": "number"
"type": "integer"
},
"app_version": {
"type": "string"
Expand Down
Loading