Kong · Schema

CreatePortalPageRequest

Create 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-createportalpagerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePortalPageRequest",
  "title": "CreatePortalPageRequest",
  "description": "Create 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/PageVisibilityStatus"
    },
    "status": {
      "$ref": "#/components/schemas/PublishedStatus"
    },
    "description": {
      "$ref": "#/components/schemas/Description"
    },
    "parent_page_id": {
      "$ref": "#/components/schemas/ParentPageId"
    }
  },
  "additionalProperties": false,
  "required": [
    "slug",
    "content"
  ]
}