WP Engine · Schema

AccountLimits

Account limits for environments, storage, bandwidth, and billable visits

WordPressManaged HostingWordPress HostingSite ManagementDigital Experience Platform

Properties

Name Type Description
visitors integer Maximum number of visitors
storage integer Maximum storage allowance in GB
bandwidth integer Maximum bandwidth allowance in GB
View JSON Schema on GitHub

JSON Schema

accountlimits.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AccountLimits",
  "type": "object",
  "properties": {
    "visitors": {
      "type": "integer",
      "description": "Maximum number of visitors",
      "x-nullable": true,
      "example": 25000
    },
    "storage": {
      "type": "integer",
      "description": "Maximum storage allowance in GB",
      "x-nullable": true,
      "example": 150
    },
    "bandwidth": {
      "type": "integer",
      "description": "Maximum bandwidth allowance in GB",
      "x-nullable": true,
      "example": 1000
    }
  },
  "description": "Account limits for environments, storage, bandwidth, and billable visits"
}