Kong · Schema

UpdatePortalPageRequest

Update a page in a portal.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

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

JSON Schema

kong-updateportalpagerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdatePortalPageRequest",
  "title": "UpdatePortalPageRequest",
  "description": "Update a page in a portal.",
  "type": "object",
  "properties": {
    "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"
    },
    "parent_page_id": {
      "$ref": "#/components/schemas/ParentPageId"
    }
  },
  "additionalProperties": false
}