Kong · Schema

PortalAssignedRoleResponse

An assigned role associates a service and an action to a team.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string
role_name string
entity_id string
entity_type_name string
entity_region string Region of the entity.
View JSON Schema on GitHub

JSON Schema

kong-portalassignedroleresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalAssignedRoleResponse",
  "title": "PortalAssignedRoleResponse",
  "description": "An assigned role associates a service and an action to a team.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "eaf7adf1-32c8-4bbf-b960-d1f8456afe67"
    },
    "role_name": {
      "type": "string",
      "example": "API Viewer"
    },
    "entity_id": {
      "type": "string",
      "format": "uuid",
      "example": "817d0422-45c9-4d88-8d64-45aef05c1ae7"
    },
    "entity_type_name": {
      "type": "string",
      "example": "Services"
    },
    "entity_region": {
      "description": "Region of the entity.",
      "type": "string",
      "example": "eu",
      "enum": [
        "us",
        "eu",
        "au",
        "me",
        "in",
        "sg",
        "*"
      ],
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "example": {
    "id": "1a3c2169-27f8-4594-926b-41df3432d5dc",
    "role_name": "API Viewer",
    "entity_id": "18ee2573-dec0-4b83-be99-fa7700bcdc61",
    "entity_type_name": "Services",
    "entity_region": "us"
  },
  "required": [
    "id",
    "role_name",
    "entity_id",
    "entity_type_name",
    "entity_region"
  ]
}