Kong · Schema
PortalTeamResponse
Details about a developer team.
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| description | string | |
| created_at | string | |
| updated_at | string | |
| can_own_applications | boolean | Whether the team is allowed to own applications. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PortalTeamResponse",
"title": "PortalTeamResponse",
"description": "Details about a developer team.",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"example": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"readOnly": true
},
"name": {
"type": "string",
"example": "IDM - Developers",
"maxLength": 250,
"pattern": "^[\\w \\W]+$"
},
"description": {
"type": "string",
"example": "The developers for the IDM API.",
"maxLength": 250
},
"created_at": {
"type": "string",
"format": "date-time",
"example": "1992-02-07T17:46:57.52Z",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"example": "2022-02-07T17:00:00.52Z",
"readOnly": true
},
"can_own_applications": {
"description": "Whether the team is allowed to own applications.",
"type": "boolean",
"example": false
}
},
"example": {
"id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"name": "IDM - Developers",
"description": "The developers for the IDM API.",
"created_at": "1992-02-07T17:46:57.52Z",
"updated_at": "2022-08-31T17:00:00.52Z",
"can_own_applications": false
}
}