Abacus · JSON Structure

Abacus Expense List Response Structure

Paginated list of expenses

Type: object Properties: 4
AccountingExpense ManagementFinanceReimbursement

ExpenseListResponse is a JSON Structure definition published by Abacus, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

expenses total page per_page

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abacus/refs/heads/main/json-structure/abacus-expense-list-response-structure.json",
  "name": "ExpenseListResponse",
  "description": "Paginated list of expenses",
  "type": "object",
  "properties": {
    "expenses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Expense"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of expenses",
      "example": 250
    },
    "page": {
      "type": "integer",
      "description": "Current page number",
      "example": 1
    },
    "per_page": {
      "type": "integer",
      "description": "Number of results per page",
      "example": 25
    }
  }
}