Barndoor · JSON Structure

Barndoor Pagination Meta Structure

Type: object Properties: 6 Required: 6
AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

PaginationMeta is a JSON Structure definition published by Barndoor, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

page limit total pages previous_page next_page

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "PaginationMeta",
  "properties": {
    "page": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "pages": {
      "type": "integer"
    },
    "previous_page": {
      "type": "integer"
    },
    "next_page": {
      "type": "integer"
    }
  },
  "type": "object",
  "required": [
    "page",
    "limit",
    "total",
    "pages",
    "previous_page",
    "next_page"
  ]
}