Kong · Schema

RBACUser

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
comment string Any comments associated with the user.
created_at integer Unix epoch when the resource was created.
enabled boolean Wether or not the user has RBAC enabled.
id string A string representing a UUID (universally unique identifier).
name string The name of the user.
updated_at integer Unix epoch when the resource was last updated.
user_token string
user_token_ident string The user token.
View JSON Schema on GitHub

JSON Schema

kong-rbacuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RBACUser",
  "title": "RBACUser",
  "x-speakeasy-entity": "RbacUser",
  "type": "object",
  "properties": {
    "comment": {
      "description": "Any comments associated with the user.",
      "type": "string",
      "nullable": true
    },
    "created_at": {
      "description": "Unix epoch when the resource was created.",
      "type": "integer",
      "nullable": true
    },
    "enabled": {
      "description": "Wether or not the user has RBAC enabled.",
      "type": "boolean",
      "default": true,
      "nullable": true
    },
    "id": {
      "description": "A string representing a UUID (universally unique identifier).",
      "type": "string",
      "nullable": true
    },
    "name": {
      "description": "The name of the user.",
      "type": "string",
      "nullable": true
    },
    "updated_at": {
      "description": "Unix epoch when the resource was last updated.",
      "type": "integer",
      "nullable": true
    },
    "user_token": {
      "type": "string",
      "nullable": true,
      "writeOnly": true
    },
    "user_token_ident": {
      "description": "The user token.",
      "type": "string",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "user_token"
  ]
}