Kong · Schema

PortalUpdateTeamRequest

Properties to update on a team.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string
description string
can_own_applications boolean Whether the team is allowed to own applications.
View JSON Schema on GitHub

JSON Schema

kong-portalupdateteamrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalUpdateTeamRequest",
  "title": "PortalUpdateTeamRequest",
  "description": "Properties to update on a team.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "IDM - Developers",
      "pattern": "^[\\w \\W]+$",
      "writeOnly": true
    },
    "description": {
      "type": "string",
      "example": "The Identity Management (IDM) API team.",
      "maxLength": 250,
      "writeOnly": true
    },
    "can_own_applications": {
      "description": "Whether the team is allowed to own applications.",
      "type": "boolean",
      "example": true
    }
  },
  "example": {
    "name": "IDM - Developers",
    "description": "The Identity Management (IDM) API team.",
    "can_own_applications": false
  }
}