Kong · Schema

ACLWithoutParents

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
consumer object
created_at integer Unix epoch when the resource was created.
group string
id string A string representing a UUID (universally unique identifier).
tags array A set of strings representing tags.
View JSON Schema on GitHub

JSON Schema

kong-aclwithoutparents-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ACLWithoutParents",
  "title": "ACLWithoutParents",
  "x-speakeasy-entity": "ACL",
  "type": "object",
  "properties": {
    "consumer": {
      "type": "object",
      "nullable": true,
      "properties": {
        "id": {
          "type": "string"
        }
      },
      "x-foreign": true,
      "x-speakeasy-terraform-ignore": true
    },
    "created_at": {
      "description": "Unix epoch when the resource was created.",
      "type": "integer",
      "nullable": true
    },
    "group": {
      "type": "string"
    },
    "id": {
      "description": "A string representing a UUID (universally unique identifier).",
      "type": "string",
      "nullable": true
    },
    "tags": {
      "description": "A set of strings representing tags.",
      "type": "array",
      "items": {
        "description": "A string representing a tag.",
        "type": "string"
      },
      "nullable": true
    }
  },
  "example": {
    "group": "foo",
    "id": "b1f34145-0343-41a4-9602-4c69dec2f269"
  },
  "additionalProperties": false,
  "required": [
    "group"
  ]
}