Kong · Schema

AddDeveloperToTeamRequest

Add a developer to a team by specifying the developer ID.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string
View JSON Schema on GitHub

JSON Schema

kong-adddevelopertoteamrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddDeveloperToTeamRequest",
  "title": "AddDeveloperToTeamRequest",
  "description": "Add a developer to a team by specifying the developer ID.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "df120cb4-f60b-47bc-a2f8-6a28e6a3c63b",
      "writeOnly": true
    }
  },
  "example": {
    "id": "df120cb4-f60b-47bc-a2f8-6a28e6a3c63b"
  },
  "required": [
    "id"
  ]
}