Facebook · Schema

User

A Facebook user profile.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
id string The user ID.
name string The user's full name.
email string The user's email address.
first_name string First name.
last_name string Last name.
View JSON Schema on GitHub

JSON Schema

graph-api-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/facebook/refs/heads/main/json-schema/graph-api-user-schema.json",
  "title": "User",
  "description": "A Facebook user profile.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "The user ID." },
    "name": { "type": "string", "description": "The user's full name." },
    "email": { "type": "string", "format": "email", "description": "The user's email address." },
    "first_name": { "type": "string", "description": "First name." },
    "last_name": { "type": "string", "description": "Last name." }
  }
}