WP Engine · Schema

DomainCertificate

WordPressManaged HostingWordPress HostingSite ManagementDigital Experience Platform

Properties

Name Type Description
cert_name string The name of the certificate
cert_info object
certificate object
criteria string The criteria of the certificate
View JSON Schema on GitHub

JSON Schema

domaincertificate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DomainCertificate",
  "type": "object",
  "properties": {
    "cert_name": {
      "type": "string",
      "description": "The name of the certificate",
      "example": "customdomain.com"
    },
    "cert_info": {
      "type": "object",
      "properties": {
        "key": {
          "type": "string",
          "description": "The private key of the certificate"
        },
        "cert": {
          "type": "string",
          "description": "The certificate"
        }
      }
    },
    "certificate": {
      "$ref": "#/definitions/Certificate"
    },
    "criteria": {
      "type": "string",
      "description": "The criteria of the certificate"
    }
  }
}