Kong · Schema

MovePage

move page request payload

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
parent_page_id string parent page id
index integer index of the document in the parent document's children
View JSON Schema on GitHub

JSON Schema

kong-movepagerequestpayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MovePageRequestPayload",
  "title": "MovePage",
  "description": "move page request payload",
  "type": "object",
  "properties": {
    "parent_page_id": {
      "description": "parent page id",
      "type": "string",
      "format": "uuid",
      "example": "dd4e1b98-3629-4dd3-acc0-759a726ffee2"
    },
    "index": {
      "description": "index of the document in the parent document's children",
      "type": "integer",
      "example": 1
    }
  }
}