(update files after merge)
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -12,10 +12,13 @@
|
|||||||
"additionalProperties": true
|
"additionalProperties": true
|
||||||
},
|
},
|
||||||
"session_counts": {
|
"session_counts": {
|
||||||
"description": "How many sessions the user has. Not populated if it's not a user logging in.",
|
"description": "How many sessions the user has.\n Not populated if it's not a user logging in.",
|
||||||
"allOf": [
|
"anyOf": [
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/SessionCounts"
|
"$ref": "#/definitions/SessionCounts"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -43,35 +46,35 @@
|
|||||||
"SessionCounts": {
|
"SessionCounts": {
|
||||||
"description": "Information about how many sessions the user has",
|
"description": "Information about how many sessions the user has",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
|
||||||
"compat",
|
|
||||||
"oauth2",
|
|
||||||
"personal",
|
|
||||||
"total"
|
|
||||||
],
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"total": {
|
"total": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "uint64",
|
"format": "uint64",
|
||||||
"minimum": 0.0
|
"minimum": 0
|
||||||
},
|
},
|
||||||
"oauth2": {
|
"oauth2": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "uint64",
|
"format": "uint64",
|
||||||
"minimum": 0.0
|
"minimum": 0
|
||||||
},
|
},
|
||||||
"compat": {
|
"compat": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "uint64",
|
"format": "uint64",
|
||||||
"minimum": 0.0
|
"minimum": 0
|
||||||
},
|
},
|
||||||
"personal": {
|
"personal": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "uint64",
|
"format": "uint64",
|
||||||
"minimum": 0.0
|
"minimum": 0
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"required": [
|
||||||
|
"total",
|
||||||
|
"oauth2",
|
||||||
|
"compat",
|
||||||
|
"personal"
|
||||||
|
]
|
||||||
|
},
|
||||||
"GrantType": {
|
"GrantType": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
|
|||||||
Reference in New Issue
Block a user