Render · Schema
customDomain
CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| domainType | string | |
| publicSuffix | string | |
| redirectForName | string | |
| verificationStatus | string | |
| createdAt | string | |
| server | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/customDomain",
"title": "customDomain",
"type": "object",
"required": [
"id",
"name",
"domainType",
"publicSuffix",
"verificationStatus",
"createdAt",
"redirectForName"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"domainType": {
"type": "string",
"enum": [
"apex",
"subdomain"
]
},
"publicSuffix": {
"type": "string"
},
"redirectForName": {
"type": "string"
},
"verificationStatus": {
"type": "string",
"enum": [
"verified",
"unverified"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"server": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}