Kong · Schema

ListCustomerEntitlementAccessResponseData

List customer entitlement access response data.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
data array The list of entitlement access results.
View JSON Schema on GitHub

JSON Schema

kong-listcustomerentitlementaccessresponsedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListCustomerEntitlementAccessResponseData",
  "title": "ListCustomerEntitlementAccessResponseData",
  "description": "List customer entitlement access response data.",
  "type": "object",
  "properties": {
    "data": {
      "description": "The list of entitlement access results.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BillingEntitlementAccessResult"
      },
      "readOnly": true
    }
  },
  "required": [
    "data"
  ]
}