Kong · Schema

PortalPageResponse

Details about a page in a portal.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

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

JSON Schema

kong-portalpageresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalPageResponse",
  "title": "PortalPageResponse",
  "description": "Details about a page in a portal.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/UUID"
    },
    "slug": {
      "$ref": "#/components/schemas/PageSlug"
    },
    "title": {
      "$ref": "#/components/schemas/PageTitle"
    },
    "content": {
      "$ref": "#/components/schemas/PageContent"
    },
    "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"
    },
    "parent_page_id": {
      "$ref": "#/components/schemas/ParentPageId"
    }
  },
  "additionalProperties": false,
  "required": [
    "id",
    "slug",
    "title",
    "content",
    "visibility",
    "status",
    "created_at",
    "updated_at",
    "parent_page_id"
  ]
}