{
	"type": "object",
	"description": "UserAuthObject",
	"additionalProperties": false,
	"required": ["id", "user_id", "type", "created_on", "modified_on"],
	"properties": {
		"id": {
			"type": "integer",
			"minimum": 1
		},
		"user_id": {
			"type": "integer",
			"minimum": 1
		},
		"type": {
			"type": "string",
			"pattern": "^password$"
		},
		"created_on": {
			"type": "integer",
			"minimum": 1
		},
		"modified_on": {
			"type": "integer",
			"minimum": 1
		}
	}
}