{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/User", "title": "User", "type": "object", "properties": { "username": { "type": "string", "description": "The user's username." }, "email": { "type": "string", "format": "email", "description": "The user's email address." }, "restricted": { "type": "boolean", "description": "Whether the user has restricted access to account resources." }, "ssh_keys": { "type": "array", "items": { "type": "string" }, "description": "A list of SSH key labels associated with the user." }, "tfa_enabled": { "type": "boolean", "description": "Whether two-factor authentication is enabled." } } }