Kong · Schema

ApplicationDeveloperDetailed

List of developers that have a registered application.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string
email string
full_name string
View JSON Schema on GitHub

JSON Schema

kong-applicationdeveloperdetailed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationDeveloperDetailed",
  "title": "ApplicationDeveloperDetailed",
  "description": "List of developers that have a registered application.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "readOnly": true
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]",
      "maxLength": 250
    },
    "full_name": {
      "type": "string",
      "example": "API Developer",
      "maxLength": 250,
      "pattern": "^[\\w \\W]+$"
    }
  },
  "example": {
    "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
    "email": "[email protected]",
    "full_name": "API Developer"
  },
  "additionalProperties": false,
  "required": [
    "id"
  ]
}