WP Engine · Schema

DomainStatusReport

WordPressManaged HostingWordPress HostingSite ManagementDigital Experience Platform

Properties

Name Type Description
complete boolean The status of the report
id string The UUID of the report
install_name string Name of the install
install_ip string IP address for the install
admin boolean Admin status
domains array The list of domains associated with this report
View JSON Schema on GitHub

JSON Schema

domainstatusreport.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DomainStatusReport",
  "type": "object",
  "properties": {
    "complete": {
      "type": "boolean",
      "description": "The status of the report",
      "example": true
    },
    "id": {
      "type": "string",
      "description": "The UUID of the report",
      "example": "6a6d5dbd-5cac-41d5-8f3f-14a3e8ae6f76"
    },
    "install_name": {
      "type": "string",
      "description": "Name of the install"
    },
    "install_ip": {
      "type": "string",
      "description": "IP address for the install"
    },
    "admin": {
      "type": "boolean",
      "description": "Admin status",
      "example": false
    },
    "domains": {
      "type": "array",
      "description": "The list of domains associated with this report",
      "items": {
        "$ref": "#/definitions/DomainStatus"
      }
    }
  }
}