Kong · Schema

ApiKeyCredentialListItem

API key credential returned when listing credentials.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
id object
display_name string
status string
expires_at string
created_at object
View JSON Schema on GitHub

JSON Schema

kong-apikeycredentiallistitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiKeyCredentialListItem",
  "title": "ApiKeyCredentialListItem",
  "description": "API key credential returned when listing credentials.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "api_key"
      ],
      "readOnly": true
    },
    "id": {
      "$ref": "#/components/schemas/UUID"
    },
    "display_name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "expired",
        "revoked"
      ],
      "readOnly": true,
      "x-speakeasy-unknown-values": "allow"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "readOnly": true
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    }
  },
  "additionalProperties": false,
  "required": [
    "type",
    "id",
    "display_name",
    "created_at"
  ]
}