Kong · Schema

CreatePortalCustomDomainRequest

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
hostname string
enabled boolean
ssl object
View JSON Schema on GitHub

JSON Schema

kong-createportalcustomdomainrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePortalCustomDomainRequest",
  "title": "CreatePortalCustomDomainRequest",
  "type": "object",
  "properties": {
    "hostname": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "ssl": {
      "$ref": "#/components/schemas/CreatePortalCustomDomainSSL"
    }
  },
  "additionalProperties": false,
  "required": [
    "hostname",
    "enabled",
    "ssl"
  ]
}