WP Engine · Schema

Account

WordPressManaged HostingWordPress HostingSite ManagementDigital Experience Platform

Properties

Name Type Description
id string
name string The account name
nickname string The account nickname
View JSON Schema on GitHub

JSON Schema

account.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Account",
  "type": "object",
  "required": [
    "id",
    "name",
    "nickname"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "eeda3227-9a39-46ae-9e14-20958bb4e6c9"
    },
    "name": {
      "type": "string",
      "description": "The account name",
      "example": "joesaccount"
    },
    "nickname": {
      "type": "string",
      "description": "The account nickname",
      "example": "joesaccount"
    }
  }
}