Kong · Schema

Group

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
comment string Any comments associated with the specific group.
created_at integer Unix epoch when the resource was created.
id string A string representing a UUID (universally unique identifier).
name string The name of the group
updated_at integer Unix epoch when the resource was last updated.
View JSON Schema on GitHub

JSON Schema

kong-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "x-speakeasy-entity": "Group",
  "type": "object",
  "properties": {
    "comment": {
      "description": "Any comments associated with the specific group.",
      "type": "string",
      "nullable": true
    },
    "created_at": {
      "description": "Unix epoch when the resource was created.",
      "type": "integer",
      "nullable": true
    },
    "id": {
      "description": "A string representing a UUID (universally unique identifier).",
      "type": "string",
      "nullable": true
    },
    "name": {
      "description": "The name of the group",
      "type": "string"
    },
    "updated_at": {
      "description": "Unix epoch when the resource was last updated.",
      "type": "integer",
      "nullable": true
    }
  },
  "example": {
    "comment": "This is an example comment for the group.",
    "created_at": 1706598432,
    "id": "d4e7f2c9-8a7b-4e89-b3a1-9c3d6f1e5b92",
    "name": "example-group",
    "updated_at": 1706684832
  },
  "additionalProperties": false,
  "required": [
    "name"
  ]
}