Xata · Schema

User

User information including email, full name, and profile image

DatabasePostgresServerlessDeveloper ToolsBranchingAI Agent

Properties

Name Type Description
email string Email address associated with the user account
name string Name of the user
View JSON Schema on GitHub

JSON Schema

xata-user-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "User",
  "description": "User information including email, full name, and profile image",
  "type": "object",
  "properties": {
    "email": {
      "description": "Email address associated with the user account",
      "type": "string",
      "format": "email"
    },
    "name": {
      "description": "Name of the user",
      "type": "string"
    }
  },
  "required": [
    "name",
    "email"
  ]
}