14 lines
887 B
Python
14 lines
887 B
Python
|
from flask_restx import fields
|
||
|
|
||
|
class Models:
|
||
|
def __init__(self,api):
|
||
|
self.response_model_suspicious_instances = api.model('SuspiciousInstances', {
|
||
|
'domain': fields.String(description="The instance domain"),
|
||
|
'uptime_alltime': fields.Float(description="The instance uptime pct. 100% and thousand of users is unlikely"),
|
||
|
'local_posts': fields.Integer(description="The amount of local posts in that instance"),
|
||
|
'total_users': fields.Integer(description="The total amount of users registered in that instance"),
|
||
|
'active_users_monthly': fields.Integer(description="The amount of active users monthly."),
|
||
|
'signup': fields.Boolean(default=False,description="True when subscriptions are open, else False"),
|
||
|
'user_post_ratio': fields.Float(description="Users to Post Ratio"),
|
||
|
})
|