linode · Schema

User

Properties

Name Type Description
username string The user's username.
email string The user's email address.
restricted boolean Whether the user has restricted access to account resources.
ssh_keys array A list of SSH key labels associated with the user.
tfa_enabled boolean Whether two-factor authentication is enabled.
View JSON Schema on GitHub

JSON Schema

linode-user-schema.json Raw ↑
{
  "$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."
    }
  }
}