JSON Schema Draft 07
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://www.ssofy.com/schema/auth-response.json",
"type": "object",
"required": [
"user"
],
"properties": {
"user": {
"$id": "#/properties/user",
"title": "User",
"type": "object"
},
"token": {
"$id": "#/properties/token",
"title": "Token",
"type": [
"object",
"null"
]
}
},
"additionalProperties": false
}