Kong · Schema

PersonalAccessTokenCreateRequestWithTTL

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name object
ttl_seconds integer The time to live in seconds for the personal access token.
View JSON Schema on GitHub

JSON Schema

kong-personalaccesstokencreaterequestwithttl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersonalAccessTokenCreateRequestWithTTL",
  "title": "PersonalAccessTokenCreateRequestWithTTL",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/PATName"
    },
    "ttl_seconds": {
      "description": "The time to live in seconds for the personal access token.",
      "type": "integer",
      "maximum": 31536000,
      "minimum": 86400
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "ttl_seconds"
  ]
}