Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
"description": "A docstring to prevent auto generated docstring",
},
"NoContentSchema": {
"type": "object",
"properties": {},
"description": "A docstring to prevent auto generated docstring",
},
"UserSchema": {
"type": "object",
"properties": {
"first_name": {"type": "string"},
"last_name": {"type": "string"},
"display_name": {"type": "string"},
"company": {"type": "string"},
"username": {"type": "string", "pattern": "[\\w-]+"},
"email_address": {"type": "string", "format": StringFormat.EMAIL},
"id": {"type": "integer"},
},
"required": [
"company",
"display_name",
"email_address",
"first_name",
"last_name",
"username",
],
"description": "A docstring to prevent auto generated docstring",
},
"AboutResponseSchema": {
"type": "object",
"properties": {
"version": {"type": "string"},