Kong · Schema
API Document Summary
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| title | object | |
| slug | object | |
| status | object | |
| parent_document_id | object | |
| created_at | object | |
| updated_at | object | |
| children | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiDocumentSummaryWithChildren",
"title": "API Document Summary",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/ApiDocumentId"
},
"title": {
"$ref": "#/components/schemas/ApiDocumentTitle"
},
"slug": {
"$ref": "#/components/schemas/ApiDocumentSlug"
},
"status": {
"$ref": "#/components/schemas/ApiDocumentStatus"
},
"parent_document_id": {
"$ref": "#/components/schemas/ApiDocumentParentDocumentId"
},
"created_at": {
"$ref": "#/components/schemas/CreatedAt"
},
"updated_at": {
"$ref": "#/components/schemas/UpdatedAt"
},
"children": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApiDocumentSummaryWithChildren"
}
}
},
"additionalProperties": false,
"required": [
"id",
"title",
"slug",
"status",
"parent_document_id",
"created_at",
"updated_at",
"children"
]
}