WP Engine · Schema

User

WordPressManaged HostingWordPress HostingSite ManagementDigital Experience Platform

Properties

Name Type Description
id string
first_name string
last_name string
email string
phone_number string
View JSON Schema on GitHub

JSON Schema

user.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "User",
  "type": "object",
  "required": [
    "id",
    "email"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "fd8e24a5-1f16-4b80-af5f-d748bcc9e64d"
    },
    "first_name": {
      "type": "string",
      "example": "Joe"
    },
    "last_name": {
      "type": "string",
      "example": "Smith"
    },
    "email": {
      "type": "string",
      "example": "[email protected]"
    },
    "phone_number": {
      "type": "string",
      "x-nullable": true,
      "example": "123456789"
    }
  }
}