WP Engine · Schema
CertificateOrder
WordPressManaged HostingWordPress HostingSite ManagementDigital Experience Platform
Properties
| Name | Type | Description |
|---|---|---|
| email_address | string | The certificate's holder's email address |
| given_name | string | The certificate holder's first / given name |
| family_name | string | The certificate holder's last / family name |
| region_code | string | The two-letter ISO 3166-1 alpha-2 code for the certificate's country |
| state | string | The certificate's state/region |
| city | string | The certificate's city/locality |
| phone | string | The certificate holder's phone number |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CertificateOrder",
"type": "object",
"required": [
"email_address",
"given_name",
"family_name",
"region_code"
],
"properties": {
"email_address": {
"type": "string",
"description": "The certificate's holder's email address",
"example": "[email protected]"
},
"given_name": {
"type": "string",
"description": "The certificate holder's first / given name",
"example": "Jane"
},
"family_name": {
"type": "string",
"description": "The certificate holder's last / family name",
"example": "Doe"
},
"region_code": {
"type": "string",
"description": "The two-letter ISO 3166-1 alpha-2 code for the certificate's country",
"example": "US"
},
"state": {
"type": "string",
"description": "The certificate's state/region",
"example": "Texas"
},
"city": {
"type": "string",
"description": "The certificate's city/locality",
"example": "Austin"
},
"phone": {
"type": "string",
"description": "The certificate holder's phone number",
"example": "800-123-4567"
}
}
}