Kong · Schema

PortalSnippetInfo

Information about a snippet in a portal.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id object
name object
title object
visibility object
status object
description object
created_at object
updated_at object
View JSON Schema on GitHub

JSON Schema

kong-portalsnippetinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalSnippetInfo",
  "title": "PortalSnippetInfo",
  "description": "Information about a snippet in a portal.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/UUID"
    },
    "name": {
      "$ref": "#/components/schemas/SnippetName"
    },
    "title": {
      "$ref": "#/components/schemas/SnippetTitle"
    },
    "visibility": {
      "$ref": "#/components/schemas/VisibilityStatus"
    },
    "status": {
      "$ref": "#/components/schemas/PublishedStatus"
    },
    "description": {
      "$ref": "#/components/schemas/Description"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    }
  },
  "additionalProperties": false,
  "required": [
    "id",
    "name",
    "title",
    "visibility",
    "status",
    "created_at",
    "updated_at"
  ]
}