Kong · Schema

CreateCustomDomainRequest

Request schema for creating a custom domain in the global API.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
control_plane_id object
control_plane_geo object
domain object
kind object
View JSON Schema on GitHub

JSON Schema

kong-createcustomdomainrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCustomDomainRequest",
  "title": "CreateCustomDomainRequest",
  "description": "Request schema for creating a custom domain in the global API.",
  "type": "object",
  "properties": {
    "control_plane_id": {
      "$ref": "#/components/schemas/ControlPlaneId"
    },
    "control_plane_geo": {
      "$ref": "#/components/schemas/ControlPlaneGeo"
    },
    "domain": {
      "$ref": "#/components/schemas/CustomDomainName"
    },
    "kind": {
      "$ref": "#/components/schemas/CustomDomainKind"
    }
  },
  "additionalProperties": false,
  "required": [
    "control_plane_id",
    "control_plane_geo",
    "domain"
  ]
}