Kong · Schema

PortalCreateTeamRequest

Details about a team to create.

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-portalcreateteamrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalCreateTeamRequest",
  "title": "PortalCreateTeamRequest",
  "x-speakeasy-entity": "PortalTeam",
  "description": "Details about a team to create.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "IDM - Developers",
      "pattern": "^[\\w \\W]+$",
      "writeOnly": true
    },
    "description": {
      "type": "string",
      "example": "The Identity Management (IDM) team.",
      "maxLength": 250,
      "writeOnly": true
    },
    "can_own_applications": {
      "description": "Whether the team is allowed to own applications",
      "type": "boolean",
      "example": true,
      "default": false
    }
  },
  "example": {
    "name": "IDM - Developers",
    "description": "The Identity Management (IDM) team.",
    "can_own_applications": false
  },
  "required": [
    "name"
  ]
}