Procurify · Schema

PaginatedPermissionGroupReadList

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
metadata object
data array
View JSON Schema on GitHub

JSON Schema

paginatedpermissiongroupreadlist.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PaginatedPermissionGroupReadList",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "properties": {
        "pagination": {
          "type": "object",
          "properties": {
            "count": {
              "type": "integer",
              "example": 10
            },
            "next": {
              "type": "string",
              "nullable": true,
              "format": "uri",
              "example": null
            },
            "previous": {
              "type": "string",
              "nullable": true,
              "format": "uri",
              "example": null
            },
            "page_size": {
              "type": "integer",
              "example": 10
            },
            "num_pages": {
              "type": "integer",
              "example": 1
            },
            "current_page": {
              "type": "integer",
              "example": 1
            }
          }
        }
      },
      "example": {
        "pagination": {
          "count": 10,
          "next": null,
          "previous": null,
          "page_size": 10,
          "num_pages": 1,
          "current_page": 1
        }
      }
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PermissionGroupRead"
      }
    }
  }
}