Kong · Schema

DNSRecord

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
name string
value string
View JSON Schema on GitHub

JSON Schema

kong-dnsrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DNSRecord",
  "title": "DNSRecord",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "readOnly": true
    },
    "value": {
      "type": "string",
      "readOnly": true
    }
  },
  "additionalProperties": false,
  "required": [
    "type",
    "name",
    "value"
  ]
}