2022-05-11 22:47:31 +00:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"description": "UserAuthObject",
|
|
|
|
"additionalProperties": false,
|
2023-05-28 22:50:27 +00:00
|
|
|
"required": ["id", "user_id", "type", "created_at", "updated_at"],
|
2022-05-11 22:47:31 +00:00
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
2023-05-28 22:50:27 +00:00
|
|
|
"created_at": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
"description": "Created Unix time with milliseconds"
|
|
|
|
},
|
|
|
|
"updated_at": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1,
|
|
|
|
"description": "Updated Unix time with milliseconds"
|
|
|
|
},
|
2022-05-11 22:47:31 +00:00
|
|
|
"user_id": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"type": {
|
|
|
|
"type": "string",
|
|
|
|
"pattern": "^password$"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|