Kong · Schema

DataPlaneClientCertificate

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string Unique ID of the certificate entity.
created_at integer Date certificate was created.
updated_at integer Date certificate was last updated.
cert string JSON escaped string of the certificate.
title string Title of the certificate.
View JSON Schema on GitHub

JSON Schema

kong-dataplaneclientcertificate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataPlaneClientCertificate",
  "title": "DataPlaneClientCertificate",
  "x-speakeasy-entity": "GatewayDataPlaneClientCertificate",
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique ID of the certificate entity.",
      "type": "string"
    },
    "created_at": {
      "description": "Date certificate was created.",
      "type": "integer"
    },
    "updated_at": {
      "description": "Date certificate was last updated.",
      "type": "integer"
    },
    "cert": {
      "description": "JSON escaped string of the certificate.",
      "type": "string"
    },
    "title": {
      "description": "Title of the certificate.",
      "type": "string"
    }
  }
}