Kong · Schema
System Account
Schema of the system account.
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the system account. |
| name | string | Name of the system account. |
| description | string | Description of the system account. |
| created_at | string | Timestamp of when the system account was created. |
| updated_at | string | Timestamp of when the system account was last updated. |
| konnect_managed | boolean | The system account is managed by Konnect (true/false). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SystemAccount",
"title": "System Account",
"x-speakeasy-entity": "SystemAccount",
"description": "Schema of the system account.",
"type": "object",
"properties": {
"id": {
"description": "ID of the system account.",
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"description": "Name of the system account.",
"type": "string"
},
"description": {
"description": "Description of the system account.",
"type": "string"
},
"created_at": {
"description": "Timestamp of when the system account was created.",
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"description": "Timestamp of when the system account was last updated.",
"type": "string",
"format": "date-time",
"readOnly": true
},
"konnect_managed": {
"description": "The system account is managed by Konnect (true/false).",
"type": "boolean"
}
},
"example": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "Example System Account",
"description": "This is a sample system account description.",
"created_at": "2022-08-24T14:15:22Z",
"updated_at": "2022-10-05T10:33:49Z",
"konnect_managed": false
}
}